body {
    margin: 0;
    padding: 0;
}

/* Font style */
p {
    color: #444444;
    font-size: 20px;
}

* {
    box-sizing: border-box;
}


/* landing style */
.landing {
    width: 100%;
    height: 100vh;
    background-image: url('../image/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.landing-container {
    height: 100%;
    background-color: rgba(0, 7, 32, 0.594);
    padding: 0 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-container h2 {
    color: aliceblue;
    margin: 0;
    font-size: 45px;
}

.landing-container p {
    color: #fffdfdde;
    font-size: 30px;
    margin: 36px 0;
    text-align: center;
}


.landing-container button {
    width: 200px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

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

.landing-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.landing-container button:hover::before {
    left: 100%;
}

.landing-container button:active {
    transform: translateY(0);
}



.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    /* height: 200px; */
    padding: 25px 0;
}

.logo-image {
    width: 20%;
}

.logo-image a {
    text-decoration: none;
    font-size: 30px;
    font-weight: 800;
    color: white;
}

.pages-tabs {
    display: flex;
    gap: 20px;
    color: white;
    align-items: center;
}

.tab {
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.tab:hover {
    color: aqua;
}

/* overview style */


/* Game-gatewary style */
.game-gateway {
    background-color: #f1f4fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
}

.game-viewport {
    width: 60%;
}

.game-viewport img {
    width: 100%;
    object-fit: cover;
}

.start {
    width: 200px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

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

.start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.start:hover::before {
    left: 100%;
}

.start:active {
    transform: translateY(0);
}



@media only screen and (max-width:850px) {
    .header {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* Terms page */
.content {
    /* background-color: #ffffff; */
    padding: 40px 10%;
    margin: 0 auto;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 70vh;
    /* padding: 40px 20px; */
}
.content-container{
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.content-block {}

.content-block h2 {
    color: #7e1e00;
}

.content-block p,
ul {
    color: rgb(31, 31, 31);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

.age-gate-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  
  .age-gate-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  
  .age-gate-modal {
    width:25%;
    text-align: center;
    background: #222;
    padding: 2rem;
    border-radius: 12px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }
  
  .age-gate-overlay.show .age-gate-modal {
    transform: scale(1);
  }
  
  .age-gate-modal button {
    margin: 1rem;
    padding: 0.7rem 3.0rem;
    font-size: 1rem;
    border-radius: 16px;
    background-color: #FF5722;
    border: none;
    color: white;
  }