*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#071042;
    color:#fff;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

/* Top Header */
.topbar{
    background:linear-gradient(90deg,#f6b531,#d88d00);
    padding:10px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.topbar a{
    color:#071042;
    text-decoration:none;
    font-weight:600;
}

.social-icons a{
    width:38px;
    height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#071042;
    color:#fff;
    margin-left:10px;
    transition:0.4s;
}

.social-icons a:hover{
    transform:translateY(-5px) rotate(360deg);
    background:#fff;
    color:#071042;
}

/* Sticky Header Animation */
header{
    transition:0.4s ease;
}

.logo-group img{
   
    transition:0.4s ease;
}

/* Scroll Active */
header.active{
    padding:0;
  
}

header.active .logo-group img{
    width:50px;
}
header.active .navbar {
    padding: 8px 6%;}


/* Header */
header{
    background:rgba(6,15,58,0.95);
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(10px);
    border-bottom:2px solid rgba(255,255,255,0.1);
}

.navbar{
    padding:15px 6%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}

.logo-group{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-group img{
    width:100px;
    animation:floatLogo 4s ease-in-out infinite;
}

.logo-group img:nth-child(2){
    animation-delay:1s;
}

.logo-group img:nth-child(3){
    animation-delay:2s;
}

@keyframes floatLogo{
    0%,100%{transform:translateY(0px);}
    50%{transform:translateY(-10px);}
}

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:25px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

nav ul li a:hover{
    color:#f6b531;
}
nav ul li a.hero-btn:hover{color:#FFFFFF;}

.dropdown{
    position:absolute;
    top:35px;
    left:0;
    background:#fff;
    min-width:230px;
    border-radius:10px;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
}

.dropdown a{
    display:block;
    padding:14px 18px;
    color:#071042;
    border-bottom:1px solid #eee;
}

nav ul li:hover .dropdown{
    opacity:1;
    visibility:visible;
    top:45px;
}


/* Mobile Menu */
.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

@media(max-width:991px){

    .navbar{
        position:relative;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#071042;
        max-height:0;
        overflow:hidden;
        transition:0.5s ease;
    }

    nav.active{
        max-height:600px;
        padding:20px 0;
    }

    nav ul{
        flex-direction:column;
        gap:18px;
        text-align:center;
    }

    nav ul li{
        width:100%;
    }

    .dropdown{
        position:static;
        opacity:1;
        visibility:visible;
        display:none;
        margin-top:10px;
        border-radius:0;
    }

    nav ul li:hover .dropdown{
        display:block;
    }
	}





/* Banner */
.hero{
    min-height:100vh;
    /*background:linear-gradient(rgba(5,15,60,0.75),rgba(5,15,60,0.85)),url('https://images.unsplash.com/photo-1517649763962-0c623066013b?q=80&w=1600&auto=format&fit=crop') center/cover;*/
	background:linear-gradient(rgba(5,15,60,0.65),rgba(5,15,60,0.75)), url(../images/banner-bg.jpg) center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/*.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(246,181,49,0.15);
    border-radius:50%;
    top:-250px;
    right:-180px;
    animation:pulse 6s linear infinite;
}*/

.hero::before{
    content:'';
    position:absolute;
    width:300px;
    height:450px;
   /* background:url(images/mescot.png) no-repeat;*/ background-size:cover;
    top:50px;
    right:18px;
    animation:pulse 6s linear infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.2);}
    100%{transform:scale(1);}
}

.hero-content{
    position:relative;
    z-index:2;
    padding:20px;
}

.hero-content h1{
    font-size:38px;
    line-height:1.1;
    font-weight:800;
    text-transform:uppercase;
    color:#f6c63d;
    text-shadow:0 10px 20px rgba(0,0,0,0.4);
}

.hero-content h2{
    font-size:35px;
    margin-top:10px;
    color:#fff;
}
.hero-content h3{ font-size:25px; color:#f6c63d;}

.hero-content p{
    max-width:800px;
    margin:25px auto;
    font-size:20px;
    line-height:1.8;
}

.hero-btn{
    display:inline-block;
    padding:16px 38px;
    background:linear-gradient(90deg,#f6b531,#d88d00);
    color:#071042;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:0.4s;
}

.hero-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(246,181,49,0.4);
}

/* Welcome */
.section{
    padding:90px 6%;
}

.section-title{
    font-size:45px;
    margin-bottom:20px;
    color:#f6c63d;
}

.welcome-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.welcome-text p{
    line-height:2;
    font-size:17px;
    color:#ddd; text-align:justify;
}

.games-animation{
    position:relative;
    text-align:center;
}

.games-animation img{
    width:100%;
    max-width:450px;
    animation:rotateGlow 6s linear infinite;
    filter:drop-shadow(0 0 30px rgba(246,181,49,0.5));
}

@keyframes rotateGlow{
    0%{transform:rotate(0deg) scale(1);}
    50%{transform:rotate(4deg) scale(1.03);}
    100%{transform:rotate(0deg) scale(1);}
}

/* Countdown */
.countdown-section{
   /* background:linear-gradient(135deg,#f6b531,#b97600);*/ background:url(../images/graphis-bg.png) center; background-size:100% 100%;
    color:#071042;
    text-align:center;
}

.countdown{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin-top:40px;
}

.time-box{
    background:#071042;
    color:#fff;
    width:180px;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.4s;
}

.time-box:hover{
    transform:translateY(-10px);
}

.time-box h3{
    font-size:52px;
    color:#f6c63d;
}

.time-box span{
    font-size:18px;
    font-weight:600;
}

/* Venue */
.venue-box{
    background:url(../images/venue.jpg) no-repeat center; background-size:100% 100%; 
    padding:/*40px*/ 150px 0px;
    border-radius:25px;
    text-align:center;
    border:2px solid rgba(255,255,255,0.08);
}

.venue-box i{
    font-size:60px;
    color:#f6c63d;
    margin-bottom:20px;
}

.venue-box h3{
    font-size:36px;
    margin-bottom:15px;
}

/* Why Attend */
.attend-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.attend-card{
    background:#0c195a;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.attend-card::before{
    content:'';
    position:absolute;
    width:100px;
    height:100px;
    background:rgba(246,181,49,0.15);
    border-radius:50%;
    top:-30px;
    right:-30px;
}

.attend-card:hover{
    transform:translateY(-10px);
    border-color:#f6b531;
}

.attend-card i{
    font-size:42px;
    color:#f6c63d;
    margin-bottom:18px;
}

.attend-card h4{
    font-size:22px;
    margin-bottom:15px;
}

.attend-card p{
    line-height:1.8;
    color:#ddd;
}

/* Footer */
footer{
    background:#02081f url(../images/footer-bg.jpg) repeat-x;
    padding:70px 6% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;
}

.footer-logo img{
    width:100px;
    margin-bottom:20px;
}

.footer-links a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:12px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#f6c63d;
    padding-left:8px;
}
.footer-links p{padding-bottom:15px;}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#aaa;
}

@media(max-width:991px){
    .welcome-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:52px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        margin-top:20px;
    }
}

@media(max-width:600px){
    .hero-content h1{
        font-size:38px;
    }

    .hero-content h2{
        font-size:26px;
    }

    .section-title{
        font-size:34px;
    }

    .logo-group img{
        width:60px;
    }

    .time-box{
        width:140px;
    }
}



/* Scroll Top Button */
.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    background:linear-gradient(135deg,#f6b531,#d88d00);
    color:#071042;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    cursor:pointer;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.scroll-top.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.scroll-top:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(246,181,49,0.4);
}





/*GAMES*/

/*.games-section{
    padding:80px 20px;
    background:#faf8ff;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    color:#7e57c2;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:45px;
    color:#222;
    margin:15px 0;
}

.section-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.game-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(126,87,194,.12);
    transition:.4s ease;
}

.game-card:hover{
    transform:translateY(-8px);
}

.card-title{
    background:linear-gradient(135deg,#060f3a,#b388ff);
    color:#fff;
    padding:22px;
    text-align:center;
    font-size:24px;
    font-weight:700;
}

.game-card ul{
    list-style:none;
    padding:25px;
}

.game-card ul li{
    padding:14px 0;
    border-bottom:1px solid #eee;
    color:#444;
    font-size:17px;
    transition:.3s;
}

.game-card ul li:last-child{
    border-bottom:none;
}

.game-card ul li:hover{
    color:#7e57c2;
    padding-left:10px;
}

@media(max-width:768px){

    .section-heading h2{
        font-size:32px;
    }

    .games-grid{
        grid-template-columns:1fr;
    }

}*/

.games-body{background: radial-gradient(35.36% 35.36% at 100% 25%, #0000 66%, #071042 68% 70%, #0000 72%) 32px 32px / calc(2 * 32px) calc(2 * 32px), radial-gradient(35.36% 35.36% at 0 75%, #0000 66%, #071042 68% 70%, #0000 72%) 32px 32px / calc(2 * 32px) calc(2 * 32px), radial-gradient(35.36% 35.36% at 100% 25%, #0000 66%, #071042 68% 70%, #0000 72%) 0 0 / calc(2 * 32px) calc(2 * 32px), radial-gradient(35.36% 35.36% at 0 75%, #0000 66%, #071042 68% 70%, #0000 72%) 0 0 / calc(2 * 32px) calc(2 * 32px), repeating-conic-gradient(#0c195a 0 25%, #0000 0 50%) 0 0 / calc(2 * 32px) calc(2 * 32px), radial-gradient(#0000 66%, #071042 68% 70%, #0000 72%) 0 calc(32px / 2) / 32px 32px #0c195a;}
.games-section{ 
    max-width:1400px;
    margin:auto;
    padding:80px 20px;
}

.main-title{
    text-align:center;
    margin-bottom:60px;
}

.main-title h1{
    color:#ffc928;
    font-size:60px;
    font-weight:800;
}

.main-title p{
    color:#d9d9d9;
    margin-top:15px;
    font-size:18px;
}

.games-wrapper{
    display:flex;
    flex-direction:column;
    gap:70px;
}

.category-title{
    color:#ffc928;
    font-size:42px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
    padding-left:20px;
}

.category-title::before{
    content:'';
    position:absolute;
    left:0;
    top:8px;
    width:6px;
    height:42px;
    background:#ffc928;
    border-radius:10px;
}

.games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.game-card{
    position:relative;
    background:#101d73;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:30px;
    min-height:250px;
    overflow:hidden;
    transition:.4s;
}

.game-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    top:-40px;
    right:-40px;
}

.game-card:hover{
    transform:translateY(-10px);
    border-color:#ffc928;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

.game-card h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.2;
}

.yellow-line{
    width:45px;
    height:4px;
    background:#ffc928;
    border-radius:20px;
    margin-bottom:18px;
}

.game-card p{
    color:#d9d9d9;
    line-height:1.8;
    font-size:15px;
}

/* Responsive */

@media(max-width:768px){

    .main-title h1{
        font-size:40px;
    }

    .category-title{
        font-size:30px;
    }

    .games-grid{
        grid-template-columns:1fr;
    }

    .game-card{
        min-height:auto;
    }

}

.mascot2{display:inline-block; float:right; text-align:right;}
.mascot2 img{width:100%; max-width:200px; float:right;}




@media screen and (min-width: 1200px) and (max-width: 1366px) {
  .hero-content h1{font-size:32px;}
  .hero-content h2{font-size:28px;}
  .hero-content p{max-width:600px; font-size:20px;}
  .popup-box {
    width: 90%;
    max-width: 420px !important;}
}
@media only screen and (min-width: 1366px) {
  /* Your CSS rules go here */
}