body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Press Start 2P', cursive;
    color: #ffffff;
    background-color: #a8c8fa;
}

.company-name {
    position: absolute;
    bottom: 20px; /* Adjust the distance from the bottom */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    font-size: 1em; /* Adjusted size */
    color: rgba(255, 255, 255, 0.7); /* Dimmer color */
    font-weight: normal;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5); /* Dimmer shadow */
    z-index: 2; /* Ensure it is above the overlay */
}

/* General Contact Button Styles */
.contact-button {
    position: fixed;
    bottom: 20px;  
    left: 20px;  
    background-color: #FFBA08;  
    color: #000;  
    font-size: 0.68em;
    line-height: 12px;
    padding: 10px;  
    border-radius: 50%;  
    text-decoration: none; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); 
    display: flex;
    align-items: center;  
    justify-content: center;  
    width: 60px;   
    height: 60px;  
    transition: background-color 0.3s, transform 0.3s;
    z-index: 3;  
    text-align: center;  
}

.contact-button:hover {
    background-color: #e0a600; /* Darker background on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

.contact-button:active {
    background-color: #d18e00; /* Even darker background when clicked */
    transform: scale(1); /* Reset size on click */
}

swiper-container {
    width: 100%;
    height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    justify-content: center;
    align-items: center;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background: url('') no-repeat center center;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Darker overlay for more contrast */
    z-index: 1;
}

.content {
    z-index: 2;
    padding: 10px;
    max-width: 90vw;
    width: 100%;
}

.content h1 {
    font-size: 2.5em;
    margin: 0 0 20px;
    color: #ffde59;
    text-shadow: 2px 2px 0px #6b6b6b;
    white-space: wrap;
    line-height: 1.5em;
}

.content h1 span {
    position: relative;
    display: inline-block;
    color: #ffde59;
    font-weight: bolder;
}

.content p {
    font-size: 1.2em;
    margin: 0 0 30px;
    color: #ffde59;
    text-shadow: 1px 1px 0px #6b6b6b;
}


/* Custom Form Styles */
.octupus-form {
    display: inline-block;
    max-width: 80vw
}

/* Game Content Section */
.game-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 75%;
    margin: 0 auto;
}
.content-item {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000; 
}

.content-item img {
    max-width: 100%;
    max-height: 85%;
    object-fit: contain; 
    border-radius: 10px;
}

.text-overlay {
    width: 100%;
    max-height: 15%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffde59;
    font-size: 1.2em;
    text-align: center;
    box-sizing: border-box;
    margin-top: 10px; 
}


@media (max-width: 768px) {
    .content h1 {
        font-size: 2.0em;
    }

    .content h1 span {
        white-space: nowrap;
    }

    .content p {
        font-size: 1em;
    }

    .email-signup input[type="email"],
    .email-signup button {
        width: 90%;
        padding: 12px;
        font-size: 0.9em;
    }

    .game-content-section {
        max-width: 100%;
    }

    .text-overlay {
        font-size: 1em;
        padding: 8px;
    }

    .contact-button {
        font-size: 0.8em; /* Adjust font size */
        width: 50px; /* Adjust size for smaller screens */
        height: 50px; /* Adjust size for smaller screens */
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.0em;
    }


    .content p {
        font-size: 0.9em;
    }

    .email-signup input[type="email"],
    .email-signup button {
        width: 100%;
        padding: 10px;
        font-size: 0.8em;
    }


    .contact-button {
        font-size: 0.5em; /* Further adjust font size */
        width: 45px; /* Further adjust size for mobile screens */
        height: 45px; /* Further adjust size for mobile screens */
    }
}