/* ==========================
   GLOBAL STYLE
========================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 

html{
    scroll-behavior: smooth;
}

body{
    background: #070B12;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6{
    color: #ffffff;
}

p{
    color: #bdbdbd;
}

a{
    color: inherit;
}

img{
    max-width: 100%;
}
/* =====================================
   CONTACT PAGE
===================================== */

.contact-page {
    min-height: 100vh;
    padding: 150px 7% 100px;
    background:
        radial-gradient(circle at top, rgba(132, 76, 255, 0.16), transparent 40%),
        #070b14;
    color: #ffffff;
}

.contact-page .section-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-page .section-subtitle {
    margin-bottom: 12px;
    color: #9b63ff;
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-page .section-title {
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.2;
}

.contact-page .section-title span {
    color: #8b5cf6;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.7);
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #aab2c3;
    font-size: 16px;
    line-height: 1.8;
}

.contact-container {
    width: min(1150px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 35px;
    align-items: stretch;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-box {
    padding: 28px;
    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: 18px;
    background: rgba(15, 20, 32, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.18);
}

.contact-box h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
}

.contact-box p {
    margin-bottom: 10px;
    color: #aab2c3;
    line-height: 1.7;
}

.contact-box a {
    color: #9b63ff;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    color: #ffffff;
}

.contact-form {
    padding: 35px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 22px;
    background: rgba(15, 20, 32, 0.95);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    outline: none;
    background: #0a0f1b;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    transition: 0.3s ease;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #697287;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.contact-submit {
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #7c3aed, #9b63ff);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.38);
}

/* Mobile */

@media (max-width: 850px) {
    .contact-page {
        padding: 125px 20px 70px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px 20px;
    }
}

@media (max-width: 500px) {
    .contact-page .section-title {
        font-size: 34px;
    }

    .contact-box {
        padding: 22px;
    }
}
/* ==========================
   GAME DETAILS PAGES
========================== */

.game-page {
    min-height: 100vh;
    padding: 130px 7% 70px;
    background: #070b14;
    color: #ffffff;
}

.game-hero {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;

    padding: 30px;

    background: #0a0e18;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.game-hero img {
    width: 100%;
    height: 430px;
    object-fit: cover;

    border-radius: 15px;
}

.game-hero-content h1 {
    margin-bottom: 20px;

    font-size: 48px;
    color: #00e5ff;
}

.game-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
}

.game-details {
    max-width: 1000px;
    margin: auto;

    padding: 40px;

    background: #0a0e18;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.game-details h2 {
    margin-top: 30px;
    margin-bottom: 12px;

    color: #00e5ff;
}

.game-details h2:first-child {
    margin-top: 0;
}

.game-details p {
    margin-bottom: 20px;

    color: #cbd5e1;
    line-height: 1.8;
}

.game-details .btn {
    display: inline-block;

    margin-top: 20px;
    padding: 12px 25px;

    color: #071018;
    background: #00e5ff;

    text-decoration: none;
    font-weight: bold;

    border-radius: 10px;

    transition: 0.3s;
}

.game-details .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}


/* ==========================
   MOBILE
========================== */

@media screen and (max-width: 768px) {

    .game-page {
        padding: 110px 20px 50px;
    }

    .game-hero {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .game-hero img {
        height: 260px;
    }

    .game-hero-content h1 {
        font-size: 34px;
    }

    .game-details {
        padding: 25px 20px;
    }
}
