/* ========================================
   DAIRA '26 - Global Styles & Reset
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222;
    --orange: #e87930;
    --orange-bright: #f5921b;
    --orange-dark: #c15a10;
    --text-white: #ffffff;
    --text-gray: #999;
    --text-light: #ccc;
    --purple: #c084fc;
    --pink: #e040a0;
    --blue: #3b82f6;
    --green: #10b981;
    --red: #ef4444;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --glow-orange: rgba(232, 121, 48, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-white);
}

.logo-year {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link svg {
    margin-left: 4px;
    vertical-align: middle;
}

.nav-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-signin {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-white);
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-signin:hover {
    border-color: var(--orange);
    background: rgba(232, 121, 48, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 80px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-glow {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 900px;
    background: radial-gradient(ellipse at center,
            rgba(232, 121, 48, 0.18) 0%,
            rgba(200, 80, 20, 0.12) 20%,
            rgba(160, 50, 10, 0.08) 40%,
            rgba(80, 20, 5, 0.04) 60%,
            transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

/* Date/Venue Pill Badge */
.hero-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 121, 48, 0.12);
    border: 1px solid rgba(232, 121, 48, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    animation: pillFadeIn 1s ease forwards;
}

/* Ambassador Section */
.ambassador {
    padding: 100px 24px;
    background: #0d0d0d;
    position: relative;
}

.ambassador-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title-alt {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 15px;
}

.ambassador-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.perks-list {
    list-style: none;
    margin-bottom: 40px;
}

.perks-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.perks-list .dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 0 10px var(--orange);
}

.ambassador-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ambassador-card-placeholder {
    aspect-ratio: 1;
    background: rgba(232, 121, 48, 0.05);
    border: 1px solid rgba(232, 121, 48, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ambassador-card-placeholder:hover {
    background: rgba(232, 121, 48, 0.1);
    transform: translateY(-5px);
    border-color: var(--orange);
}

/* CTA Section */
.cta-section {
    padding: 120px 24px;
    background: radial-gradient(circle at center, rgba(232, 121, 48, 0.1) 0%, transparent 70%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-white {
    background: white;
    color: black;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Footer Section */
.footer {
    background: #050505;
    padding: 80px 24px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 35px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
}

.footer-title::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--orange);
    position: absolute;
    left: -30px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .ambassador-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .cta-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@keyframes pillFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-wrapper {
    margin: 0 auto 32px;
    width: 240px;
    height: 240px;
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-title-daira {
    font-size: 4.5rem;
    display: block;
    letter-spacing: 4px;
    position: relative;
    color: var(--orange);
    background: linear-gradient(110deg,
            var(--orange) 45%,
            rgba(255, 255, 255, 0.8) 48%,
            #ffffff 50%,
            rgba(255, 255, 255, 0.8) 52%,
            var(--orange) 55%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(232, 121, 48, 0.2);
    animation: flash-shine 3s ease-in-out infinite;
    filter: drop-shadow(0 0 0px #fff);
}

/* Secondary glint layer for "small flash lights" */
.hero-title-daira::after {
    content: 'DAIRA';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg,
            transparent 48%,
            #ffffff 50%,
            transparent 52%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glint 4s linear infinite;
    pointer-events: none;
    z-index: 2;
    filter: blur(0.5px) brightness(2);
}

@keyframes flash-shine {
    0% {
        background-position: -200% center;
    }

    25%,
    35% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    }

    50% {
        background-position: 0% center;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
    }

    65%,
    75% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    }

    100% {
        background-position: 200% center;
        filter: drop-shadow(0 0 0px #fff);
    }
}

@keyframes glint {
    0% {
        background-position: -200% 0;
        opacity: 0;
    }

    40%,
    60% {
        opacity: 1;
    }

    100% {
        background-position: 200% 0;
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--text-white);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 24px rgba(232, 121, 48, 0.35);
}

.btn-primary:hover {
    background: var(--orange-bright);
    box-shadow: 0 6px 32px rgba(232, 121, 48, 0.5);
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--orange);
    background: rgba(232, 121, 48, 0.08);
    transform: translateY(-2px);
}

/* Stats Marquee (Restored) */
.stats-bar {
    background: linear-gradient(90deg, #e87930 0%, #ef4444 50%, #e040a0 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 800;
    margin-right: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.stat-icon {
    margin-left: 15px;
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Static Stats Section (Screenshot 1 Style) */
.stats-section {
    padding: 100px 24px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.static-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-number-lg {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
}

.stat-label-lg {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--bg-dark);
    padding: 100px 40px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-tag {
    text-align: center;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.text-orange {
    color: var(--orange);
}

.text-gradient-orange {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* About Cards Grid */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    perspective: 1000px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: pointer;
}

.about-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 121, 48, 0.08);
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-card:hover::after {
    opacity: 1;
}

.about-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.25) 0%, var(--bg-card) 100%);
    border-color: rgba(232, 121, 48, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon-orange {
    background: var(--orange);
}

.card-icon-orange-outline {
    background: transparent;
    border: 1px solid rgba(232, 121, 48, 0.3);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 4px;
    display: block;
}

.card-title-lg {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.card-highlight {
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Prize Card */
.about-card-prize {
    grid-column: 2 / 4;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.2) 0%, rgba(30, 15, 50, 0.6) 100%);
    border-color: rgba(192, 132, 252, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.card-title-prize {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #e879f9, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-sparkle {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: rgba(192, 132, 252, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sparkleFloat 3s ease-in-out infinite;
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories {
    background: var(--bg-dark);
    padding: 80px 40px 100px;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    perspective: 1000px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 48px 36px;
    min-height: 220px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: pointer;
}

.category-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 121, 48, 0.08);
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card-design {
    background: linear-gradient(135deg, rgba(120, 30, 100, 0.25) 0%, rgba(60, 15, 50, 0.3) 60%, var(--bg-card) 100%);
    border-color: rgba(224, 64, 160, 0.15);
}

.cat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transform: translateZ(30px);
    transition: transform 0.3s ease;
}

.category-card:hover .cat-icon {
    transform: translateZ(50px) scale(1.1);
}

.cat-icon svg {
    width: 26px;
    height: 26px;
}

.cat-icon-blue {
    background: var(--blue);
}

.cat-icon-pink {
    background: linear-gradient(135deg, #e040a0, #c084fc);
}

.cat-icon-orange {
    background: var(--orange);
}

.cat-icon-green {
    background: var(--green);
}

.cat-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    transform: translateZ(20px);
}

.cat-title-pink {
    color: var(--pink);
}

.cat-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    transform: translateZ(10px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title-daira {
        font-size: 3.5rem;
    }

    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 32px;
    }

    .about-cards {
        grid-template-columns: 1fr 1fr;
    }

    .about-card-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .about-card-prize {
        grid-column: 1 / 3;
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nav-container {
        height: 56px;
    }

    .hero {
        padding: 100px 16px 60px;
    }

    .hero-logo-wrapper {
        width: 140px;
        height: 140px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title-daira {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        flex-direction: column;
        gap: 12px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-card-large {
        grid-column: 1;
    }

    .about-card-prize {
        grid-column: 1;
    }

    .category-cards {
        grid-template-columns: 1fr;
    }
}