/* ============================================================
   Naughty America Discount Landing - Conservative Style
   Mobile-First Design | Optimized for Conversion
   ============================================================ */

:root {
    /* Color palette - Naughty America brand (red / navy / black) */
    --brand-red: #c8102e;
    --brand-red-dark: #9c0c24;
    --brand-navy: #14213d;
    --primary-gradient: linear-gradient(135deg, #d6203f 0%, #c8102e 50%, #9c0c24 100%);
    --cta-gradient: linear-gradient(135deg, #d6203f 0%, #c8102e 100%);
    --background: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Brand-style logo (Naughty America red/navy) */
.logo-90s {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
    position: relative;
}

.logo-naughty {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-red);
    letter-spacing: 0.3px;
}

.logo-america {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: 0.3px;
}

.logo-discount-90s {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: center;
    margin-left: 4px;
}

.action-button.primary-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 48px;
    min-height: 96px;
    min-width: 280px;
    background: var(--primary-gradient) !important;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 22px;
    border: none;
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-button.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.45);
    background: linear-gradient(135deg, #e0263f 0%, var(--brand-red) 100%) !important;
}

.button-main {
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.button-sub {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

/* Freshness Block */
.update-info {
    padding: 40px 0;
    background: rgba(102, 126, 234, 0.03);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.update-info .container {
    text-align: center;
}

.update-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.update-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Internal Links */
.internal-links {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.internal-links h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.internal-link {
    display: block;
    padding: 12px 16px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.internal-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Special Offer Button (AdBlock Safe) */
.special-offer-btn,
.final-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 56px;
    min-height: 110px;
    min-width: 340px;
    background: var(--primary-gradient) !important;
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    border: none;
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offer-main {
    font-size: 26px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.offer-sub {
    font-size: 17px;
    opacity: 0.92;
    margin-top: 6px;
    font-weight: 600;
    color: #ffffff;
}

.offer-fineprint {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.special-offer-btn:hover,
.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.45);
    background: linear-gradient(135deg, #e0263f 0%, var(--brand-red) 100%) !important;
}

.final-cta-btn {
    display: inline-flex;
    margin-top: 24px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    padding: 48px 0 32px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.update-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 8px 0 16px;
    font-style: italic;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 24px;
}

.hero-urgency {
    margin-top: 8px;
}

.urgency-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(200, 16, 46, 0.08);
    color: var(--brand-red);
    font-weight: 700;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid rgba(200, 16, 46, 0.25);
}

.urgency-text {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.scroll-hint {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-red);
}

.hero-image {
    width: 100%;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: block;
    margin: 0 auto;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.about-section {
    padding: 48px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-primary);
}

.about-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */

.forever-benefits {
    margin: 48px 0;
}

.forever-benefits h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 15px;
    line-height: 1.5;
}

.benefit-text strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

/* ============================================================
   PRICE COMPARISON
   ============================================================ */

.price-comparison-section {
    margin: 48px 0;
}

.price-comparison-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    margin-bottom: 16px;
}

.old-price-new,
.new-price-highlight {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.old-price-new .price-amount {
    font-size: 20px;
    font-weight: 600;
    text-decoration: line-through;
    color: #718096;
}

.arrow {
    font-size: 24px;
    color: var(--text-secondary);
}

.new-price-highlight .price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-red);
}

.savings-new {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #48bb78;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.billing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 8px;
}

/* ============================================================
   MAIN CTA BUTTON
   ============================================================ */

.final-cta {
    text-align: center;
    margin-top: 48px;
}

.main-cta-button {
    display: inline-block;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: var(--cta-gradient);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.45);
}

.main-cta-button:active {
    transform: translateY(-1px) scale(1.03);
}

.urgency-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================================
   REVIEW SECTION
   ============================================================ */

.review-section {
    padding: 48px 0;
    background: #f8f9fa;
}

.review-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
}

.review-subsection h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.review-subsection p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    padding: 48px 0;
    background: white;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.faq-item {
    padding: 24px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color, #ff3838);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer-90s {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 40px 0;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-90s::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: footer-scan 3s ease-in-out infinite;
}

@keyframes footer-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-naughty {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #FF1493, #FF69B4, #FFB6C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 
        0 0 15px rgba(255, 20, 147, 0.6),
        0 0 30px rgba(255, 20, 147, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: footer-neon-pink 2s ease-in-out infinite alternate;
}

.footer-america {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(45deg, #4169E1, #1E90FF, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 
        0 0 20px rgba(65, 105, 225, 0.7),
        0 0 40px rgba(65, 105, 225, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: footer-neon-blue 2.5s ease-in-out infinite alternate;
    margin-top: -2px;
}

.footer-discount {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: footer-neon-gold 3s ease-in-out infinite alternate;
    margin-top: -2px;
}

@keyframes footer-neon-pink {
    0% { text-shadow: 0 0 15px rgba(255, 20, 147, 0.6), 0 0 30px rgba(255, 20, 147, 0.4); }
    100% { text-shadow: 0 0 25px rgba(255, 20, 147, 0.9), 0 0 50px rgba(255, 20, 147, 0.6); }
}

@keyframes footer-neon-blue {
    0% { text-shadow: 0 0 20px rgba(65, 105, 225, 0.7), 0 0 40px rgba(65, 105, 225, 0.5); }
    100% { text-shadow: 0 0 30px rgba(65, 105, 225, 1), 0 0 60px rgba(65, 105, 225, 0.7); }
}

@keyframes footer-neon-gold {
    0% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4); }
    100% { text-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.6); }
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.footer {
    background: #f8f9fa;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.footer .container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    margin: 8px 0;
    font-size: 13px;
    color: #6c757d;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
}

.final-cta-section {
    background: var(--brand-navy);
    padding: 60px 0;
    margin-top: 40px;
    border-top: 2px solid rgba(200, 16, 46, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.final-cta-benefits {
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border: none;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.4;
    padding-left: 0;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li::before {
    content: '•';
    color: #e0263f;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.benefits-list strong {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2em;
    padding: 0 2px;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 40px 0;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .benefit-item {
        font-size: 1.1rem;
        padding-left: 15px;
    }
    
    .final-cta-benefits {
        padding: 20px;
    }
}

.footer-simple {
    background: #f7fafc;
    padding: 32px 0;
    margin-top: 64px;
    border-top: 1px solid #e2e8f0;
}

.footer-simple p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.footer-simple a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.footer-simple a:hover {
    text-decoration: underline;
}


/* ============================================================
   TABLET STYLES (768px+)
   ============================================================ */

@media (min-width: 768px) {
    .logo {
        font-size: 24px;
    }
    
    .nav-button-text {
        font-size: 15px;
    }
    
    .nav-button-subtext {
        font-size: 12px;
    }
    
    .hero {
        padding: 64px 0 48px;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .review-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .faq-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .price-comparison-new {
        flex-direction: row;
        justify-content: space-around;
        padding: 40px 32px;
    }
    
    .arrow {
        font-size: 32px;
    }
    
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-text {
        text-align: left;
        flex: 1;
    }
}

/* ============================================================
   DESKTOP STYLES (1024px+)
   ============================================================ */

@media (min-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .review-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .faq-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .about-description {
        font-size: 18px;
    }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (max-width: 480px) {
    .special-offer-btn,
    .final-cta-btn {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 20px 24px;
        min-height: 90px;
    }

    .offer-main {
        font-size: 20px;
        white-space: normal;
    }

    .offer-sub {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

@media print {
    .header,
    .cookie-consent,
    .urgency-badge {
        display: none;
    }
}
