/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Import Monument Extended Font */
@import url('https://fonts.cdnfonts.com/css/monument-extended');

:root {
    /* Colors */
    --color-primary: #ff0000;
    --color-bg: #000;
    --color-text: #fff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-card-bg: rgba(255, 255, 255, 0.05);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #000;
    z-index: 2000;
    border-radius: 6px;
    text-decoration: none;
}

/* Custom Font - Akira Expanded */
@font-face {
    font-family: 'Akira Expanded';
    src: url('../fonts/AkiraExpanded-Regular.woff2') format('woff2'),
        url('../fonts/AkiraExpanded-Regular.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'Poppins', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

/* Apply Clash Display to all subheadings */
h3,
h4,
h5,
h6,
.subtitle,
.timeline-event,
.guideline-label,
.advisory-name,
.footer-heading {
    font-family: 'Clash Display', sans-serif;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: padding 0.3s ease;
}

.desktop-nav {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
    opacity: 0.7;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-primary);
}

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

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

.nav-link.active {
    opacity: 1;
    color: var(--color-primary);
}

@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
    }

    .menu-icon {
        display: none;
    }
}

.logo {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition-base);
}

.logo-img {
    height: 18px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-base);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.menu-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.menu-icon:hover {
    transform: scale(1.1);
}

.menu-icon.active .menu-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-icon.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .menu-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.menu-line {
    width: 28px;
    height: 2.5px;
    background: var(--color-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.nav-overlay-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-base);
    z-index: 1001;
}

.nav-overlay-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.nav-overlay-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    gap: 0;
}

.nav-overlay-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.nav-overlay-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, transparent);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-overlay-link::before {
    content: attr(data-number);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-right: 1.5rem;
    font-weight: 400;
    min-width: 30px;
}

.nav-link-text {
    flex: 1;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text);
    text-align: left;
    transition: var(--transition-base);
}

.nav-link-arrow {
    color: var(--color-text);
    transition: var(--transition-base);
    opacity: 0.5;
}

.nav-overlay-link:hover .nav-link-text {
    color: var(--color-primary);
}

.nav-overlay-link:hover .nav-link-arrow {
    color: var(--color-primary);
    opacity: 1;
    transform: translate(5px, -5px);
}

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

/* ScrollSpy Active State - Desktop Only */
@media (min-width: 769px) {
    .nav-overlay-link.active .nav-link-text {
        color: var(--color-primary);
    }

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

.nav-overlay.active .nav-overlay-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay-link:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay-link:nth-child(2) {
    transition-delay: 0.15s;
}

.nav-overlay.active .nav-overlay-link:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay-link:nth-child(4) {
    transition-delay: 0.25s;
}

.nav-overlay.active .nav-overlay-link:nth-child(5) {
    transition-delay: 0.3s;
}

.nav-overlay-register {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.nav-overlay.active .nav-overlay-register {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Responsive adjustments for mobile menu */
@media (max-width: 768px) {
    .nav-overlay-menu {
        max-width: 90%;
    }

    .nav-link-text {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .nav-overlay-link::before {
        font-size: 0.65rem;
        margin-right: 1rem;
        min-width: 25px;
    }

    .nav-overlay-close {
        top: 1.5rem;
        right: 1.5rem;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: #000;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 0, 0, 0.6);
    border-radius: 50%;
    animation: float 20s infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.5);
        opacity: 0;
    }
}

.presenter {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    text-transform: uppercase;
}

.presenter:not(.presenter-logos) {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.3;
    margin-top: 2rem;
}

.presenter h1 {
    font-size: clamp(1.2rem, 3.5vw, 2.5rem);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.3;
}

.presenter-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    justify-content: center;
}

.presenter-label {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.presenter-logos-row {
    display: flex;
    align-items: center;
    gap: .2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.presenter-logo {
    height: 45px;
    width: 90px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.presenter-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-separator {
    font-size: 1.5rem;
    opacity: 0.6;
    margin: 0 0.5rem;
}

.title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.2s forwards, gradientShift 3s ease infinite;
    opacity: 0;
    text-align: center;
    display: inline-block;
}

.title-monument,
.title-akira {
    background: linear-gradient(45deg, #fff, #ff0000, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.title-monument {
    font-family: 'Monument Extended', sans-serif;
}

.title-logo {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    margin: 0 0.15em;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.title-logo:hover {
    transform: scale(1.1);
}

.title-akira {
    font-family: 'Akira Expanded', sans-serif;
}

.subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    text-align: center;
}

.event-details {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    margin-top: 50px;
}

.btn {
    padding: 0.75rem 1.2rem 0.75rem 1.8rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    width: 200px;
    height: 60px;
}

.btn-text {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.btn-primary .btn-icon {
    background: #fff;
    color: #ff0000;
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(255, 0, 0, 0.8);
}

.btn-primary:hover .btn-icon {
    transform: rotate(45deg);
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

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

.btn-secondary .btn-icon {
    background: #ff0000;
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover .btn-icon {
    transform: rotate(45deg);
    background: #ff0000;
}

/* Focus states for accessibility */
.btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    animation: focusPulse 0.6s ease-out;
}

.btn-primary:focus-visible {
    outline-color: rgba(255, 0, 0, 0.8);
}

/* Event Info Cards */
.event-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    justify-content: center;

    /* Center items inside each grid cell (optional but recommended) */
    justify-items: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.info-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Clash Display', sans-serif;
    position: relative;
    z-index: 1;
}

/* Countdown Timer */
.countdown-timer {
    margin: 2.5rem auto 0;
    max-width: 600px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.countdown-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1), transparent);
    animation: pulse 4s ease-in-out infinite;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Clash Display', sans-serif;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.countdown-label-small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    49%,
    100% {
        opacity: 1;
    }

    50%,
    99% {
        opacity: 0.3;
    }
}

/* Mobile responsive for info cards */
@media (max-width: 768px) {
    .event-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin: 2rem auto 0;
    }

    .info-card {
        padding: 1.2rem 0.8rem;
    }

    .info-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .info-label {
        font-size: 0.65rem;
    }

    .info-value {
        font-size: 1.2rem;
    }

    .countdown-display {
        gap: 0.5rem;
        padding: 1rem;
    }

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

    .countdown-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .event-info-cards {
        grid-template-columns: 1fr;
        max-width: 280px;
        gap: 0.6rem;
    }

    .info-card {
        padding: 1rem;
    }

    .countdown-timer {
        margin: 1.5rem auto 0;
    }

    .countdown-display {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 1rem 0.5rem;
    }

    .countdown-unit {
        min-width: 60px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-separator:nth-of-type(2) {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 0;
    }
}

.values-section {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.05) 0%, transparent 100%);
    animation: fadeIn 1s ease 0.5s both;
}

.values-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.value-item {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    animation: valueSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.value-item:nth-child(1) {
    animation-delay: 0.2s;
}

.value-item:nth-child(3) {
    animation-delay: 0.4s;
}

.value-item:hover {
    color: #ff0000;
    transform: scale(1.05) rotate(2deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-separator {
    color: #ff0000;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    animation: fadeIn 1s ease 0.3s both;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.about-title {
    font-family: 'Akira Expanded', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #fff;
    opacity: 1;
    animation: titleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
    animation: expandWidth 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.about-content {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
}

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

.guidelines-title {
    font-family: 'Akira Expanded', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #fff;
    opacity: 1;
    animation: titleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.guidelines-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
    animation: expandWidth 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.guideline-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guideline-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0;
}

.guideline-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

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

.guideline-content {
    flex: 1;
}

.guideline-label {
    color: #ff0000;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.guideline-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.guideline-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-left: 2rem;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-title {
    font-family: 'Akira Expanded', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 4rem;
    color: #fff;
    opacity: 1;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    animation: titleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
    animation: expandWidth 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.timeline-container {
    position: relative;
    padding-left: 180px;
}

.timeline-line {
    position: absolute;
    left: 150px;
    top: 0;
    width: 3px;
    height: 0;
    background: #ff0000;
    transition: height 0.3s ease-out;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 4rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-item:first-child {
    margin-top: 0;
}

.timeline-day {
    position: absolute;
    left: -180px;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 700;
    color: var(--color-primary);
    width: 140px;
    text-align: right;
    padding-right: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.timeline-time {
    position: absolute;
    left: -180px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    width: 140px;
    text-align: right;
    padding-right: 1rem;
}

.timeline-time::after {
    content: '';
    position: absolute;
    right: -31.5px;
    top: 0.3rem;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    z-index: 2;
    border: 2px solid var(--color-bg);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.line-reached .timeline-time::after {
    opacity: 1;
    transform: scale(1);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1);
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.timeline-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-20px);
    filter: blur(3px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.line-reached .timeline-content {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    transition-delay: 0.15s;
}

.timeline-event {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.timeline-desc {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Advisory Board Section */

.advisory-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.advisory-title {
    font-family: 'Akira Expanded', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #fff;
    opacity: 1;
    animation: titleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.advisory-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
    animation: expandWidth 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.advisory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .advisory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.advisory-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advisory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: slide 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.advisory-card:nth-child(1) {
    transition-delay: 0.1s;
}

.advisory-card:nth-child(2) {
    transition-delay: 0.2s;
}

.advisory-card:nth-child(3) {
    transition-delay: 0.3s;
}

.advisory-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.4);
}

.advisory-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: #d3d3d3;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

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

.advisory-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.advisory-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.advisory-socials {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.8), transparent);
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

.social-icon:hover {
    transform: scale(1.15) rotate(5deg);
    background: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

/* Footer Section */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-heading {
    font-family: 'Akira Expanded', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ff0000;
    z-index: -1;
    transition: left 0.3s ease;
}

.footer-social-link:hover {
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

.footer-social-link:hover::before {
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, rgba(255, 0, 0, 0.5));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.footer-link:hover::before {
    width: 100%;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-info-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

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

    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

@keyframes heroBgShift {
    0% {
        background: linear-gradient(135deg, #000 0%, #1a0000 50%, #000 100%);
    }

    50% {
        background: linear-gradient(45deg, #0a0000 0%, #2a0000 50%, #0a0000 100%);
    }

    100% {
        background: linear-gradient(135deg, #000 0%, #1a0000 50%, #000 100%);
    }
}

@keyframes focusPulse {
    0% {
        outline-width: 3px;
    }

    50% {
        outline-width: 5px;
    }

    100% {
        outline-width: 3px;
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

@keyframes slide {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes valueSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px);
    }
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.25), transparent);
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    box-shadow: 0 0 200px rgba(255, 0, 0, 0.3);
}

.glow-1 {
    top: -200px;
    left: -200px;
    animation: pulseLeft 6s ease-in-out infinite;
}

.glow-2 {
    bottom: -200px;
    right: -200px;
    animation: pulseRight 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulseLeft {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3) translate(30px, 30px);
        opacity: 0.7;
    }
}

@keyframes pulseRight {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3) translate(-30px, -30px);
        opacity: 0.7;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInScroll 1s ease 2s forwards;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #fff);
    margin: 0 auto;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes fadeInScroll {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.6;
    }
}

/* Accessibility - Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Small phones - Extra small devices */
@media (max-width: 480px) {
    .nav {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 12px;
    }

    .menu-icon {
        transform: scale(0.85);
    }

    .hero {
        padding: 1rem 0.5rem;
        min-height: 80vh;
    }

    .presenter {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    .presenter:not(.presenter-logos) {
        font-size: clamp(1rem, 4vw, 1.3rem);
        letter-spacing: 0.15em;
    }

    .presenter h1 {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        letter-spacing: 0.1em;
    }

    .presenter-label {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        margin-bottom: 0.3rem;
    }

    .presenter-logos-row {
        gap: 0.5rem;
    }

    .presenter-logo {
        height: 25px;
        width: 50px;
    }

    .logo-separator {
        font-size: 1rem;
        margin: 0 0.3rem;
    }

    .title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
        margin-bottom: 1rem;
    }

    .event-details {
        font-size: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        width: 160px;
        height: 50px;
        gap: 0.5rem;
    }

    .btn-text {
        font-size: 0.7rem;
    }

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

    .value-item {
        font-size: clamp(1.1rem, 2vw, 1.8rem);
    }

    .values-container {
        gap: 1rem;
    }

    .about-section,
    .guidelines-section,
    .timeline-section,
    .advisory-section {
        padding: 2rem 1rem;
    }

    .about-title,
    .guidelines-title,
    .timeline-title,
    .advisory-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .about-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .guideline-card {
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .guideline-label {
        font-size: 0.9rem;
    }

    .guideline-text {
        font-size: 0.85rem;
    }

    .guideline-number {
        font-size: 2.5rem;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .timeline-container {
        padding-left: 80px;
    }

    .timeline-line {
        left: 60px;
    }

    .timeline-time {
        left: -80px;
        font-size: 0.7rem;
        width: 70px;
        padding-right: 0.5rem;
    }

    .timeline-time::after {
        right: -16.5px;
        width: 8px;
        height: 8px;
    }

    .timeline-event {
        font-size: 1rem;
    }

    .timeline-desc {
        font-size: 0.8rem;
    }

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

    .advisory-card {
        padding: 1rem;
    }

    .advisory-image {
        aspect-ratio: 16/9;
        margin-bottom: 1rem;
    }

    .advisory-name {
        font-size: 1rem;
    }

    .advisory-role {
        font-size: 0.75rem;
    }

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

    .footer-heading {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .nav {
        padding: 1.2rem 2rem;
    }

    .logo-img {
        height: 12px;
    }

    .hero {
        padding: 1.5rem;
        min-height: 85vh;
    }

    .title {
        font-size: clamp(2.5rem, 9vw, 5rem);
    }

    .subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.8rem);
    }

    .btn {
        width: 180px;
        height: 55px;
    }

    .presenter:not(.presenter-logos) {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
        letter-spacing: 0.18em;
    }

    .presenter h1 {
        font-size: clamp(1rem, 3.5vw, 1.5rem);
        letter-spacing: 0.12em;
    }

    .presenter-label {
        font-size: 0.8rem;
        letter-spacing: 0.25em;
    }

    .presenter-logos-row {
        gap: .5rem;
    }

    .presenter-logo {
        height: 25px;
        width: 50px;
    }

    .logo-separator {
        font-size: 1.2rem;
        margin: 0 0.4rem;
    }

    .values-container {
        gap: 2rem;
    }

    .about-section,
    .guidelines-section,
    .timeline-section,
    .advisory-section {
        padding: 3rem 2rem;
    }

    .timeline-container {
        padding-left: 140px;
    }

    .timeline-line {
        left: 110px;
    }

    .timeline-time {
        left: -140px;
        width: 110px;
    }

    .timeline-time::after {
        right: -26px;
        width: 9px;
        height: 9px;
    }

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

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

/* Desktop Responsive - Advisory Board */
@media (min-width: 768px) {
    .advisory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .advisory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

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

    .hero {
        padding: 2rem 1rem;
    }

    .presenter:not(.presenter-logos) {
        font-size: clamp(1.3rem, 4.5vw, 2rem);
        letter-spacing: 0.19em;
    }

    .presenter h1 {
        font-size: clamp(1.1rem, 3.5vw, 1.8rem);
        letter-spacing: 0.13em;
    }

    .presenter-label {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .presenter-logos-row {
        gap: .2rem;
    }

    .presenter-logo {
        height: 25px;
        width: 50px;
    }

    .logo-separator {
        font-size: 1.1rem;
        margin: 0 0.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .values-container {
        gap: 1.5rem;
    }

    .about-section,
    .guidelines-section,
    .timeline-section,
    .advisory-section {
        padding: 3rem 1.5rem;
    }

    .timeline-container {
        padding-left: 120px;
    }

    .timeline-line {
        left: 100px;
    }

    .timeline-item {
        gap: 0;
        margin-bottom: 3rem;
        padding-left: 1.5rem;
    }

    .timeline-time {
        left: -120px;
        font-size: 0.85rem;
        width: 95px;
        padding-right: 0.8rem;
    }

    .timeline-time::after {
        right: -21.5px;
        top: 0.2rem;
        width: 10px;
        height: 10px;
    }

    .timeline-content {
        padding-left: 1.5rem;
    }

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

    .guideline-number {
        margin-left: 0;
        margin-top: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section {
        gap: 1rem;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }
}

/* Prize Pool Section */
.prize-pool-section {
    margin: 2.5rem auto 0;
    max-width: 900px;
    padding: 0 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.prize-pool-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.prize-pool-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    font-family: 'Clash Display', sans-serif;
}

.total-prize-pool {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Clash Display', sans-serif;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.prize-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.prize-card {
    background: rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prize-card:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.6);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.4);
}

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

.prize-first:hover {
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.prize-second:hover {
    box-shadow: 0 15px 50px rgba(192, 192, 192, 0.3);
}

.prize-third:hover {
    box-shadow: 0 15px 50px rgba(205, 127, 50, 0.3);
}

.prize-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
    position: relative;
    z-index: 1;
}

.prize-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.prize-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Clash Display', sans-serif;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Prize Separator Line */
.prize-pool-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.5), transparent);
    margin: 2rem 0 0;
}

/* Benefits Section */
.benefits-section {
    margin: 3rem auto 0;
    max-width: 900px;
    padding: 0 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.benefits-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Clash Display', sans-serif;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.3));
}

.benefit-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}


/* Mobile Responsive - Prize Pool */
@media (max-width: 768px) {
    .prize-cards-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto 2rem;
    }

    .prize-card {
        padding: 1.5rem 1rem;
    }

    .prize-icon {
        font-size: 2.5rem;
    }

    .prize-value {
        font-size: 1.6rem;
    }

    .event-info-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .total-prize-pool {
        font-size: 1.3rem;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {

    .prize-cards-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



.prize-pool-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    font-family: 'Clash Display', sans-serif;
    text-align: center;
}

.total-prize-pool {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Clash Display', sans-serif;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    text-align: center;
}

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
    .prize-pool-title {
        font-size: 2rem;
        letter-spacing: 0.12em;
    }

    .total-prize-pool {
        font-size: 1.6rem;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .prize-pool-title {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.3rem;
    }

    .total-prize-pool {
        font-size: 1.25rem;
        text-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
    }
}
