
body {
    background-color: black;
    background-image: linear-gradient(to right, transparent 0%, #244da7 20%,#244da7 80%,transparent 100% );
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: left;
    margin: 0;
    padding: 0;
    font-size:18px;
}

h1 {
    font-size:1.8em;
    width:100%;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
}

.wrapper {
    margin:0px 2px;
    padding:0px 20px;
    background: #292929;
    min-height:100vh;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    width:100%;
}

.container {
    width: 74%;
    margin-bottom:2vh;
    background-image: linear-gradient(to bottom, transparent 3%, #03fdf9 20%,#03fdf9 80%,transparent 97% );
    display: flex;
    justify-content: center;
    margin: 0px auto;
}

header {

    align-items: center;
    padding: 20px;
}

footer {
    display:block;
    width:100%;
    min-height:10vh;
    margin:5vh auto;
}

footer a {
    display:inline-block;
    width:100%;
}

.footerlogo {
    display:block;
    margin:0px auto;
    max-width:40%;
}

.logo {
    max-width: 150px;
    height: auto;
}

.hero {
    width: 100%;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width:20%;
    min-width:100px;
    height: auto;
    border-radius:10px;
    border: 2px solid #03fdf9;
    float:left;
    margin-left:0px;
    margin-right:20px;
    margin-bottom:20px;
}

.gamelink {
    font-family: 'Press Start 2P', cursive;
    text-decoration: none;
    display: flex;
    justify-content:center;
    align-items: center; /* Vertically aligns child elements */
    margin:3vh auto;
}

.gamelink-image {
    display:block;
    width: 100%;
    max-width:20%;
    min-width:100px;
    height: auto;
    border-radius:10px;
    border: 2px solid #03fdf9;
    float:left;
    margin-right:20px;

}
.linktag{
    float:left;

}

.email-icon {
    display:inline-block;
    width:30px;
    height:30px;
    margin-right:10px;
}

.email-link {
    text-decoration: none;
}

.features {
    display:inline-block;
    text-align:left;
    width:100%;
    font-family: 'Press Start 2P', cursive;
}

.features ul {
    font-size:16px;
    list-style: none;
}

.features li {
    margin-bottom:10px;
}

.content {
    width:100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top:20px;
}

.content-block {
    border: 2px solid #03fdf9;
    margin: 1%;
    border-radius: 5px;
    max-width: 45%;
}

.content-block img {
    display:block;
    width: 100%;
}

.links {
    display:inline-block;
    width:100%;
    margin:20px auto;
}

.button {
    display: flex;
    padding: 2% 5%;
    background: white;
    color: #000;
    text-decoration: none;
    margin: 10px;
    border-radius: 5px;
    width:30%;
    height:50px;
    border:2px solid #03fdf9;
}

.playstore {
    margin:10px auto;
}

.playstore img {
    width:100%;
    object-fit: contain;
}

.terms,.privacy {
    float: right;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    text-decoration: none;
    text-align: center;
}

.privacy {
    float:left;
}

.tos, .privpol {
    width:100%;
    text-align: center;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 30px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}