body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #0c0c0c;
    color: #e0e0e0;
    overflow-x: hidden;
    padding: 0;
    background-image: radial-gradient(circle at center, #121212, #0a0a0a);
}

header {
    background: linear-gradient(135deg, #3b0a45, #9b00ff, #2900a6);
    height: 200px;
    width: auto;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #444;
    box-shadow: 0 0 40px rgba(155, 0, 255, 0.8);
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header img {
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

header h1 {
    color: #fff;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px #9b00ff, 0 0 30px #9b00ff, 0 0 50px #6a00c9, 0 0 70px #2900a6;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

@media (max-width: 600px) {
    header {
        padding: 10px;
    }

    header img {
        height: auto;
        max-height: 60px;
        max-width: 80%;
    }
}

/* keyframes */
@keyframes neonGlow {
    0% {
        text-shadow: 0 0 15px #9b00ff, 0 0 25px #9b00ff, 0 0 35px #6a00c9, 0 0 50px #2900a6;
        color: #fff;
    }
    100% {
        text-shadow: 0 0 30px #9b00ff, 0 0 50px #9b00ff, 0 0 75px #6a00c9, 0 0 100px #2900a6;
        color: #f0f0f0;
    }
}

@keyframes alienAnimation {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: rotate(8deg) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: rotate(-8deg) scale(1);
        opacity: 0.7;
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* navigation part */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    padding: 10px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    transition: 0.3s ease;
}

nav a:hover, nav a.active {
    background: #dfafff;
    text-shadow: 0 0 15px #9b00ff;
}

@media (max-width: 600px) {
    nav {
        white-space: nowrap;
        gap: 10px;
        padding: 5px;
        overflow-x: auto; /* Allows horizontal scrolling if needed */
    }

    nav a {
        font-size: 3.5vw; /* Dynamically adjust the font size based on the viewport width */
        padding: 6px 8px; /* Reduce padding to make buttons smaller */
        border-radius: 6px;
        flex-shrink: 1; /* Allows the buttons to shrink if they don't fit */
    }
}

/* content wrapping */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    gap: 50px;
    align-items: center;
    max-width: 100%;
    margin: 0;
    flex-wrap: wrap;
}

/* embrace section */
.embrace-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    padding: 50px;
    color: #dfafff;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
}

.embrace-section img {
    margin-left: 50px;
    max-width: 60%;
    margin-top: 100px;
    height: auto;
    border: 6px solid rgba(155, 0, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    animation: alienAnimation 10s ease-in-out infinite alternate;
}

.embrace-section h2 {
    font-size: 4rem;
    color: #9b00ff;
    text-shadow: 0 0 15px #9b00ff, 0 0 25px #9b00ff;
    letter-spacing: 3px;
}

.embrace-section p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-top: 15px;
}

@media (max-width: 600px) {
    .embrace-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: auto;
        padding: 30px;
        color: #dfafff;
        text-align: center;
        animation: fadeIn 1s ease-in-out;
    }

    .embrace-section img {
        margin-left: 0px;
        max-width: 100%;
        height: auto;
        border: 3px solid rgba(155, 0, 255, 0.7);
        border-radius: 20px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
        animation: alienAnimation 10s ease-in-out infinite alternate;
    }

    .embrace-section h2 {
        font-size: 2rem;
        color: #9b00ff;
        text-shadow: 0 0 15px #9b00ff, 0 0 25px #9b00ff;
        letter-spacing: 3px;
    }

    .embrace-section p {
        font-size: 1.4rem;
        line-height: 1.6;
        margin-top: 15px;
    }
}

/* game features section */
.game-features {
    width: 400px;
    height: 500px;
    padding: 30px;
    background: linear-gradient(135deg, #1c1c1c, #121212);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.6);
    margin-right: 50px;
    position: relative;
    overflow: hidden;
    background-color: #3b0a45;
    box-shadow: 0 0 25px rgba(155, 0, 255, 0.8);
}

/* footer section */
footer {
    background: #1a1a1a;
    padding: 30px 15px;
    text-align: center;
    color: #707070;
    border-top: 3px solid #444;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    box-shadow: 0 0 15px #3b0a45;
    position: relative;
    width: auto;
    bottom: 0;
    font-size: 1.1rem;
}

footer .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
}

footer .company-logo img {
    width: auto;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

footer .footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

footer .social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10%;
    overflow: visible;
    transition: 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

footer .social-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .social-button:hover {
    background-color: #dfafff;
    transform: scale(1.1);
    box-shadow: 0 0 10px #dfafff, 0 0 20px #9b00ff;
}

footer .footer-legal {
    color: #888;
    margin-top: 15px;
    text-align: center;
    font-size: inherit;
}

footer .footer-legal p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

footer .footer-legal a {
    color: #cd8afa;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 8px;
    border: 1px solid transparent;
    border-radius: 4px;
}

footer .footer-legal a:hover {
    text-shadow: 0 0 15px #cd8afa;
    border-color: #cd8afa;
}

@media (max-width: 600px) {
    footer {
        font-size: 0.8rem;
    }

    footer .footer-container {
        gap: 15px;
    }

    footer .footer-legal a {
        padding: 3px 5px;
        font-size: 0.55rem;
    }
}

.contact-section {
    text-align: center;
    margin: 50px auto;
    padding: 40px 40px;
    max-width: 800px;
}

.contact-section h2 {
    font-size: 3rem;
    color: #9b00ff;
    text-shadow: 0 0 15px #9b00ff, 0 0 25px #6a00c9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(155, 0, 255, 0.2);
}

.contact-section .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-section .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #121212;
    border: 2px solid #9b00ff;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(155, 0, 255, 0.2);
}

.contact-section .social-links a:hover {
    background: #9b00ff;
    color: #fff;
    box-shadow: 0 0 15px #9b00ff, 0 0 30px #6a00c9;
}

.contact-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: linear-gradient(135deg, #1c1c1c, #121212);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(155, 0, 255, 0.8);
    text-align: center;
    color: #e0e0e0;
}

.contact-container h2 {
    font-size: 3rem;
    color: #9b00ff;
    text-shadow: 0 0 15px #9b00ff, 0 0 25px #6a00c9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(155, 0, 255, 0.2);
}

.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

.contact-container form label {
    font-size: 1.2rem;
    text-align: left;
    color: #dfafff;
}

.contact-container form input[type="text"],
.contact-container form input[type="email"],
.contact-container form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: #121212;
    color: #e0e0e0;
    border: 2px solid #9b00ff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(155, 0, 255, 0.4);
    transition: all 0.3s ease;
}

.contact-container form input[type="text"]:focus,
.contact-container form input[type="email"]:focus,
.contact-container form textarea:focus {
    outline: none;
    border-color: #dfafff;
    box-shadow: 0 0 15px #dfafff, 0 0 30px rgba(155, 0, 255, 0.6);
}

.contact-container form textarea {
    resize: none;
    height: 150px;
}

.contact-container form button {
    padding: 15px;
    font-size: 1.2rem;
    color: #fff;
    background: #9b00ff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(155, 0, 255, 0.6);
    transition: all 0.3s ease;
}

.contact-container form button:hover {
    background: #dfafff;
    box-shadow: 0 0 30px #dfafff, 0 0 60px rgba(155, 0, 255, 0.8);
}

.contact-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    padding: 50px;
    color: #dfafff;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
}

button {
    background: linear-gradient(135deg, #9b00ff, #6a00c9);
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(155, 0, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #dfafff;
    box-shadow: 0 0 30px #dfafff, 0 0 60px rgba(155, 0, 255, 0.8);
    transform: scale(1.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 100px;
    background: linear-gradient(135deg, #1c1c1c, #121212);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(155, 0, 255, 0.8);
    font-family: 'Orbitron', sans-serif;
    color: #e0e0e0;
}

.contact-form label {
    font-size: 1.2rem;
    color: #dfafff;
    text-shadow: 0 0 10px rgba(155, 0, 255, 0.2);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: #121212;
    color: #e0e0e0;
    border: 2px solid #9b00ff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(155, 0, 255, 0.4);
    transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dfafff;
    box-shadow: 0 0 15px #dfafff, 0 0 30px rgba(155, 0, 255, 0.6);
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.contact-form button {
    padding: 15px;
    font-size: 1.2rem;
    color: #fff;
    background: #9b00ff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(155, 0, 255, 0.6);
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #dfafff;
    box-shadow: 0 0 30px #dfafff, 0 0 60px rgba(155, 0, 255, 0.8);
    transform: scale(1.05);
}

.contact-section p {
    color: #dfafff !important;
}

/* download section */
.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 75px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.download-section h2 {
    font-size: 4rem;
    color: #9b00ff;
    text-shadow: 0 0 15px #9b00ff, 0 0 25px #9b00ff;
    margin-bottom: 20px;
}

.download-section .left {
    display: block;
}

.download-section .right {
    display: block;
}

.download-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 10px;
    color: #dfafff;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.download-section img {
    width: 270px;
    height: 80px;
    object-fit: contain;
}

.download-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(155, 0, 255, 0.8);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .download-section {
        padding: 40px;
    }

    .download-section h2 {
        font-size: 2.5rem; /* Smaller size for mobile devices */
    }

    .download-section p {
        font-size: 1rem; /* Adjusted font size for better readability */
    }

    .download-buttons {
        flex-direction: column; /* Stack the buttons vertically on smaller screens */
        gap: 15px;
    }

    .download-section img {
        width: 220px; /* Adjust the image size for smaller screens */
        height: auto;
    }
}

@media (max-width: 480px) {
    .download-section {
        padding: 20px; /* Further reduce padding for very small screens */
    }

    .download-section h2 {
        font-size: 2rem; /* Even smaller size for very small screens */
    }

    .download-section p {
        font-size: 0.9rem; /* Slightly smaller text for very small screens */
    }

    .download-buttons {
        gap: 10px; /* Reduce space between buttons */
    }

    .download-section img {
        width: 180px; /* Further reduce image size */
        height: auto;
    }
}

/* About Us Section */
.about_us-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #121212;
    color: #e0e0e0;
    text-align: center;
    border-radius: 15px;
    animation: fadeIn 1s ease-in-out;
}

.about_us-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    background: #121212;
    color: #e0e0e0;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.about_us-section h2 {
    font-size: 3rem;
    color: #9b00ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #9b00ff, 0 0 20px #6a00c9;
}

.about_us-section p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #dfafff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about_us-section img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out;
}

.about_us-section img:hover {
    transform: scale(1.05);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about_us-wrapper {
        padding: 40px 15px;
    }

    .about_us-section h2 {
        font-size: 2.5rem;
    }

    .about_us-section p {
        font-size: 1.2rem;
        max-width: 90%;
    }

    .about_us-section img {
        max-width: 80%;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .about_us-wrapper {
        padding: 30px 10px;
    }

    .about_us-section h2 {
        font-size: 1.5rem;
    }

    .about_us-section p {
        font-size: 1rem;
        max-width: 95%;
    }

    .about_us-section img {
        max-width: 60%;
        margin-top: 10px;
    }

    .about_us-section img {
        max-width: 70%;
        height: auto;
        max-height: 100px;
        margin-top: 20px;
        transition: transform 0.3s ease-in-out;
    }
}


/* email section */
.email_section {
    color: white;
}

/* change log */
.change_log img {
    background: linear-gradient(135deg, #9b00ff, #6a00c9);
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(155, 0, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* showcase section */
.showcase-panel {
    display: flex;
    border: 2px solid #9b00ff;
    padding: 16px;
    border-radius: 8px;
    max-width: 1200px;
    margin: 20px auto;
    align-items: flex-start;
    gap: 16px;
    color: #dfafff;
    animation: fadeIn 1s ease-in-out;
    flex-wrap: nowrap;
}

.showcase-panel img {
    max-width: 600px;
    width: 50%;
    border-radius: 8px;
    object-fit: cover;
    border: 5px solid #ffffff2a;
    animation: fadeIn 1s ease-in-out;
}

.showcase-panel h1 {
    font-size: 3rem;
    color: #9b00ff;
    text-shadow: 0 0 15px #9b00ff, 0 0 25px #9b00ff;
    letter-spacing: 3px;
    animation: fadeIn 1s ease-in-out;
    flex: 1;
}

@media (max-width: 1052px) {
    .showcase-panel img {
        max-width: 400px;
        width: auto;
        border-radius: 8px;
        object-fit: cover;
        border: 5px solid #ffffff2a;
        animation: fadeIn 1s ease-in-out;
    }
}

@media (max-width: 665px) {
    .showcase-panel {
        padding: 12px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .showcase-panel img {
        width: auto;
        max-width: 100%;
    }

    .showcase-panel h1 {
        font-size: 2rem;
        letter-spacing: 1.5px;
        text-align: center;
    }
}

/* Language Switch Section */
.language-switcher {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.language-switcher button {
    padding: 10px 20px;
    background-color: #4E006A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.language-switcher button:hover {
    background-color: #4E006A;
}

@media (max-width: 600px) {
    .language-switcher button {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 4px;
    }
}

/* SPA */
#content {
    transition: opacity 0.3s;
  }
  .hidden {
    opacity: 0;
  }
  