*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#000;
    color:white;

    min-height:100vh;
    padding:0;
}

/* NAVIGATION BAR */

.navbar{
    position:fixed;
    top:24px;
    left:50%;
    transform:translateX(-50%);
    
    z-index:10;
    
    width:auto;
    max-width:90vw;
}

.navbar-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    
    padding:14px 28px;
    
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:999px;
    
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

.nav-links{
    display:flex;
    gap:28px;
    align-items:center;
}

.nav-link{
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    letter-spacing:0.5px;
    
    transition:color 0.3s ease;
    
    cursor:pointer;
}

.nav-link:hover{
    color:#b983ff;
}

/* FLOATING LOGO */

.floating-logo{
    position:fixed;
    top:24px;
    left:24px;
    
    z-index:9;
    
    width:140px;
    height:auto;
    
    opacity:1;
    transition:opacity 0.3s ease;
}

.floating-logo img{
    width:100%;
    height:auto;
    
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}

@media(max-width:768px){
    /* Hide floating elements on mobile for cleaner navbar */
    .floating-logo,
    .floating-contact{
        display:none !important;
        opacity:0 !important;
        pointer-events:none !important;
    }

    /* Compact navbar container */
    .navbar-container{
        gap:12px;
        padding:8px 12px;
    }

    .nav-links{
        gap:10px;
    }

    /* Replace text labels with icons while keeping text for accessibility (visually hidden)
       Use pseudo-elements for icons (emoji fallback). */
    .nav-link{
        font-size:0; /* hide text visually */
        width:44px;
        height:44px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding:6px;
        border-radius:10px;
        background:transparent;
        transition:background 0.2s ease;
    }

    .nav-link::before{
        content:'';
        font-size:20px;
        display:block;
        line-height:1;
    }

    .nav-links .nav-link:nth-child(1)::before{ content:"🏠"; }
    .nav-links .nav-link:nth-child(2)::before{ content:"ℹ️"; }
    .nav-links .nav-link:nth-child(3)::before{ content:"📝"; }
    .nav-links .nav-link:nth-child(4)::before{ content:"📊"; }
    .nav-links .nav-link:nth-child(5)::before{ content:"🖼️"; }

    .nav-link:hover{ background:rgba(255,255,255,0.04); }
}

/* Small screens: make icons slightly smaller */
@media(max-width:480px){
    .nav-link{ width:40px; height:40px; }
    .nav-link::before{ font-size:18px; }
}


.video-hero{

    width:100%;
    height:100vh;

    position:relative;
    overflow:hidden;

    background:#000;
}

.video-hero .hero-logo{

    position:absolute;
    top:24px;
    left:24px;

    width:120px;
    height:auto;

    z-index:4;

    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
    
    display:none;
}

.hero-overlay{

    position:absolute;
    inset:0;
    z-index:3;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;

    text-align:center;

    pointer-events:none;

    padding-bottom:10px;
}

.hero-overlay .hero-title{
    font-family:"Aptos Display", "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size:28px;
    font-weight:200;
    line-height:1.25;
    padding:20px 0 40px 0;

    opacity:0.8;

    color:#ffffff;

    text-transform:uppercase;

    text-shadow:0 10px 30px rgba(0,0,0,0.65);
}



@supports ((-webkit-background-clip: text) or (background-clip: text)){
    .hero-overlay .hero-title{
        background: linear-gradient(
            to bottom,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,0.85) 45%,
            rgba(0,0,0,0.9) 100%
        );

        -webkit-background-clip:text;
        background-clip:text;
        -webkit-text-fill-color:transparent;
        color:transparent;
    }
}

.scroll-cta{
    pointer-events:auto;

    margin-top:18px;
    height:52px;
    padding:0 22px;

    border-radius:999px;
    border:1px solid rgba(255,255,255,0.22);
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);

    color:white;
    cursor:pointer;

    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:transform 0.25s ease, background 0.25s ease;
}

.scroll-cta:hover{
    transform:translateY(-2px) scale(1.05);
    background:rgba(255,255,255,0.12);
}

.scroll-cta:active{
    transform:translateY(0) scale(0.98);
}

.scroll-cta{
    animation:ctaGlow 1.6s ease-in-out infinite;
}

@keyframes ctaGlow{
    0%,100%{
        box-shadow:0 0 0 rgba(123,97,255,0);
    }
    50%{
        box-shadow:0 18px 40px rgba(123,97,255,0.25);
    }
}

@media(max-width:768px){
    .video-hero .hero-logo{
        top:16px;
        left:16px;
        width:96px;
    }

/* Frosted glass Register button for hero */
.hero-register{
    margin-top:0px;
    height:56px;
    padding:0 26px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.18);
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:#fff;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow:0 6px 18px rgba(11,116,255,0.04), inset 0 1px 0 rgba(255,255,255,0.04);
    animation:floatY 6s ease-in-out infinite, pulseGlow 3.6s ease-in-out infinite;
}

.hero-register:hover{
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 18px 40px rgba(11,116,255,0.12);
    background:rgba(255,255,255,0.08);
}

@keyframes floatY{
    0%{transform:translateY(0);} 
    50%{transform:translateY(-6px);} 
    100%{transform:translateY(0);} 
}

@keyframes pulseGlow{
    0%,100%{box-shadow:0 6px 18px rgba(11,116,255,0.04);} 
    50%{box-shadow:0 12px 30px rgba(11,116,255,0.10);} 
}

/* Ensure hero caption remains centered and minimal */
.video-hero .hero-caption{display:flex;flex-direction:column;align-items:center;justify-content:center;}

/* Slightly tighter letter spacing on small screens */
@media(max-width:600px){
    .hero-title{letter-spacing:1.2px;font-size:16px}
    .hero-register{height:48px;padding:0 20px}
}

/* Desktop / large-screen refinements */
@media (min-width:1000px) {
    .hero-title{
        font-size:44px;
        letter-spacing:6px;
        font-weight:300;
        line-height:1.02;
        -webkit-font-smoothing:antialiased;
        -webkit-mask-image: linear-gradient(black 0%, black 78%, transparent 100%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);
    }

    .hero-register{
        height:64px;
        padding:0 32px;
        font-size:15px;
        box-shadow:0 20px 50px rgba(11,116,255,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
        animation-duration:7s, 3.6s;
    }
}

    .hero-overlay .hero-title{
        font-size:20px;
    }

    .hero-overlay{
        padding-bottom:10px;
    }
}

.video-hero video{

    width:100%;
    height:100%;
    object-fit:cover;

    display:block;
}

@media(max-width:768px){
    .video-hero video{
        object-fit:contain;
        /* contain leaves black bars — fill them with the same dark bg */
        background:#000;
    }

    /* Shrink the hero height slightly so the contained video isn't too small */
    .video-hero{
        height:60vh;
    }
}

.page{
    width:100%;
    padding:40px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:28px;

    /* Let the second section peek into the hero */
    margin-top:-50px;
    position:relative;
    z-index:5;
}

/* MAIN SECTION */

.slider-section{

    width:100%;
    max-width:1450px;

    min-height:880px;
    height:auto;

    border-radius:40px;

    overflow:hidden;

    position:relative;

    background:
    radial-gradient(circle at top left,#29114f 0%,#111 40%),
    radial-gradient(circle at bottom right,#12122b 0%,#000 45%);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.45);

    padding:
    140px 60px 60px 60px;
}

@media(max-width:768px){
    .slider-section{
        min-height:auto;
        padding:120px 30px 40px 30px;
        border-radius:24px;
    }
}

@media(max-width:480px){
    .slider-section{
        padding:100px 20px 30px 20px;
        border-radius:20px;
        box-shadow:0 15px 40px rgba(0,0,0,0.4);
    }
}

/* Modifier to remove the outer glass card visuals */
.slider-section.no-glass{
    background:black;
    border:none;
    box-shadow:none;
    border-radius:0;
    padding:40px 0 20px 0;
}

/* When outer glass removed, ensure header sits in normal flow */
.slider-section.no-glass .header{
    position:relative;
    top:0;
    left:0;
    max-width:100%;
    padding:0 20px;
}

/* HEADER */

.header{
    position:absolute;
    top:45px;
    left:60px;
    z-index:100;

    max-width:calc(100% - 120px);
}

.header.header-centered{
    position:relative;
    left:0;
    top:0;
    max-width:100%;
    
    text-align:center;
    
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    
    padding:0 20px;
    margin-bottom:20px;
}

.title{

    font-size:58px;
    font-weight:800;
    line-height:1.05;

    background:linear-gradient(
        90deg,
        #ffffff,
        #b983ff,
        #7b61ff,
        #ffffff
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:transparent;

    animation:gradientMove 7s linear infinite;

    white-space:normal;
    word-break:break-word;
}

.title.title-small{
    font-size:35px;
    font-weight:500;
    line-height:1.2;
}

.subtitle{

    margin-top:12px;

    color:#cfcfcf;

    font-size:15px;

    letter-spacing:1px;
}

@keyframes gradientMove{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }
}

/* SLIDER */

.slider-wrapper{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

/* COMPETITION CARD */

.competition-shell{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.competition-grid{
    width:100%;
    display:flex;
    align-items:stretch;
    justify-content:center;
    gap:26px;
}

.nav-btn{
    width:56px;
    height:56px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,0.08);
    color:white;
    font-size:28px;
    cursor:pointer;
    transition:0.3s;
    flex:0 0 auto;

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:6;
    backdrop-filter:blur(8px);
}

.nav-btn.prev{
    left:16px;
}

.nav-btn.next{
    right:16px;
}

.nav-btn:hover{
    background:#7b61ff;
    transform:translateY(-50%) scale(1.08);
}

@media(max-width:768px){
    .nav-btn{
        width:48px;
        height:48px;
        font-size:24px;
    }
    
    .nav-btn.prev{
        left:8px;
    }
    
    .nav-btn.next{
        right:8px;
    }
}

@media(max-width:480px){
    .nav-btn{
        width:40px;
        height:40px;
        font-size:20px;
    }
    
    .nav-btn.prev{
        left:4px;
    }
    
    .nav-btn.next{
        right:4px;
    }
}

.competition-card{
    width:min(440px, 100%);
    border-radius:32px;
    overflow:hidden;
    position:relative;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 25px 70px rgba(0,0,0,0.55);
    padding:16px;
    transition:transform 0.55s ease, box-shadow 0.55s ease;
}

@media(max-width:768px){
    .competition-card{
        width:100%;
        max-width:360px;
        padding:14px;
    }
}

@media(max-width:480px){
    .competition-card{
        width:100%;
        max-width:100%;
        padding:12px;
    }
}

/* stronger glassy swipe overlay for the whole card */
.competition-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 55%);
    opacity:0;
    pointer-events:none;
    transform:translateX(-120%) skewX(-22deg);
    transition:opacity 0.95s cubic-bezier(.2,.9,.2,1), transform 1s cubic-bezier(.2,.9,.2,1);
    mix-blend-mode:overlay;
}

.competition-card:hover{
    transform:translateY(-12px);
    box-shadow:0 45px 120px rgba(0,0,0,0.68);
}

.competition-card:hover::before{
    opacity:0.95;
    transform:translateX(120%) skewX(-22deg);
}

.competition-card.secondary{
    display:none;
}

@media(min-width:1000px){
    .competition-card.secondary{
        display:block;
    }
}

.poster{
    width:100%;
    aspect-ratio: 3 / 4;
    background:#000;
    position:relative;
    border-radius:18px;
    overflow:hidden;
}

.poster img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:12px;
    transition:transform 1.1s cubic-bezier(.2,.9,.2,1), filter 0.8s ease;
    will-change:transform, filter;
}

.poster::after{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.36) 48%, rgba(255,255,255,0) 100%);
    transform:translateX(-120%);
    transition:transform 1.2s cubic-bezier(.2,.9,.2,1), opacity 0.6s ease;
    opacity:0;
    mix-blend-mode:overlay;
    border-radius:12px;
}

.competition-card:hover .poster::after{
    transform:translateX(120%);
    opacity:1;
}

.competition-card:hover .poster img{
    transform:scale(1.06) rotate(-0.6deg);
    filter:brightness(1.06) saturate(1.03);
}

.competition-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;

    flex-wrap:wrap;

    padding:14px 16px;
    background:linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.54));
    backdrop-filter:blur(10px);
    border-radius:12px;
}

/* When the footer is placed inside the poster, show it as an overlay */
.competition-card > .competition-footer{
    position:relative;
    margin-top:12px;
    display:block;
    padding:14px;
    /* remove dark background; use subtle transparent glass */
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.03);
    backdrop-filter:blur(8px);
    border-radius:14px;
    height:104px; /* fixed height to keep all cards equal */
    overflow:hidden;
}

@media(max-width:768px){
    .competition-card > .competition-footer{
        padding:12px;
        height:96px;
    }
}

@media(max-width:480px){
    .competition-card > .competition-footer{
        padding:10px;
        height:88px;
    }
}

.competition-card > .competition-footer .meta{
    display:block;
    padding-right:160px; /* reserve space for the button on the right */
}

.competition-card > .competition-footer .comp-name{
    font-size:18px;
    line-height:1.15;
    margin-bottom:6px;
    display:-webkit-box;
    -webkit-line-clamp:2; /* limit to two lines */
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
}

.competition-card > .competition-footer .comp-date,
.competition-card > .competition-footer .comp-time{
    font-size:13px;
    color:rgba(255,255,255,0.78);
}

.competition-card > .competition-footer .footer-register{
    position:absolute;
    right:16px;
    bottom:16px;
    flex:0 0 auto;
    width:132px;
    text-align:center;
}

/* Responsive adjustments */
@media(max-width:600px){
    .competition-card > .competition-footer{
        height:88px;
        padding:12px;
    }
    .competition-card > .competition-footer .meta{
        padding-right:120px;
    }
    .competition-card > .competition-footer .footer-register{
        width:110px;
        right:12px;
        bottom:12px;
    }
}

.meta{
    min-width:0;
}

.meta .comp-name{
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

.meta .comp-date,
.meta .comp-time{
    margin-top:6px;
    font-size:13px;
    color:rgba(255,255,255,0.78);
    letter-spacing:0.3px;
}

.footer-register{
    flex:0 0 auto;
    margin-top:0;
    padding:14px 18px;
    border-radius:16px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    white-space:nowrap;
    width:auto;
}

/* REGISTER BUTTON */

.register-btn{

    margin-top:35px;

    width:100%;

    padding:0 22px;

    height:52px;

    border:1px solid rgba(255,255,255,0.22);

    border-radius:999px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);

    color:white;

    font: size 14px;px;

    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

    cursor:pointer;

    transition:transform 0.25s ease, background 0.25s ease;

    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;

    animation:ctaGlow 1.6s ease-in-out infinite;
}

.register-btn:hover{

    transform:translateY(-2px) scale(1.05);

    background:rgba(255,255,255,0.12);
}

.register-btn:active{
    transform:translateY(0) scale(0.98);
}

/* Register button variant inside the competition card footer */

.register-btn.footer-register{
    width:auto;
    margin-top:0;
    padding:0 22px;
    height:48px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

/* Expired / closed state for registration */
.carousel-card.expired{opacity:0.85;filter:grayscale(0.15);}
.card-btn.register-closed{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 18px;
    height:40px;
    border-radius:999px;
    background:rgba(255,255,255,0.04);
    color:#d3d3d3;
    border:1px solid rgba(255,255,255,0.04);
}
.card-btn.muted{opacity:0.6;pointer-events:none}

/* NEW CAROUSEL SLIDER - Glassy Cards with Auto-play & Drag */

.carousel-wrapper {
    width: 100%;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
    perspective: 1200px; /* enable 3D perspective for tilt */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    touch-action: pan-y; /* allow vertical page scroll, handle horizontal drags in JS */
}

.carousel-container.dragging {
    transition: none; /* immediate during drag */
    cursor: grabbing;
}

.carousel-container:active {
    cursor: grabbing;
}

@media(max-width:1200px){
    .carousel-container {
        height: 520px;
    }
}

@media(max-width:768px){
    .carousel-container {
        height: 450px;
    }
}

@media(max-width:480px){
    .carousel-container {
        height: 380px;
    }
}

/* Carousel Card */
.carousel-card {
    position: absolute;
    width: 380px;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(68,22,132,0.15), rgba(33,15,71,0.12));
    border: 1px solid rgba(185,131,255,0.25);
    backdrop-filter: blur(20px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.3);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.7s ease;
    opacity: 0.4;
    transform: scale(0.85) translateY(0);
    pointer-events: none;
    z-index: 1;
}

@keyframes floatActiveCard {
    0%, 100% {
        margin-top: 0px;
        box-shadow: 0 30px 100px rgba(185,131,255,0.2);
    }
    50% {
        margin-top: -10px;
        box-shadow: 0 40px 120px rgba(185,131,255,0.35);
    }
}

.carousel-card.active {
    opacity: 1;
    transform: scale(1) translateY(-10px);
    box-shadow: 0 30px 100px rgba(185,131,255,0.2);
    border-color: rgba(185,131,255,0.5);
    pointer-events: auto;
    z-index: 10;
    animation: floatActiveCard 4s ease-in-out 0.6s infinite;
}

/* Enhanced Slide animations for carousel with ultra-smooth easing */
@keyframes slideInFromRight {
    0% { 
        transform: translateX(100%) scale(0.8) rotateY(-25deg); 
        opacity: 0; 
    }
    25% {
        transform: translateX(75%) scale(0.85) rotateY(-18deg);
        opacity: 0.25;
    }
    50% {
        transform: translateX(40%) scale(0.92) rotateY(-10deg);
        opacity: 0.6;
    }
    75% {
        transform: translateX(10%) scale(0.98) rotateY(-2deg);
        opacity: 0.9;
    }
    100% { 
        transform: translateX(0) scale(1) rotateY(0deg); 
        opacity: 1; 
    }
}

@keyframes slideInFromLeft {
    0% { 
        transform: translateX(-100%) scale(0.8) rotateY(25deg); 
        opacity: 0; 
    }
    25% {
        transform: translateX(-75%) scale(0.85) rotateY(18deg);
        opacity: 0.25;
    }
    50% {
        transform: translateX(-40%) scale(0.92) rotateY(10deg);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-10%) scale(0.98) rotateY(2deg);
        opacity: 0.9;
    }
    100% { 
        transform: translateX(0) scale(1) rotateY(0deg); 
        opacity: 1; 
    }
}

@keyframes slideOutToLeft {
    0% { 
        transform: translateX(0) scale(1) rotateY(0deg); 
        opacity: 1; 
    }
    25% {
        transform: translateX(-10%) scale(0.98) rotateY(2deg);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-40%) scale(0.92) rotateY(10deg);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-75%) scale(0.85) rotateY(18deg);
        opacity: 0.25;
    }
    100% { 
        transform: translateX(-100%) scale(0.8) rotateY(25deg); 
        opacity: 0; 
    }
}

@keyframes slideOutToRight {
    0% { 
        transform: translateX(0) scale(1) rotateY(0deg); 
        opacity: 1; 
    }
    25% {
        transform: translateX(10%) scale(0.98) rotateY(-2deg);
        opacity: 0.9;
    }
    50% {
        transform: translateX(40%) scale(0.92) rotateY(-10deg);
        opacity: 0.6;
    }
    75% {
        transform: translateX(75%) scale(0.85) rotateY(-18deg);
        opacity: 0.25;
    }
    100% { 
        transform: translateX(100%) scale(0.8) rotateY(-25deg); 
        opacity: 0; 
    }
}

.carousel-card.slide-in-right { animation: slideInFromRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; z-index: 11; pointer-events: auto; }
.carousel-card.slide-in-left  { animation: slideInFromLeft  1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; z-index: 11; pointer-events: auto; }
.carousel-card.slide-out-left { animation: slideOutToLeft  0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; z-index: 9; pointer-events: none; }
.carousel-card.slide-out-right{ animation: slideOutToRight 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; z-index: 9; pointer-events: none; }

/* 3D tilt and responsive stack */
.carousel-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease, box-shadow 0.6s ease;
}

.carousel-card.tilt { transform: translateZ(0) rotateY(var(--tilt,0deg)) scale(var(--scale,1)); }

@media (min-width: 1000px) {
    .carousel-card.prev { transform: translateX(-220px) translateZ(-80px) rotateY(10deg) scale(0.9); opacity:0.62; }
    .carousel-card.next { transform: translateX(220px) translateZ(-80px) rotateY(-10deg) scale(0.9); opacity:0.62; }
}

@media (max-width: 999px) {
    .carousel-card.prev { transform: translateX(-150px) scale(0.88); opacity:0.68; }
    .carousel-card.next { transform: translateX(150px) scale(0.88); opacity:0.68; }
}

@media (max-width: 480px) {
    .carousel-container { perspective: 600px; }
    .carousel-card { transition-duration: 0.45s; }
}

@media(max-width:1200px){
    .carousel-card {
        width: 320px;
    }

    .carousel-card.next {
        transform: scale(0.85) translateX(150px) translateY(0);
    }

    .carousel-card.prev {
        transform: scale(0.85) translateX(-150px) translateY(0);
    }
}

@media(max-width:768px){
    .carousel-card {
        width: 280px;
        padding: 20px;
        gap: 15px;
    }

    .carousel-card.next {
        transform: scale(0.8) translateX(120px) translateY(0);
    }

    .carousel-card.prev {
        transform: scale(0.8) translateX(-120px) translateY(0);
    }
}

@media(max-width:480px){
    .carousel-card {
        width: 240px;
        padding: 16px;
        gap: 12px;
    }

    .carousel-card.next {
        transform: scale(0.75) translateX(80px) translateY(0);
    }

    .carousel-card.prev {
        transform: scale(0.75) translateX(-80px) translateY(0);
    }
}

/* Card Image */
.card-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
}

.carousel-card.active .card-image {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.carousel-card.active .card-image:hover {
    transform: scale(1.12);
}

/* Card Content */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #b983ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.carousel-card.active .card-title {
    font-size: 24px;
}

@media(max-width:768px){
    .card-title {
        font-size: 18px;
    }

    .carousel-card.active .card-title {
        font-size: 20px;
    }
}

.card-description {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.6);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-card.active .card-description {
    font-size: 14px;
    -webkit-line-clamp: 3;
    color: rgba(255,255,255,0.75);
}

/* Card Meta */
.card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.meta-item {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-label {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    color: rgba(185,131,255,0.9);
    font-weight: 700;
}

/* Countdown Mini Timer */
.card-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0;
}

.countdown-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: rgba(185,131,255,0.08);
    border: 1px solid rgba(185,131,255,0.15);
    border-radius: 8px;
}

.countdown-mini-value {
    font-size: 14px;
    font-weight: 700;
    color: #b983ff;
    line-height: 1;
}

.countdown-mini-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.carousel-card.active .countdown-mini {
    background: rgba(185,131,255,0.15);
    border-color: rgba(185,131,255,0.3);
}

/* Card Buttons */
.card-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.card-btn {
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(185,131,255,0.4);
    transform: translateY(-2px);
}

.card-btn:active {
    transform: translateY(0);
}

.card-btn.register-btn {
    background: linear-gradient(135deg, rgba(185,131,255,0.2), rgba(100,50,200,0.1));
    border-color: rgba(185,131,255,0.3);
    animation: none;
    margin-top: 0;
    min-width: 140px;
    height: 44px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-btn.register-btn:hover {
    background: linear-gradient(135deg, rgba(185,131,255,0.3), rgba(100,50,200,0.2));
    border-color: rgba(185,131,255,0.5);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.carousel-nav:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(185,131,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

@media(max-width:768px){
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media(max-width:480px){
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #b983ff;
    border-color: #b983ff;
    width: 24px;
    border-radius: 4px;
}

.indicator:hover {
    background: rgba(185,131,255,0.6);
    border-color: rgba(185,131,255,0.6);
}

/* ABOUT SECTION (glass card) */
.about-section{
    padding:40px 40px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-card-content{
    width:100%;
    max-width:1500px;
    border-radius:40px;
    padding:30px 40px;
    background:linear-gradient(135deg, rgba(68,22,132,0.94), rgba(33,15,71,0.96));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 35px 90px rgba(0,0,0,0.45);
    color:#fff;
    position:relative;
    overflow:hidden;
    transition:transform 0.6s ease, box-shadow 0.6s ease;
}

.about-card-content::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 55%);
    opacity:0;
    pointer-events:none;
    transform:translateX(-110%) skewX(-25deg);
    transition:opacity 0.95s cubic-bezier(.2,.9,.2,1), transform 1s cubic-bezier(.2,.9,.2,1);
    mix-blend-mode:overlay;
}

.about-card-content:hover{
    transform:translateY(-8px);
    box-shadow:0 45px 110px rgba(0,0,0,0.55);
}

.about-card-content:hover::before{
    opacity:0.98;
    transform:translateX(120%) skewX(-25deg);
}

.about-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    color:#f5f5ff;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.about-title{
    font-size:31px;
    font-weight:500;
    line-height:1.05;
    margin-top:16px;
    margin-bottom:16px;
    background:linear-gradient(90deg, #ffffff, #b983ff, #7b61ff, #ffffff);
    background-size:300% auto;
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:transparent;
}

.about-subtitle{
    max-width:720px;
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,0.8);
    margin-top:0;
}

.about-body-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
    align-items:start;
    margin-top:32px;
}

.about-copy p{
    color:rgba(255,255,255,0.94);
    font-size:16px;
    line-height:1.8;
    margin-top:0;
    margin-bottom:20px;
}

.about-visual{
    display:flex;
    justify-content:flex-end;
}

.about-image-ring{
    width:320px;
    aspect-ratio:1 / 1;
    position:relative;
    border-radius:50%;
    overflow:hidden;
    background:linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    border:1px solid rgba(255,255,255,0.14);
    box-shadow:0 35px 80px rgba(0,0,0,0.38);
}

.about-image-ring::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 40%);
    pointer-events:none;
}

.about-image-ring img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.about-card-content:hover .about-image-ring img{
    transform:scale(1.03) rotate(-1.6deg);
    transition:transform 1.1s cubic-bezier(.2,.9,.2,1);
    filter:brightness(1.03) saturate(1.03);
}

@media(max-width:768px){
    .about-body-grid{
        grid-template-columns:1fr;
    }

    .about-visual{
        justify-content:center;
        margin-top:24px;
    }

    .about-image-ring{
        width:260px;
        margin:0 auto;
    }
}

/* MOBILE REGISTER CTA (when info panel is hidden) */

.mobile-register{
    display:flex;
    margin:22px auto 0 auto;
    max-width:420px;
}

@media(min-width:993px){
    .mobile-register{
        display:none;
    }
}

/* RESPONSIVE */

@media(max-width:1200px){

    .title{
        font-size:44px;
    }
    
    .title.title-small{
        font-size:34px;
    }
}

@media(max-width:992px){

    .slider-section{
        padding-bottom:50px;
    }

    .nav-btn.prev{ left:12px; }
    .nav-btn.next{ right:12px; }
}

@media(max-width:768px){

    .page{
        padding:20px;
        margin-top:0;
    }

    .slider-section{
        padding:
        120px 25px 40px 25px;
    }

    .header{
        left:25px;
        top:35px;
    }

    .title{
        font-size:34px;
    }
    
    .title.title-small{
        font-size:28px;
    }

    .nav-btn{
        width:48px;
        height:48px;
        font-size:24px;
    }

    .nav-btn.prev{ left:10px; }
    .nav-btn.next{ right:10px; }
}

/* STATS SECTION */
.stats-section{
    padding:30px 40px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
}

.stats-card-content{
    width:100%;
    max-width:900px;
    border-radius:32px;
    padding:40px 50px;
    background:rgba(0, 0, 0, 0.4);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 50px rgba(0,0,0,0.45);
    color:#fff;
    position:relative;
    overflow:hidden;
    text-align:center;
    transition:transform 0.6s ease, box-shadow 0.6s ease;
}

.stats-card-content::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0) 55%);
    opacity:0;
    pointer-events:none;
    transform:translateX(-110%) skewX(-25deg);
    transition:opacity 0.95s cubic-bezier(.2,.9,.2,1), transform 1s cubic-bezier(.2,.9,.2,1);
    mix-blend-mode:overlay;
}

.stats-card-content:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 70px rgba(0,0,0,0.55);
}

.stats-card-content:hover::before{
    opacity:1;
    transform:translateX(120%) skewX(-25deg);
}

.stats-header {
    margin-bottom: 30px;
}

.stats-title {
    font-size:26px;
    font-weight:600;
    line-height:1.1;
    margin-bottom:12px;
    background:linear-gradient(90deg, #ffffff, #b983ff, #7b61ff, #ffffff);
    background-size:300% auto;
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:transparent;
    animation:gradientMove 7s linear infinite;
    text-transform:uppercase;
    letter-spacing:1px;
}

.stats-subtitle {
    font-size:14px;
    color:rgba(255,255,255,0.8);
    max-width:600px;
    margin:0 auto;
    line-height:1.5;
}

.stats-grid {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    position:relative;
}

.stat-item {
    flex:1;
    min-width:180px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:20px;
    padding:24px 16px;
    backdrop-filter:blur(10px);
    transition:transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    position:relative;
    z-index:2;
}

/* Diagram connecting arrows for desktop */
@media(min-width:769px) {
    .stat-item:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: #b983ff;
        opacity: 0.7;
        font-weight: bold;
        z-index: 1;
    }
}

.stat-item:hover {
    transform:translateY(-6px);
    background:rgba(255,255,255,0.06);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.stat-number {
    font-size:48px;
    font-weight:700;
    color:#ffffff;
    text-shadow:0 0 15px rgba(185,131,255,0.4);
    font-family:"Aptos Display", "Aptos", "Segoe UI", sans-serif;
    line-height:1;
    margin-bottom:8px;
}

.stat-number::after {
    content:'+';
    font-size:28px;
    color:#b983ff;
    vertical-align:super;
    margin-left:4px;
}

.stat-label {
    font-size:14px;
    font-weight:500;
    color:#cfcfcf;
    text-transform:uppercase;
    letter-spacing:1px;
}

@media(max-width:768px){
    .stats-section{
        padding:20px;
    }
    .stats-card-content{
        padding:30px 20px;
        border-radius:24px;
    }
    .stats-title {
        font-size:22px;
    }
    .stats-grid {
        gap:24px;
        flex-direction:column;
    }
    .stat-item {
        min-width:100%;
        padding:24px 10px;
    }
    .stat-item:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        color: #b983ff;
        opacity: 0.7;
        font-weight: bold;
    }
    .stat-number {
        font-size:42px;
    }
    .stat-number::after {
        font-size:24px;
    }
    .stat-label {
        font-size:13px;
    }
}

/* MODERN FOOTER */
.modern-footer {
    width: 100%;
    background: linear-gradient(180deg, #0a0a0f 0%, #000000 100%);
    padding: 80px 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Section 1: Contact Us */
.contact-us .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-us .contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.contact-item .icon {
    font-size: 20px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(185, 131, 255, 0.4));
}

.contact-item .contact-text p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Section 2: Follow Us */
.follow-us .social-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(185, 131, 255, 0.2);
    color: #b983ff;
}

/* Section 3: Subscribe */
.subscribe .subscribe-desc {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.subscribe-form {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 6px;
    transition: box-shadow 0.3s ease, border 0.3s ease;
}

.subscribe-form:focus-within {
    border-color: rgba(185, 131, 255, 0.5);
    box-shadow: 0 0 20px rgba(185, 131, 255, 0.15);
}

.subscribe-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.subscribe-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.subscribe-btn:active {
    transform: scale(0.98);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 0.5px;
    margin: 0;
}

@media(max-width: 768px) {
    .modern-footer {
        padding: 60px 20px 20px;
    }
    
    .footer-container {
        gap: 40px;
        padding-bottom: 40px;
    }
}

/* GALLERY SECTION */
.gallery-section{
    padding:30px 40px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
}

.gallery-card-content{
    width:100%;
    max-width:1200px;
    border-radius:32px;
    padding:40px 50px;
    background:rgba(0, 0, 0, 0.4);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 50px rgba(0,0,0,0.45);
    position:relative;
    overflow:hidden;
    transition:transform 0.6s ease, box-shadow 0.6s ease;
}

.gallery-card-content::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0) 55%);
    opacity:0;
    pointer-events:none;
    transform:translateX(-110%) skewX(-25deg);
    transition:opacity 0.95s cubic-bezier(.2,.9,.2,1), transform 1s cubic-bezier(.2,.9,.2,1);
    mix-blend-mode:overlay;
}

.gallery-card-content:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 70px rgba(0,0,0,0.55);
}

.gallery-card-content:hover::before{
    opacity:1;
    transform:translateX(120%) skewX(-25deg);
}

.gallery-grid {
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    position:relative;
    z-index: 2;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    aspect-ratio: 4/3;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    z-index: 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.8s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-slide {
    border-radius: 24px;
    overflow: hidden;
}

@media(max-width:768px){
    .gallery-section{
        padding:20px;
    }
    .gallery-card-content{
        padding:30px 20px;
        border-radius:24px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

/* INTERACTIVE TIMER */
.registration-timer {
    margin: 24px 0;
    animation: timerFadeIn 1.2s ease-out forwards;
    position: relative;
    z-index: 2;
}

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

.timer-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    display: block;
    font-family: 'Poppins', 'Orbitron', sans-serif;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(135deg, rgba(185, 131, 255, 0.12) 0%, rgba(185, 131, 255, 0.06) 100%);
    border: 1px solid rgba(185, 131, 255, 0.35);
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(185, 131, 255, 0.08);
    transition: all 0.3s ease;
}

.timer-display:hover {
    border-color: rgba(185, 131, 255, 0.5);
    background: linear-gradient(135deg, rgba(185, 131, 255, 0.15) 0%, rgba(185, 131, 255, 0.08) 100%);
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.timer-value {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Orbitron', 'Poppins', sans-serif;
    line-height: 1;
    letter-spacing: 2px;
}

.timer-value.pulse {
    animation: timerPulse 0.6s ease-in-out;
}

@keyframes timerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.timer-label-small {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(185, 131, 255, 0.75);
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

.timer-separator {
    font-size: 24px;
    font-weight: 300;
    color: rgba(185, 131, 255, 0.6);
    margin: 0 4px;
    animation: timerBlink 1s ease-in-out infinite;
}

@keyframes timerBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* TIMER LIGHTBOX */
.timer-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    background: 
        radial-gradient(circle at 20% 50%, rgba(185, 131, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}

.timer-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.timer-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.timer-lightbox-content {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.98) 0%, rgba(40, 15, 60, 0.98) 50%, rgba(20, 10, 40, 0.98) 100%);
    border: 2px solid rgba(185, 131, 255, 0.6);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 
        0 0 40px rgba(185, 131, 255, 0.2),
        inset 0 0 30px rgba(185, 131, 255, 0.1);
    animation: lightboxSlideIn 0.5s ease-out;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.timer-lightbox-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 50%
    );
    animation: shineSweep 3s infinite;
    pointer-events: none;
}

@keyframes shineSweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes lightboxSlideIn {
    from {
        transform: scale(0.9) translateY(-30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.timer-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, rgba(185, 131, 255, 0.2), rgba(185, 131, 255, 0.1));
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    border: 1px solid rgba(185, 131, 255, 0.3);
}

.timer-lightbox-close:hover {
    background: linear-gradient(135deg, rgba(185, 131, 255, 0.35), rgba(185, 131, 255, 0.25));
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(185, 131, 255, 0.6);
}

.timer-lightbox-close svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 3;
}

.timer-lightbox-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.timer-lightbox-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #b983ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timer-lightbox-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

.timer-lightbox-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.timer-register-btn {
    flex: 1;
    min-width: 140px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #b983ff 0%, #8855f7 100%);
    color: #ffffff;
    border: 1px solid rgba(185, 131, 255, 0.6);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.timer-register-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #8855f7 0%, #6f3fe3 100%);
    border-color: rgba(185, 131, 255, 0.8);
}

.timer-register-btn:active {
    transform: translateY(-1px);
}

.timer-dismiss-btn {
    flex: 1;
    min-width: 140px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.timer-dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.timer-dismiss-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .registration-timer {
        margin: 16px 0;
    }
    
    .timer-label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .timer-display {
        padding: 16px;
        gap: 6px;
    }
    
    .timer-value {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .timer-label-small {
        font-size: 9px;
        margin-top: 2px;
    }
    
    .timer-separator {
        font-size: 18px;
    }
    
    .timer-lightbox-content {
        padding: 30px 24px;
        max-width: 95%;
        border-radius: 20px;
    }
    
    .timer-lightbox-close {
        width: 36px;
        height: 36px;
        top: 16px;
        right: 16px;
    }
    
    .timer-lightbox-header {
        margin-bottom: 24px;
    }
    
    .timer-lightbox-title {
        font-size: 26px;
    }
    
    .timer-lightbox-subtitle {
        font-size: 14px;
    }
    
    .timer-lightbox-cta {
        margin-top: 24px;
        flex-direction: column;
    }
    
    .timer-register-btn,
    .timer-dismiss-btn {
        min-width: unset;
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .registration-timer {
        margin: 12px 0;
    }
    
    .timer-label {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .timer-display {
        padding: 12px 8px;
        gap: 4px;
    }
    
    .timer-unit {
        min-width: 42px;
    }
    
    .timer-value {
        font-size: 20px;
        letter-spacing: 0px;
    }
    
    .timer-label-small {
        font-size: 8px;
        margin-top: 1px;
    }
    
    .timer-separator {
        font-size: 14px;
        margin: 0 2px;
    }
    
    .timer-lightbox-content {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .timer-lightbox-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
    
    .timer-lightbox-title {
        font-size: 22px;
    }
    
    .timer-lightbox-subtitle {
        font-size: 12px;
    }
    
    .timer-register-btn,
    .timer-dismiss-btn {
        padding: 12px 16px;
        font-size: 12px;
    }
}