/* ===========================
   MODERN OG GIVEAWAYS CSS
   =========================== */

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --gray-lighter: #f1f5f9;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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.25);
}

html {
    scroll-behavior: smooth;
}

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

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    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;
    color: white;
}

.navbar.scrolled .logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

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

.navbar.scrolled .nav-link {
    color: var(--dark);
}

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

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

.nav-link-cta {
    padding: 0.5rem 1.25rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

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

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

.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: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.hero-subtitle-new {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    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: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

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

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

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

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    color: #6ee7b7;
    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: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.video-placeholder-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.play-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-placeholder-text p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-placeholder-text small {
    font-size: 0.875rem;
    opacity: 0.7;
}

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

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

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

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
}

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

.feature-card-new {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    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-2xl);
}

.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(--dark);
    margin-bottom: 0.75rem;
}

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

/* ===========================
   HOW IT WORKS SECTION
   =========================== */

.how-it-works-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

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

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

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

.step-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

.step-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.how-it-works-cta {
    text-align: center;
}

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

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

.winners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.winner-stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
}

.winner-stat-card.fade-in {
    opacity: 1;
    transform: scale(1);
}

.winner-stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1.125rem;
    color: var(--gray);
    font-weight: 600;
}

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

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.btn-secondary-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

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

.faq-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

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

.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(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

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

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

.faq-arrow {
    font-size: 0.875rem;
    color: var(--primary);
    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(--gray);
    line-height: 1.7;
    margin-left: 2.5rem;
}

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

.download-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow-2xl);
    text-align: center;
}

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

.download-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    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: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
}

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

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

.download-btn.android {
    background: var(--gray-lighter);
    color: var(--gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.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(--gradient-secondary);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

.footer-new {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    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: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-logo {
    background: var(--gradient-primary);
    -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: 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: 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);
}

/* ===========================
   PREVIOUS WINNERS PAGE
   (keeping existing styles)
   =========================== */

.winners-main {
    flex: 1;
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.winners-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.winners-header-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.winners-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winners-subtitle {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
}

.winners-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.winner-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 32px;
    transition: all 0.3s ease;
}

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

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winner-date {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.winner-prize {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    display: inline-block;
}

.winner-image-container {
    position: relative;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.winner-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(236, 72, 153, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.winner-image-container:hover .image-overlay {
    opacity: 1;
}

.thank-you-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-section {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.15));
    border: 2px solid rgba(99, 102, 241, 0.3);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-button {
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===========================
   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;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@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;
    }

    .features-section-new,
    .how-it-works-section,
    .winners-section-new,
    .download-section {
        padding: 4rem 1.5rem;
    }

    .feature-card-new {
        padding: 2rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .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;
    }

    .winner-card {
        flex-direction: column;
        text-align: center;
    }

    .winner-image {
        width: 100%;
        max-width: 300px;
    }
}

@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;
    }

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

    .stat-number-large {
        font-size: 2.5rem;
    }
}
