/* Root Variables */
:root {
    --color-background: #010813;
    --color-foreground: #eeeae0;
    --color-card: #0a1628;
    --color-primary: #011230;
    --color-primary-light: #021d4d;
    --color-accent-orange: #fd6301;
    --color-accent-blue: #00a7f8;
    --color-accent-blue-dim: #00a7f833;
    --color-muted: #1a2942;
    --color-muted-foreground: #e5e5e5;
    --color-border: #1f3251;
    --radius: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #fda901;
}
/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* Floating Cubes Background */
.floating-cubes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    perspective: 1000px;
}

/* 3D Cube Styles */
.cube-wrapper {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: float-up 20s linear infinite;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    /* Animation set individually in JS */
}

.cube-face {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 167, 248, 0.1);
    border: 2px solid rgba(0, 167, 248, 0.8);
    box-shadow:
        inset 0 0 15px rgba(0, 167, 248, 0.3),
        0 0 15px rgba(0, 167, 248, 0.4);
}

/* Position each face to form a cube */
.face-front  { transform: rotateY(  0deg) translateZ(20px); }
.face-back   { transform: rotateY(180deg) translateZ(20px); }
.face-right  { transform: rotateY( 90deg) translateZ(20px); }
.face-left   { transform: rotateY(-90deg) translateZ(20px); }
.face-top    { transform: rotateX( 90deg) translateZ(20px); }
.face-bottom { transform: rotateX(-90deg) translateZ(20px); }

/* Animations */
@keyframes float-up {
    0% {
        transform: translateY(120vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Individual cube rotation animations will be created dynamically */

/* Grid Pattern for Team Section */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(rgba(0, 167, 248, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 167, 248, 0.5) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Diagonal Pattern for FAQ */
.diagonal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--color-accent-blue-dim) 35px, var(--color-accent-blue-dim) 70px);
    animation: diagonal-shift 30s linear infinite;
}

@keyframes diagonal-shift {
    0% { transform: translateX(0); }
    100% { transform: translateX(70px); }
}

/* Navigation - No border */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(1, 8, 19, 0.9) 0%, rgba(1, 8, 19, 0) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-muted-foreground);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-foreground);
}

.btn-nav {
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-orange) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    color: white !important;
    font-weight: 500;
}

.nav-toggle {
    display: none;
}

/* Hero Section - Compact */
.hero {
    padding: 7rem 0 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-wrapper {
    width: 100%;
}

.hero-main {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text-content {
    flex: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.title-block {
    color: var(--color-accent-orange);
}

.title-up {
    color: var(--color-accent-blue);
}

.hero-logo {
    max-height: 150px;
    max-width: 90%;
    user-select: none;
    filter: drop-shadow(0 20px 40px rgba(240, 240, 240, 0.22));
}
.hero-event-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.event-dates {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-card);
    border-radius: 9999px;
    border: 1px solid var(--color-border);
    width: fit-content;
}

.event-dates svg {
    color: var(--color-accent-blue);
}

.date-divider {
    color: var(--color-muted-foreground);
}

.event-togo {
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--color-border);
    width: fit-content;
    margin-right: 10%;
    backdrop-filter: blur(10px);
}

.event-togo-value {
    color: var(--color-accent-blue);
    display: inline;
}

@media (max-width: 500px) {
    .event-togo {
        display: none;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.btn-signup {
    position: relative;
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--color-primary);
    color: var(--color-foreground);
    border: 2px solid var(--color-accent-blue);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-accent-blue), transparent);
    transition: left 0.5s ease;
}

.btn-signup:hover::before {
    left: 100%;
}

.btn-signup:hover {
    background: var(--color-primary-light);
    transform: translateX(5px);
    box-shadow: -5px 0 20px rgba(0, 167, 248, 0.3);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-accent-blue-dim) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-signup:hover .btn-glow {
    opacity: 1;
}

/* Countdown Bar */
.countdown-bar {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    background: rgba(1, 18, 48, 0.5);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.countdown-bar .countdown-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.countdown-bar .countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    font-variant-numeric: tabular-nums;
}

.countdown-bar .countdown-label {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}



/* Hero Mascot */
.hero-mascot {
    position: relative;
    flex: 0 0 350px;
}

.hero-mascot img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 167, 248, 0.2));
    animation: float-simple 6s ease-in-out infinite;
}

@keyframes float-simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.mascot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-blue-dim) 0%, transparent 60%);
    filter: blur(60px);
}

@media (max-width: 500px) {
    .hero-mascot {
        display: none;
    }
}


/* Geometric Transition */
.geometric-transition {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--color-primary);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* About & Gallery Section */
.about-gallery {
    padding: 5rem 0;
    background: var(--color-primary);
    position: relative;
}

.section-grid {
    /* Za galeriju
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;*/
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;

    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--color-card) 0%, rgba(1, 16, 45, 0.8) 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 99, 1, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow:
        0 20px 40px rgba(253, 99, 1, 0.2),
        0 0 0 1px rgba(253, 99, 1, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(253, 99, 1, 0.7) 100%);
    border-radius: 16px;
    color: var(--color-foreground);
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
    stroke: var(--color-accent-orange);
}

.feature-card h4 {
    color: var(--color-foreground);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-muted-foreground);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

.gallery-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-thumb {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-placeholder {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gallery-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent-blue);
}

.gallery-thumb:hover .gallery-placeholder {
    background: var(--color-primary-light);
    transform: scale(1.05);
    border-color: var(--color-accent-blue);
}

/* Schedule Section */
.schedule {
    padding: 5rem 0;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
}

.schedule::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 167, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 99, 1, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 167, 248, 0.05) 0%, transparent 50%),
        conic-gradient(from 0deg at 50% 50%, rgba(0, 167, 248, 0.03) 0deg, transparent 60deg, rgba(253, 99, 1, 0.03) 120deg, transparent 180deg, rgba(0, 167, 248, 0.03) 240deg, transparent 300deg, rgba(253, 99, 1, 0.03) 360deg);
    background-size: 600px 600px, 800px 800px, 500px 500px, 100% 100%;
    pointer-events: none;
    animation: pattern-rotate 60s linear infinite;
    z-index: 0;
}

@keyframes pattern-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--color-muted-foreground);
    font-size: 1.125rem;
}

/* Event Info */
.event-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.2s;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent-blue);
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-color: var(--color-accent-orange);
}

.info-icon svg {
    color: var(--color-accent-blue);
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* Compact Timeline */
.schedule-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-day {
    margin-bottom: 2rem;
}

.timeline-day-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-left: 4px solid var(--color-accent-blue);
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}

.timeline-day-header h3 {
    font-size: 1.1rem;
    color: var(--color-accent-blue);
}

.timeline-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.2s;
}

.timeline-item:hover {
    border-color: var(--color-accent-blue);
    background: var(--color-primary-light);
}

.timeline-time {
    font-size: 0.85rem;
    color: var(--color-accent-blue);
    font-weight: 600;
}

.timeline-content h4 {
    margin-bottom: 0.25rem;
    color: var(--color-foreground);
    font-size: 1rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--color-muted-foreground);
    margin: 0;
}

/* Partners */
.partners {
    padding: 5rem 0;
    background: var(--color-primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-orange) 0%, var(--color-accent-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-dark {
    background:rgba(0, 0, 0, 0.15)!important;
}
/* Partner Tiers */
.partner-platina1 {
    grid-column: span 2;
    min-height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #fff9f5 100%);
    border: 3px solid var(--color-accent-orange);
}

.partner-platina2 {
    grid-column: span 2;
    min-height: 170px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid var(--color-accent-blue);
}

.partner-regular {
    min-height: 130px;
    background: #ffffff;
}

.partner-prostor {
    min-height: 130px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.partner-annual {
    min-height: 150px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid var(--color-accent-blue);
}

.partner-media {
    min-height: 100px;
    max-width: 200px;
    background: #ffffff;
    justify-self: center;
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.partner-logo {
    max-width: 85%;
    max-height: 90px;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
}

.partner-platina1 .partner-logo {
    max-height: 120px;
    max-width: 90%;
}

.partner-platina2 .partner-logo {
    max-height: 100px;
    max-width: 90%;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partner-platina1,
    .partner-platina2 {
        grid-column: span 1;
    }
}

/* Team */
.team {
    padding: 5rem 0;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, rgba(0, 167, 248, 0.03) 25%, transparent 25%, transparent 75%, rgba(0, 167, 248, 0.03) 75%),
        linear-gradient(45deg, rgba(0, 167, 248, 0.03) 25%, transparent 25%, transparent 75%, rgba(0, 167, 248, 0.03) 75%),
        linear-gradient(-45deg, rgba(253, 99, 1, 0.02) 25%, transparent 25%, transparent 75%, rgba(253, 99, 1, 0.02) 75%),
        radial-gradient(circle at 25% 25%, rgba(0, 167, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(253, 99, 1, 0.04) 0%, transparent 50%);
    background-size: 60px 60px, 60px 60px, 60px 60px, 400px 400px, 400px 400px;
    background-position: 0 0, 30px 30px, 0 0, 0 0, 200px 200px;
    pointer-events: none;
    z-index: 0;
    animation: subtle-shift 40s ease-in-out infinite;
}

@keyframes subtle-shift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-blue) 0%, var(--color-accent-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 167, 248, 0.15);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--color-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
}

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--color-foreground);
    font-weight: 600;
}

.team-role {
    color: var(--color-muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

.team-contact {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.team-contact a {
    color: var(--color-accent-blue);
    text-decoration: none;
    display: block;
    margin: 0.25rem 0;
    transition: color 0.2s ease;
}

.team-contact a:hover {
    color: var(--color-accent-orange);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }

    .team-avatar {
        width: 140px;
        height: 140px;
    }
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: var(--color-primary);
    position: relative;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--color-muted);
}

.faq-icon {
    color: var(--color-accent-blue);
    transition: transform 0.2s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 300px;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: var(--color-background);
}

.contact-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--color-accent-blue);
}

.contact-logo {
    max-width: 20px;
    display: inline;
    transform: translateY(5px);
    margin-right: 5px;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--color-accent-blue);
    transform: translateY(-2px);
}

/* Previous Edition Notice */
.edition-notice {
    background: linear-gradient(135deg, rgb(248 122 0 / 5%) 0%, rgb(255 213 7 / 5%) 100% 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin: 0;
    backdrop-filter: blur(12px);
}

.edition-notice .notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-muted-foreground);
    font-size: 0.95rem;
}

.edition-notice svg {
    color: var(--color-accent-blue);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--color-primary);
    padding: 2rem 0;
    text-align: center;
    color: var(--color-muted-foreground);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-foreground);
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(1, 16, 45, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem 1rem;
        flex-direction: column;
        gap: 1.5rem;
        border-top: 1px solid var(--color-border);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        text-align: center;
        padding: 0.5rem;
    }

    .btn-nav {
        margin: 0 auto;
        width: fit-content;
    }

    .hero-main {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        justify-content: center;
    }

    .event-dates {
        margin: 0 auto 1.5rem;
    }

    .hero-mascot {
        flex: 0 0 250px;
    }

    .countdown-bar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-card {
        grid-template-columns: 1fr;
    }
}