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

body,html{
    height:100%;
    font-family:Arial,sans-serif;
    overflow:hidden;
    color:rgba(242,255,242,1);
}

.overlay-text{
    position:absolute;
    top:120px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:1200px;
    max-height:75vh;      /* important */
    overflow-y:auto;      /* enable scrolling */
    display:none;
}

.video-background{
    position:fixed;
    top:0;
    left:0;
    min-width:100%;
    min-height:100%;
    object-fit:cover;
    z-index:-1;
    display:none;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(3px);
    display:none;
    z-index:100;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:60px;
    width:auto;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:15px;
    padding:5px 10px;
    border:1px solid rgba(242,255,242,0.3);
    border-radius:5px;
}

nav ul li:hover{
    background-color:rgba(91,140,124,0.3);
    border-color:#ffcc00;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:22px;
}

.overlay-text{
    position:absolute;
    top:18%;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:1200px;
    display:none;
    overflow-y:auto;
}

.game-box{
    margin:25px 0;
    padding:25px;
    background:rgba(13,26,26,0.75);
    border-radius:10px;
    border:1px solid rgba(91,140,124,0.3);
    transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.game-box:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.4);
}

.game-box h2{
    color:#ffcc00;
    margin-bottom:10px;
}

.game-box img{
    max-width:100%;
    border-radius:6px;
    margin:15px 0;
}

.center{
    text-align:center;
}

.center-text{
    text-align:center;
    max-width:640px;
    margin-left:auto;
    margin-right:auto;
}

.button{
    display:inline-block;
    padding:10px 20px;
    background:#5b8c7c;
    border-radius:5px;
    text-decoration:none;
    color:white;
}

.button:hover{
    background:#ffcc00;
}

.hero-banner{
    width:100%;
    border-radius:8px;
    margin-bottom:20px;
}

iframe{
    max-width:100%;
    margin-top:20px;
    border-radius:8px;
}

.social-icons{
    position:fixed;
    bottom:20px;
    left:20px;
    text-decoration: none;
    font-size:30px;
}

.social-icons a{
    margin-right:15px;
    text-decoration: none;
    color:white;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:10px;
    margin:10px 0;
    border-radius:5px;
    border:1px solid #ccc;
}

#loading-message{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:24px;
    color:white;
    background-color:rgba(0,0,0,0.9);
    padding:20px;
    border-radius:10px;
    z-index:999;
}

#loading-background{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:black;
    z-index:998;
}