/* Reset & Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.container {
    width: 100%;
}

/* Section Separator */
.section-separator {
    border-top: 2px dotted #999;
    margin: 40px 0;
    width: 100%;
}

/* Headline Section */
.headline-section {
    margin-bottom: 20px;
}

.headline {
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.number-badge {
    background-color: #0066CC;
    color: #fff;
    padding: 2px 15px;
    min-width: 50px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    margin-right: 15px;
    vertical-align: top;
    box-sizing: border-box;
    border-radius: 8px;
}

/* Image Section */
.image-section {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Ratings & Badges */
.rating-badge {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 12px;
    display: inline-block;
}

.rating-section {
    margin-top: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-badge-below {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-right: 0;
}

.rating-number {
    color: #0066CC;
    font-size: 16px;
    font-weight: 500;
}

/* Deals */
.deal-badge,
.deal-text {
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.deal-badge span,
.free-badge {
    background-color: #DC143C;
    color: #fff;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

/* Content Section */
.content-section {
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.content-section p {
    margin-bottom: 15px;
}

.content-section strong,
.content-section .highlight {
    font-weight: bold;
}

.instructions {
    margin-top: 20px;
    margin-bottom: 15px;
}

.numbered-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.numbered-list li {
    margin-bottom: 10px;
}

/* Links & CTAs */
.link {
    color: #0066CC;
    text-decoration: underline;
    cursor: pointer;
}

.cta-link {
    color: #0066CC;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.cta-link:hover {
    color: #0052A3;
}

/* Advertiser Disclosure */
.advertiser-disclosure-link {
    color: #999;
    text-decoration: none;
    cursor: pointer;
    font-weight: normal;
}

.advertiser-disclosure-link:hover {
    color: #888;
}

.disclosure-reveal {
    display: none;
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    background-color: #f5f5f5;
}

.disclosure-reveal.show {
    display: block;
}

.disclosure-reveal a {
    color: #0066CC;
    text-decoration: underline;
}

.disclosure-reveal a:hover {
    color: #0052A3;
}

.full-disclosure {
    margin-top: 60px;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-top: 2px solid #ddd;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.full-disclosure h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.full-disclosure p {
    margin-bottom: 15px;
}

/* Newspaper/Advertorial Header */
.newspaper-header {
    margin-bottom: 30px;
}

.logo {
    margin: 0 0 10px 0;
}

.logo img {
    width: 300px;
}

.category-tag {
    background-color: #0066CC;
    color: #fff;
    padding: 4px 12px;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.newspaper-headline {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin-bottom: 15px;
}

.author-byline {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.byline-first-line {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    font-size: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ddd;
    object-fit: cover;
    flex-shrink: 0;
}

.byline-text {
    color: #999;
}

.author-name {
    color: #333;
}

.newspaper-subheadline {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.intro-content p {
    margin-bottom: 15px;
}

.intro-content strong {
    font-weight: bold;
}

.privacy-choices {
  font-size: .9em;
  margin-top: 20px;
  text-align: center;
}
.privacy-choices, .privacy-choices a {
  color:#222;
}
.privacy-choices img {
  vertical-align: middle;
  margin-right: 4px;
  height: .8em;
  display: inline-block;
  position: relative;
  top: -0.1em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 22px;
    }

    .newspaper-headline {
        font-size: 28px;
    }

    .newspaper-subheadline {
        font-size: 20px;
    }

    .image-overlay {
        top: 10px;
        left: 10px;
    }

    .rating-badge,
    .free-badge {
        font-size: 11px;
        padding: 5px 8px;
    }

    .deal-text {
        font-size: 11px;
    }

    .stars {
        font-size: 16px;
    }

    .rating-number {
        font-size: 14px;
    }
}

