/* ===========================
   OG GIVEAWAYS - PROFESSIONAL REDESIGN
   Clean, Lime-inspired design
   =========================== */

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

:root {
    /* Base Colors - White System */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f8f9fa;
    --gray-100: #f1f5f9;

    /* Purple Accents - Keep existing purple */
    --purple-50: #f5f3ff;
    --purple-100: #ede9fe;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --purple-700: #6d28d9;
    --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Legacy purple support */
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --accent: #8b5cf6;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    position: relative;
    min-height: 100vh;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.75rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--purple-600);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    padding: 0.5rem 1.25rem;
    background: var(--purple-500);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-link-cta:hover {
    background: var(--purple-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.hero-section-new {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--purple-100);
    border-radius: var(--radius-full);
    color: var(--purple-700);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--purple-500);
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle-new {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 540px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--purple-500);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--purple-600);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--purple-600);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--purple-500);
}

.btn-secondary:hover {
    background: var(--purple-50);
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    color: var(--purple-600);
    font-weight: bold;
    font-size: 0.75rem;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-placeholder {
    width: 100%;
    max-width: 300px;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: var(--gray-100);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* ===========================
   STATS BAR SECTION
   =========================== */

.stats-bar {
    padding: 3rem 2rem;
    background: var(--light-gray);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-600);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===========================
   RECENT WINNERS SECTION
   =========================== */

.recent-winners-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.winners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    transition: opacity 0.3s ease-in-out;
}

.winner-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winner-card.loading {
    opacity: 0;
    transform: translateY(20px);
}

.winner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.winner-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.prize-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-100);
    border-radius: 50%;
}

.prize-badge {
    background: var(--purple-50);
    color: var(--purple-700);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--purple-500);
}

.winner-username {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.winner-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.winner-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: left;
}

.stat-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.winner-badge-multi {
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-700);
}

.section-cta {
    text-align: center;
}

.btn-see-more {
    display: block;
    margin: 2rem auto 3rem;
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--purple-600);
    border: 2px solid var(--purple-500);
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-see-more:hover {
    background: var(--purple-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-see-more:active {
    transform: translateY(0);
}

.btn-purple {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--purple-500);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-purple:hover {
    background: var(--purple-600);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.error-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* ===========================
   PREVIOUS WINNERS PAGE
   =========================== */

.winners-page {
    background: var(--off-white);
}

.winners-hero {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.winners-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.winners-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 1rem 0;
}

.winners-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.winners-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--purple-600);
}

.highlight-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.upcoming-card {
    background: linear-gradient(135deg, #0f172a 0%, #312e81 100%);
    color: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-card-header {
    margin-bottom: 1.5rem;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.upcoming-note {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.upcoming-prize {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.upcoming-countdown-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.countdown-chip {
    background: var(--white);
    color: var(--purple-700);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: var(--shadow-lg);
}

.countdown-time {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.upcoming-message {
    margin: 1rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.upcoming-message.off-hours {
    color: #fcd34d;
    font-weight: 700;
}

.upcoming-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upcoming-reminder {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.previous-winners-section {
    padding: 5rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.winners-stats {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.proof-wall {
    padding: 5rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.proof-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.proof-image-wrap {
    position: relative;
    overflow: hidden;
}

.proof-image {
    width: 100%;
    display: block;
}

.proof-meta {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.proof-name {
    font-weight: 800;
    color: var(--text-primary);
}

.proof-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.proof-prize {
    color: var(--purple-600);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===========================
   HOW IT WORKS (Lime-style)
   =========================== */

.how-it-works-lime {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.steps-grid-lime {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card-lime {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card-lime:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-image-container {
    width: 100%;
    height: 250px;
    background: var(--purple-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.step-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content {
    padding: 2rem;
}

.step-number-badge {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--purple-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   AD-SUPPORTED MODEL SECTION
   =========================== */

.funding-model-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.funding-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.diagram-step {
    text-align: center;
}

.diagram-icon {
    width: 80px;
    height: 80px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
}

.diagram-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.diagram-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.diagram-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.diagram-arrow {
    font-size: 2rem;
    color: var(--purple-500);
    font-weight: 300;
}

.funding-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-callout {
    background: var(--purple-50);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 2px solid var(--purple-500);
}

.stat-large {
    font-size: 4rem;
    font-weight: 900;
    color: var(--purple-600);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* ===========================
   FEATURES SECTION
   =========================== */

.features-section-new {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card-new {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card-new.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-new {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.feature-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card-new p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.faq-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--purple-50);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
}

.faq-arrow {
    font-size: 0.875rem;
    color: var(--purple-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-left: 2.5rem;
    margin-top: 1rem;
}

/* ===========================
   DOWNLOAD SECTION
   =========================== */

.download-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
}

.download-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.download-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.download-btn.apple {
    background: var(--dark);
    color: var(--white);
}

.download-btn.apple:hover {
    background: var(--dark-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.download-btn.android {
    background: #01875f;
    color: var(--white);
    cursor: pointer;
    opacity: 1;
}

.download-btn.android:hover {
    background: #016d4c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.download-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.download-btn-text {
    text-align: left;
}

.download-btn-small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-btn-large {
    font-size: 1.25rem;
    font-weight: 700;
}

.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--purple-gradient);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.download-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.download-note a {
    color: var(--purple-500);
    text-decoration: none;
    font-weight: 600;
}

.download-note a:hover {
    text-decoration: underline;
}

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

.footer-new {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-logo {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-coming-soon {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .winners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid-lime {
        grid-template-columns: 1fr;
    }

    .funding-diagram {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .diagram-arrow {
        transform: rotate(90deg);
    }

    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .winners-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .winners-hero-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-card {
        order: -1;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-section-new {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .winners-grid {
        grid-template-columns: 1fr;
    }

    .funding-stats {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: 3rem 2rem;
    }

    .download-title {
        font-size: 2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .download-btn {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .winners-title {
        font-size: 2.25rem;
    }

    .winners-highlights {
        grid-template-columns: 1fr;
    }

    .winners-stats {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 2rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-large {
        font-size: 3rem;
    }

    .countdown-chip,
    .countdown-time {
        width: 100%;
        text-align: center;
    }

    .winners-title {
        font-size: 2rem;
    }
}
