/* Context AI - Landing Page */

:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --success-color: #34C759;
    --warning-color: #FF9500;
    --error-color: #FF3B30;
    --background-color: #F2F2F7;
    --surface-color: #FFFFFF;
    --text-primary: #000000;
    --text-secondary: #6D6D80;
    --border-color: #E5E5EA;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand h1 {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    /* Match the header background so the icon blends with the top bar */
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    box-shadow: none;
    order: -1; /* Place icon to the left of the title */
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 12px 20px;
    border-radius: 8px;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
    background: var(--background-color);
}

.dropdown-toggle i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    min-width: 320px;
    max-height: 75vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    margin-top: 8px;
    padding-bottom: 12px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.challenge-text {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: translateX(4px);
    color: var(--primary-color);
}

.dropdown-item.current {
    background: var(--primary-color);
    color: white;
}

.dropdown-item.current:hover {
    background: var(--primary-color);
    transform: translateX(0);
}

.week-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dropdown-item.current .week-badge {
    background: rgba(255, 255, 255, 0.2);
}

.week-badge.current {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.product-name {
    font-weight: 600;
    font-size: 0.95em;
    line-height: 1.2;
}

.product-desc {
    font-size: 0.8em;
    opacity: 0.7;
    line-height: 1.2;
}

.dropdown-item.current .product-desc {
    opacity: 0.9;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    font-size: 14px;
}

.btn-primary:hover {
    background: #0056CC;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 20px;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--background-color);
    color: var(--text-primary);
}

.btn-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
}

.btn-primary-large:hover {
    background: #0056CC;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-cta {
    margin-bottom: 60px;
}

.cta-note {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.proof-icon {
    font-size: 18px;
}

.coming-soon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--warning-color);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
}

.proof-separator {
    font-size: 20px;
    font-weight: bold;
    opacity: 0.7;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works */
.how-it-works {
    background: var(--surface-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why This Matters */
.why-matters {
    background: var(--background-color);
}

.why-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.why-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-content p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.why-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.benefit-icon {
    font-size: 24px;
}

/* Start Simple */
.start-simple {
    background: var(--surface-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 24px;
    border-radius: var(--border-radius);
    background: var(--background-color);
    transition: var(--transition);
}

.timeline-item.active {
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.timeline-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: var(--surface-color);
    box-shadow: var(--shadow);
}

.timeline-item.active .timeline-badge {
    background: var(--primary-color);
    color: white;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Privacy */
.privacy {
    background: var(--background-color);
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-feature {
    background: var(--surface-color);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.privacy-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.privacy-feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.privacy-feature p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Get Started */
.get-started {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.get-started h2 {
    color: white;
    margin-bottom: 16px;
}

.get-started p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-actions {
    margin-bottom: 32px;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.detail-icon {
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 24px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

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

/* Responsive Design */
@media (max-width: 900px) and (min-width: 769px) {
    .steps {
        gap: 24px;
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    .step p {
        font-size: 14px;
    }
    
    .why-benefits {
        gap: 16px;
    }
    
    .benefit {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-proof {
        flex-direction: column;
        gap: 12px;
    }
    
    .proof-separator {
        transform: rotate(90deg);
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .why-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-features {
        grid-template-columns: 1fr;
    }
    
    .cta-details {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-end;
        align-items: center;
    }

    /* Mobile Navigation - Brand takes full width, others share a row */
    .nav-brand {
        flex: 1 1 100%;
        justify-content: center;
        order: 1;
    }

    .nav-dropdown {
        flex: 0 1 auto;
        order: 3;
        margin: 0;
    }

    .nav-actions {
        flex: 0 1 auto;
        order: 2;
        gap: 8px;
    }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 50%;
        transform: translateX(50%) translateY(-10px);
        background: white;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        min-width: 320px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1002;
        margin-top: 8px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-dropdown.active .dropdown-menu,
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(50%) translateY(0);
    }

    .dropdown-toggle {
        padding: 12px 16px;
        font-size: 16px;
        background: var(--background-color);
        border-radius: 8px;
        min-width: 200px;
        justify-content: center;
    }

    .dropdown-toggle:hover {
        background: var(--primary-color);
        color: white;
    }

    /* Reduce gap between week badge and app title on mobile */
    .dropdown-item {
        gap: 8px;
        padding: 10px 16px;
    }

    .week-badge {
        min-width: 36px;
        height: 28px;
        font-size: 0.7em;
    }

    .product-info {
        gap: 1px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 80px 0;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .btn-primary-large {
        padding: 16px 24px;
        font-size: 16px;
    }

    /* Further reduce gap on very small screens */
    .dropdown-menu {
        right: 50%;
        transform: translateX(50%) translateY(-10px);
        min-width: 280px;
    }

    .nav-dropdown.active .dropdown-menu,
    .nav-dropdown:hover .dropdown-menu {
        transform: translateX(50%) translateY(0);
    }

    .dropdown-toggle {
        min-width: 180px;
        font-size: 14px;
        padding: 10px 14px;
    }

    .nav-dropdown {
        margin: 6px 0;
    }

    .nav-brand h1 {
        font-size: 24px;
    }

    .app-icon {
        width: 32px;
        height: 32px;
    }

    /* Even more aggressive spacing reduction on very small screens */
    .dropdown-item {
        gap: 4px;
        padding: 8px 14px;
    }

    .week-badge {
        min-width: 32px;
        height: 24px;
        font-size: 0.65em;
    }

    .product-name {
        font-size: 0.9em;
    }

    .product-desc {
        font-size: 0.75em;
    }
}

/* =====================================================
   ANNOUNCEMENT BANNERS
   ===================================================== */

/* Maven Course Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4338ca 0%, #c084fc 100%);
    color: white;
    padding: 12px 16px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.announcement-banner.show {
    transform: translateY(0);
}

.announcement-banner.hiding {
    transform: translateY(-100%);
    transition: transform 0.4s ease-in;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.banner-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 200px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.2);
    }
}

.banner-badge i {
    font-size: 0.9rem;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    line-height: 1.4;
}

.banner-text strong {
    font-weight: 600;
}

.banner-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.banner-detail {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.banner-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    animation: countdownGlow 2s ease-in-out infinite;
}

@keyframes countdownGlow {
    0%, 100% {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.2);
    }
}

.banner-countdown i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.banner-students,
.banner-members {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #4338ca;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 180px;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.banner-cta i {
    font-size: 0.9rem;
}

.banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.banner-close i {
    font-size: 0.9rem;
}

/* Discord Community Banner */
.discord-banner {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    top: 0;
}

.discord-badge {
    background: rgba(255, 255, 255, 0.25);
}

.discord-cta {
    background: white;
    color: #5865F2;
}

.discord-cta:hover {
    background: #f8f9fa;
}

/* Body adjustments when banners are visible */
body.maven-visible,
body.discord-visible,
body.banner-visible {
    padding-top: 60px;
}

body.both-banners-visible {
    padding-top: 120px;
}

body.maven-visible .header,
body.discord-visible .header,
body.banner-visible .header {
    top: 60px;
}

body.both-banners-visible .header {
    top: 120px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .announcement-banner {
        padding: 8px 12px;
    }

    .banner-container {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .banner-content {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        text-align: center;
    }

    .banner-badge {
        width: 100%;
        min-width: auto;
        max-width: 240px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .banner-text {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        font-size: 0.85rem;
    }

    .banner-text strong {
        font-size: 0.85rem;
    }

    .banner-detail,
    .banner-countdown,
    .banner-students,
    .banner-members {
        font-size: 0.8rem;
    }

    .banner-separator {
        display: none;
    }

    .banner-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .banner-cta {
        flex: 1;
        max-width: 240px;
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 150px;
    }

    .banner-close {
        width: 28px;
        height: 28px;
    }

    .banner-close i {
        font-size: 0.8rem;
    }

    /* Mobile body padding adjustments - optimized spacing */
    body.maven-visible,
    body.discord-visible,
    body.banner-visible {
        padding-top: 150px !important;
    }

    body.both-banners-visible {
        padding-top: 300px !important;
    }

    body.maven-visible .header,
    body.discord-visible .header,
    body.banner-visible .header {
        top: 150px;
    }

    body.both-banners-visible .header {
        top: 300px;
    }
}