/* ===== ROOT & RESET ===== */
:root {
    --color-bg: #000000;
    --color-bg-secondary: #0a0e12;
    --color-primary: #0ea5e9;
    --color-secondary: #38bdf8;
    --color-accent: #ef4444;
    --color-text: #ffffff;
    --color-text-muted: #94a3b8;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== CANVAS BACKGROUND ===== */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

/* ===== PAINT REVEAL CANVAS ===== */
#paint-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 3rem;
    background: rgba(10, 14, 18, 0.95);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--color-text);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav-burger span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 160vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 90vh 3rem 0;
    z-index: 10;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease;
}

.hero-label {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
}

.highlight {
    color: var(--color-primary);
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.stat-featured {
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15);
}

.stat-featured .stat-value {
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-featured .stat-label {
    font-size: 1rem;
    letter-spacing: 3px;
}

.scroll-indicator {
    position: absolute;
    top: calc(60vh + 120px);
    left: calc(50% - 25px);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-primary), transparent);
    margin: 0 auto;
}

/* Ensure no stray borders or outlines anywhere */
* {
    box-sizing: border-box;
}

.container {
    border: none !important;
    outline: none !important;
}

.section {
    border: none !important;
    outline: none !important;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #0ea5e9 100%);
    background-size: 200% 100%;
    color: #0a0e12;
    font-weight: 700;
    box-shadow:
        0 0 20px rgba(14, 165, 233, 0.4),
        0 0 40px rgba(14, 165, 233, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    outline: none;
    animation: gradient-shift 3s ease infinite;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
    transition: left 0.5s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow:
        0 0 30px rgba(14, 165, 233, 0.6),
        0 0 60px rgba(14, 165, 233, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(14, 165, 233, 0.6),
            0 0 60px rgba(14, 165, 233, 0.3),
            0 4px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow:
            0 0 40px rgba(14, 165, 233, 0.8),
            0 0 80px rgba(14, 165, 233, 0.4),
            0 4px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary:focus {
    outline: none;
}

.btn-secondary {
    background: rgba(14, 165, 233, 0.05);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    outline: none;
    box-shadow:
        0 0 15px rgba(14, 165, 233, 0.2),
        inset 0 0 20px rgba(14, 165, 233, 0.05);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8, #0ea5e9);
    background-size: 200% 100%;
    border-radius: 4px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradient-shift 3s ease infinite;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #0a0e12;
    border-radius: 2px;
    z-index: -1;
}

.btn-secondary:hover {
    color: #ffffff;
    border-color: transparent;
    box-shadow:
        0 0 30px rgba(14, 165, 233, 0.5),
        0 0 60px rgba(14, 165, 233, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

/* ===== SECTIONS ===== */
.section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 3rem;
    z-index: 10;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* ===== SPONSORS SECTION ===== */
.sponsors-section {
    min-height: 60vh;
}

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

.sponsor-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(14, 165, 233, 0.03);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(14, 165, 233, 0.2),
        inset 0 0 30px rgba(14, 165, 233, 0.05);
}

.sponsor-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8, #0ea5e9);
    background-size: 200% 100%;
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradient-shift 3s ease infinite;
}

.sponsor-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #0a0e12;
    border-radius: 6px;
    z-index: -1;
}

.sponsor-card:hover {
    border-color: transparent;
    box-shadow:
        0 0 40px rgba(14, 165, 233, 0.6),
        0 0 80px rgba(14, 165, 233, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 0 50px rgba(14, 165, 233, 0.1);
    transform: translateY(-10px) scale(1.05);
}

.sponsor-card:hover::before {
    opacity: 1;
}

.sponsor-logo {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(14, 165, 233, 0.5));
}

.sponsor-logo img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

/* ===== FLOATING SPONSOR BADGES ===== */
.sponsor-badges {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.sponsor-badge {
    position: relative;
    width: 80px;
    height: 80px;
    padding: 1rem;
    background: rgba(10, 14, 18, 0.95);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
    box-shadow:
        0 0 15px rgba(14, 165, 233, 0.2),
        inset 0 0 20px rgba(14, 165, 233, 0.05);
    backdrop-filter: blur(10px);
}

.sponsor-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradient-shift 3s ease infinite;
}

.sponsor-badge:hover {
    border-color: transparent;
    box-shadow:
        0 0 30px rgba(14, 165, 233, 0.6),
        0 0 60px rgba(14, 165, 233, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateX(-10px) scale(1.1);
}

.sponsor-badge:hover::before {
    opacity: 1;
}

.sponsor-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.sponsor-badge:hover img {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(14, 165, 233, 0.5));
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.about-image {
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(14, 165, 233, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder svg {
    width: 150px;
    height: 150px;
    color: rgba(255, 255, 255, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== SHOP SECTION ===== */
.shop-section {
    background: var(--color-bg-secondary);
}

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

.shop-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.shop-cta {
    margin-bottom: 4rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
    font-weight: 800;
    letter-spacing: 2px;
}

.btn-large:hover {
    transform: translateY(-4px) scale(1.05);
}

.shop-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.shop-feature {
    text-align: center;
}

.shop-feature svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.shop-feature h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.shop-feature p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.video-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.video-card:hover::before {
    left: 100%;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2), 0 0 0 1px rgba(14, 165, 233, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.1));
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-card:hover .play-button {
    background: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: var(--color-primary);
}

.video-meta {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-meta::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
}

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

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

.section-cta a {
    outline: none;
    border: none;
}

.section-cta a:focus {
    outline: none;
}

/* ===== MUSIC SECTION ===== */
.music-content {
    max-width: 800px;
    margin: 0 auto;
}

.music-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.spotify-embed {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-embed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 255, 136, 0.2);
}

.spotify-embed iframe {
    display: block;
    width: 100%;
}

/* ===== CHECKER SECTION ===== */
.checker-section {
    background: var(--color-bg-secondary);
}

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

.checker-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.checker-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checker-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.checker-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.checker-results {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-muted);
}

.contact-method svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-bg-secondary);
    padding: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 18, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(14, 165, 233, 0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    }

    .nav-burger {
        display: flex;
        z-index: 1000;
    }

    .section {
        padding: 6rem 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .nav-burger {
        margin-left: auto;
    }

    .hero {
        min-height: 100vh;
        max-width: 100vw;
        padding: 60vh 5vw 3rem 5vw;
        justify-content: center;
        align-items: center;
        display: flex;
        overflow-x: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center !important;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
        text-align: center;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 350px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        gap: 2rem;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    /* Sponsors responsive */
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Hide floating badges on mobile, show in sponsors section instead */
    .sponsor-badges {
        display: none;
    }

    .checker-form {
        flex-direction: column;
    }

    .about-image {
        height: 300px;
    }
}

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

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

    .stat-value {
        font-size: 2rem;
    }
}
