/* =====================================================
   YOUR STUDIO
   Main stylesheet
   ===================================================== */

:root {
    --bg: #f5f3ed;
    --white: #ffffff;
    --black: #171717;
    --muted: #77756d;
    --line: #dedbd2;

    --orange: #ff6338;
    --yellow: #ffd45c;
    --blue: #9ed8ff;
    --green: #b9df91;

    --radius: 28px;
    --container: 1240px;

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   RESET
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/* =====================================================
   HEADER
   ===================================================== */

.header {
    width: 100%;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5vw;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: rgba(245, 243, 237, 0.85);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid transparent;

    transition: 0.3s ease;
}

.header.scrolled {
    border-bottom-color: var(--line);
}

.logo {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span {
    color: var(--orange);
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width 0.25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;

    border: 0;
    background: transparent;

    width: 40px;
    height: 40px;

    cursor: pointer;
}

.menu-btn span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--black);

    transition: 0.3s ease;
}

/* =====================================================
   TOP BANNER
   ===================================================== */

.top-banner {
    width: 100%;
    margin-top: 82px;
    overflow: hidden;
}

.top-banner img {
    width: 80%;
    margin: 0 auto;
    display: block;
    border-radius: 24px;
}

/* =====================================================
   GENERAL
   ===================================================== */

.section {
    width: min(var(--container), 90%);
    margin: auto;
    padding: 130px 0;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    color: var(--orange);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 65px;
}

.section-heading h2,
.about h2,
.contact h2 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -4px;
    font-weight: 900;
}

.section-heading > p {
    max-width: 370px;

    color: var(--muted);

    font-size: 16px;
}


/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--orange);
    color: white;
}

.btn-primary:hover {
    background: #e94f26;
}

.btn-outline {
    border: 1px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: white;
}

.btn-dark {
    background: var(--black);
    color: white;
}

.btn-light {
    background: white;
    color: var(--black);
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
    min-height: 100vh;

    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    padding: 150px 7vw 80px;

    position: relative;

    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;

    padding: 9px 15px;

    margin-bottom: 28px;

    border-radius: 100px;

    background: var(--yellow);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero h1 {
    max-width: 700px;

    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.88;

    letter-spacing: -7px;

    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: var(--orange);
}

.hero p {
    max-width: 490px;

    margin: 35px 0;

    color: var(--muted);

    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* =====================================================
   HERO ART
   ===================================================== */

.hero-art {
    height: 600px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 470px;
    height: 470px;

    border-radius: 50%;

    background: var(--orange);

    position: absolute;

    animation: float 6s ease-in-out infinite;
}

.game-preview {
    width: 310px;
    height: 410px;

    position: relative;
    z-index: 2;

    padding: 28px;

    background: var(--white);

    border-radius: 32px;

    box-shadow: var(--shadow);

    transform: rotate(5deg);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview-top {
    display: flex;
    justify-content: space-between;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.preview-icon {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.preview-icon img {
    width: 100%;
    max-width: 220px;
    height: 220px;

    object-fit: contain;

    display: block;

    transition: transform 0.4s ease;
}

.game-preview:hover .preview-icon img {
    transform: scale(1.05);
}

.game-preview h3 {
    font-size: 32px;
    font-weight: 900;
}

.game-preview p {
    color: var(--muted);
}

.floating-card {
    width: 75px;
    height: 75px;

    position: absolute;
    z-index: 4;

    display: grid;
    place-items: center;

    background: white;

    border-radius: 22px;

    font-size: 35px;

    box-shadow: var(--shadow);
}

.card-one {
    top: 90px;
    left: 15%;
    transform: rotate(-12deg);
}

.card-two {
    bottom: 100px;
    right: 10%;
    transform: rotate(13deg);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* =====================================================
   GAMES
   ===================================================== */

.game-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

    margin-bottom: 130px;
}


/* GAME IMAGE */

.game-row-image {
    width: 100%;
    height: 480px;

    overflow: hidden;

    border-radius: 28px;

    background: #ddd;
}

.game-row-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.game-row:hover .game-row-image img {
    transform: scale(1.04);
}


/* GAME 02
   Image moves to the RIGHT */

.game-row-reverse .game-row-image {
    order: 2;
}

.game-row-reverse .game-row-content {
    order: 1;
}


/* GAME CONTENT */

.game-row-content {
    max-width: 500px;
}

.game-number {
    display: block;

    margin-bottom: 15px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.game-row-content h3 {
    margin-bottom: 25px;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 0.95;

    letter-spacing: -3px;

    font-weight: 900;
}

.game-row-content > p {
    margin-bottom: 18px;

    font-size: 17px;

    line-height: 1.6;
}

.game-small-text {
    color: var(--muted);

    font-size: 14px !important;

    line-height: 1.7 !important;
}


/* STORE BUTTONS */

.store-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;
}

.store-buttons a {
    display: block;

    width: 150px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.store-buttons img {
    width: 100%;

    height: auto;

    display: block;
}

.store-buttons a:hover {
    transform: translateY(-4px);

    opacity: 0.8;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 800px) {

    .game-row,
    .game-row-reverse {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 90px;
    }

    .game-row-reverse .game-row-image,
    .game-row-reverse .game-row-content {
        order: initial;
    }

    .game-row-image {
        height: 380px;
    }

    .game-row-content h3 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .store-buttons {
        flex-wrap: wrap;
    }

}

/* =====================================================
   FEATURE
   ===================================================== */

.feature {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 650px;

    margin-top: 50px;
}

.feature-image {
    background: var(--blue);

    display: grid;
    place-items: center;
}

.feature-character {
    font-size: 180px;

    animation: float 5s ease-in-out infinite;
}

.feature-content {
    background: var(--yellow);

    padding: 90px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.feature-content h2 {
    max-width: 550px;

    margin-bottom: 25px;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.9;
    letter-spacing: -4px;
}

.feature-content p {
    max-width: 500px;

    margin-bottom: 35px;

    color: #555249;
}


/* =====================================================
   NEWS
   ===================================================== */

.news-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.news-card {
    background: white;

    border-radius: var(--radius);

    overflow: hidden;

    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-7px);
}

.news-image {
    height: 260px;

    display: grid;
    place-items: center;

    background: var(--green);

    font-size: 80px;
}

.news-card:nth-child(2) .news-image {
    background: var(--orange);
}

.news-card:nth-child(3) .news-image {
    background: var(--blue);
}

.news-content {
    padding: 25px;
}

.news-content > span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--muted);
}

.news-content h3 {
    margin: 12px 0 25px;

    font-size: 23px;
    line-height: 1.1;
}

.news-content a,
.text-link {
    font-size: 13px;
    font-weight: 800;
}

.text-link {
    border-bottom: 2px solid var(--black);
}


/* =====================================================
   ABOUT
   ===================================================== */

.about {
    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 70px;
}

.about-number {
    font-size: 15px;
    font-weight: 800;
    color: var(--orange);
}

.about-content {
    max-width: 850px;
}

.about h2 span {
    color: var(--orange);
}

.about-content > p {
    max-width: 620px;

    margin: 30px 0;

    color: var(--muted);

    font-size: 18px;
}

.about-content .btn {
    margin-top: 10px;
}


/* =====================================================
   CAREERS
   ===================================================== */

.careers {
    padding: 130px 5vw;

    background: var(--black);

    color: white;

    text-align: center;
}

.careers-inner {
    max-width: 850px;

    margin: auto;
}

.careers .eyebrow {
    color: var(--yellow);
}

.careers h2 {
    font-size: clamp(48px, 7vw, 90px);

    line-height: 0.9;

    letter-spacing: -5px;
}

.careers p {
    max-width: 500px;

    margin: 30px auto;

    color: #aaa;
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.contact-heading h2 {
    margin-bottom: 25px;
}

.contact-heading p {
    max-width: 400px;

    color: var(--muted);
}

.contact-form {
    padding: 35px;

    background: white;

    border-radius: var(--radius);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 800;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--line);

    background: var(--bg);

    border-radius: 15px;

    padding: 15px;

    outline: none;

    resize: vertical;

    transition: border 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-message {
    margin-top: 15px;

    font-size: 13px;
    font-weight: 700;
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    width: min(var(--container), 90%);

    margin: auto;

    padding: 45px 0 30px;

    border-top: 1px solid var(--line);
}

.footer-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 40px;
}

.footer-top p {
    color: var(--muted);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--line);

    color: var(--muted);

    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--black);
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 1000px) {

    .nav {
        gap: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
    }

    .hero-art {
        height: 500px;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
    }

    .game-large {
        grid-column: span 2;
    }

    .feature {
        grid-template-columns: 1fr;
    }

    .feature-image {
        min-height: 500px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


@media (max-width: 700px) {

    .header {
        height: 70px;
    }

    .nav {
        position: fixed;

        top: 70px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: var(--bg);

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        transform: translateY(-150%);
        transition: transform 0.3s ease;

        border-bottom: 1px solid var(--line);
    }

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

    .menu-btn {
        display: block;
    }

    .hero {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    .hero-art {
        height: 430px;
    }

    .hero-circle {
        width: 330px;
        height: 330px;
    }

    .game-preview {
        width: 250px;
        height: 340px;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 25px;
    }

    .games-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .game-large {
        grid-column: auto;
    }

    .game-image,
    .game-large .game-image {
        height: 390px;
    }

    .feature-content {
        padding: 60px 7vw;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .careers h2 {
        letter-spacing: -3px;
    }

    /* =====================================================
   SCROLL REVEAL
   ===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
}

/* =====================================================
   HELP & CONTACT PAGE
   ===================================================== */

.help-hero {
    min-height: 620px;

    margin-top: 82px;

    padding: 100px 7vw;

    display: flex;
    align-items: center;

    background: var(--orange);

    color: white;
}

.help-hero-content {
    max-width: 850px;
}

.help-hero .eyebrow {
    color: var(--yellow);
}

.help-hero h1 {
    margin-bottom: 30px;

    font-size: clamp(65px, 9vw, 120px);

    line-height: 0.86;

    letter-spacing: -7px;

    font-weight: 900;
}

.help-hero p {
    max-width: 540px;

    color: rgba(255,255,255,0.85);

    font-size: 18px;
}


/* HELP OPTIONS */

.help-heading {
    margin-bottom: 60px;
}

.help-heading h2 {
    font-size: clamp(48px, 6vw, 78px);

    line-height: 0.9;

    letter-spacing: -4px;

    font-weight: 900;
}

.help-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.help-card {
    padding: 30px;

    min-height: 300px;

    display: flex;
    flex-direction: column;

    background: white;

    border-radius: 25px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.help-icon {
    width: 60px;
    height: 60px;

    margin-bottom: 30px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: var(--yellow);

    font-size: 27px;
}

.help-card:nth-child(2) .help-icon {
    background: var(--blue);
}

.help-card:nth-child(3) .help-icon {
    background: var(--green);
}

.help-card:nth-child(4) .help-icon {
    background: #ffc4b4;
}

.help-card h3 {
    margin-bottom: 12px;

    font-size: 22px;
}

.help-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}

.help-card > span {
    margin-top: auto;

    padding-top: 25px;

    font-size: 13px;

    font-weight: 800;
}


/* FAQ */

.faq-section {
    padding: 130px 5vw;

    background: var(--black);

    color: white;
}

.faq-inner {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.faq-heading h2 {
    font-size: clamp(45px, 5vw, 70px);

    line-height: 0.9;

    letter-spacing: -4px;

    font-weight: 900;
}

.faq-heading .eyebrow {
    color: var(--yellow);
}

.faq-item {
    border-bottom: 1px solid #3a3a3a;
}

.faq-question {
    width: 100%;

    padding: 25px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 0;

    background: transparent;

    color: white;

    text-align: left;

    cursor: pointer;

    font-size: 16px;

    font-weight: 700;
}

.faq-plus {
    font-size: 25px;

    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 40px 25px 0;

    color: #aaa;

    font-size: 14px;

    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}


/* CONTACT */

.help-contact {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.help-contact-heading h2 {
    margin-bottom: 25px;

    font-size: clamp(48px, 6vw, 80px);

    line-height: 0.9;

    letter-spacing: -4px;

    font-weight: 900;
}

.help-contact-heading p {
    max-width: 400px;

    color: var(--muted);
}

.help-form {
    padding: 40px;

    background: white;

    border-radius: 28px;
}

.help-form select {
    width: 100%;

    padding: 15px;

    border: 1px solid var(--line);

    border-radius: 15px;

    background: var(--bg);

    outline: none;

    cursor: pointer;
}


/* MOBILE */

@media (max-width: 900px) {

    .help-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .help-contact {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .help-hero {
        margin-top: 70px;

        min-height: 520px;

        padding: 80px 5vw;
    }

    .help-hero h1 {
        letter-spacing: -4px;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .help-form {
        padding: 25px;
    }

}

@media (max-width: 600px) {

    .help-hero {
        margin-top: 70px;

        min-height: 520px;

        padding: 80px 5vw;
    }

    .help-hero h1 {
        letter-spacing: -4px;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .help-form {
        padding: 25px;
    }

}


/* =====================================================
   FORM HINT
   ===================================================== */

.form-hint {
    display: block;

    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.5;
}


/* =====================================================
   FILE UPLOAD
   ===================================================== */

.file-upload {
    width: 100%;

    min-height: 65px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    border: 1px dashed var(--line);

    border-radius: 15px;

    background: var(--bg);

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.file-upload:hover {
    border-color: var(--orange);

    background: #fff8f5;
}

.file-icon {
    font-size: 20px;
}

.file-upload-text {
    font-size: 14px;

    font-weight: 600;

    color: var(--black);
}


/* =====================================================
   PRIVACY CHECKBOX
   ===================================================== */

.privacy-check {
    margin: 25px 0;
}

.privacy-check label {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    cursor: pointer;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.5;
}

.privacy-check input {
    width: 17px;
    height: 17px;

    margin-top: 2px;

    flex-shrink: 0;

    accent-color: var(--orange);

    cursor: pointer;
}

.privacy-check a {
    color: var(--black);

    font-weight: 700;

    text-decoration: underline;
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */

.legal-hero {
    margin-top: 82px;

    padding: 110px 7vw;

    min-height: 500px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    background: var(--yellow);
}

.legal-hero h1 {
    margin-bottom: 25px;

    font-size: clamp(60px, 8vw, 110px);

    line-height: 0.88;

    letter-spacing: -6px;

    font-weight: 900;
}

.legal-hero p {
    color: #5e5a4f;

    font-size: 13px;
}


/* =====================================================
   LEGAL CONTENT
   ===================================================== */

.legal-page {
    width: min(900px, 90%);

    margin: auto;

    padding: 100px 0 130px;
}

.legal-content section {
    padding-bottom: 50px;

    margin-bottom: 50px;

    border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
    border-bottom: 0;

    margin-bottom: 0;
}

.legal-content h2 {
    margin-bottom: 20px;

    font-size: 28px;

    letter-spacing: -1px;

    font-weight: 800;
}

.legal-content p {
    max-width: 760px;

    margin-bottom: 16px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.legal-content p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   LEGAL BUTTON
   ===================================================== */

.legal-button {
    display: inline-flex;

    margin-top: 25px;

    padding: 14px 22px;

    border-radius: 100px;

    background: var(--black);

    color: white;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.legal-button:hover {
    transform: translateY(-3px);

    background: var(--orange);
}


/* =====================================================
   LEGAL MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .legal-hero {
        margin-top: 70px;

        min-height: 420px;

        padding: 80px 5vw;
    }

    .legal-hero h1 {
        letter-spacing: -4px;
    }

    .legal-page {
        width: 90%;

        padding: 70px 0 90px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .legal-content p {
        font-size: 15px;

        line-height: 1.7;
    }

}

/* =====================================================
   GAME DETAILS BUTTON
   ===================================================== */

.game-details-btn {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 140px;
    height: 45px;

    padding: 0 20px;

    box-sizing: border-box;

    border: 1px solid var(--orange);
    border-radius: 100px;

    background: var(--ligth grey);
    color:#ff6338;

    font-size: 12px;
    font-weight: 800;

    line-height: 45px !important;

    text-align: center;
    text-decoration: none;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.game-details-btn:hover {
    transform: translateY(-3px);

    background: transparent;
    color: var(--orange);
}

/* =====================================================
   GAME DETAIL PAGE
   WORD PICTURE
   ===================================================== */


/* =====================================================
   GAME HERO
   ===================================================== */

.game-hero {
    min-height: 760px;

    margin-top: 82px;

    padding: 80px 7vw;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 80px;

    background: var(--yellow);
}


.game-hero-content {
    max-width: 600px;
}


.game-number {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


.game-hero h1 {
    margin: 0 0 30px;

    font-size: clamp(70px, 9vw, 125px);

    line-height: 0.82;

    letter-spacing: -8px;

    font-weight: 900;
}


.game-hero-description {
    max-width: 500px;

    margin-bottom: 32px;

    color: #555;

    font-size: 18px;

    line-height: 1.65;
}


/* =====================================================
   STORE BUTTONS
   ===================================================== */

.game-store-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


.game-store-buttons a {
    display: block;

    width: 150px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.game-store-buttons a:hover {
    transform: translateY(-4px);

    opacity: 0.85;
}


.game-store-buttons img {
    width: 100%;

    height: auto;

    display: block;
}


/* =====================================================
   HERO IMAGE
   ===================================================== */

.game-hero-image {
    width: 100%;

    height: 580px;

    overflow: hidden;

    border-radius: 35px;

    background: #ddd;
}


.game-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.game-hero-image:hover img {
    transform: scale(1.03);
}


/* =====================================================
   GENERAL SECTION HEADING
   ===================================================== */

.game-section-heading {
    max-width: 650px;
}


.game-section-heading h2 {
    margin-top: 15px;

    font-size: clamp(52px, 6vw, 85px);

    line-height: 0.88;

    letter-spacing: -5px;

    font-weight: 900;
}


.game-section-text {
    max-width: 520px;
}


.game-section-text p {
    margin-bottom: 25px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   INTRODUCTION
   ===================================================== */

.game-introduction {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: start;

    gap: 100px;
}


.game-introduction .game-section-text {
    padding-top: 45px;
}


/* =====================================================
   FEATURED IMAGE
   ===================================================== */

.game-feature-image {
    padding: 0 7vw 130px;
}


.game-feature-image-inner {
    width: 100%;

    max-width: 1400px;

    height: 650px;

    margin: auto;

    overflow: hidden;

    border-radius: 35px;

    background: #ddd;
}


.game-feature-image-inner img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.game-feature-image-inner:hover img {
    transform: scale(1.02);
}


/* =====================================================
   HOW TO PLAY
   ===================================================== */

.game-how {
    padding-top: 130px;
}


.game-how > .game-section-heading {
    margin-bottom: 110px;
}


.game-how-content {
    max-width: 1200px;

    margin: auto;
}


.game-step {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 90px;

    margin-bottom: 130px;
}


.game-step-reverse {
    grid-template-columns: 0.85fr 1.15fr;
}


.game-step-reverse .game-step-image {
    order: 2;
}


.game-step-reverse .game-step-text {
    order: 1;
}


/* =====================================================
   STEP IMAGE
   ===================================================== */

.game-step-image {
    width: 100%;

    height: 560px;

    overflow: hidden;

    border-radius: 30px;

    background: #eee;
}


.game-step-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.game-step-image:hover img {
    transform: scale(1.03);
}


/* =====================================================
   STEP TEXT
   ===================================================== */

.game-step-text {
    max-width: 430px;
}


.game-step-text > span {
    display: block;

    margin-bottom: 25px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;
}


.game-step-text h3 {
    margin-bottom: 20px;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 0.92;

    letter-spacing: -3px;

    font-weight: 900;
}


.game-step-text p {
    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
   FEATURES
   ===================================================== */

.game-features {
    padding: 130px 7vw;

    background: var(--black);

    color: white;
}


.game-features-heading {
    max-width: 700px;

    margin: 0 auto 80px;

    text-align: center;
}


.game-features-heading h2 {
    margin-top: 15px;

    font-size: clamp(52px, 6vw, 85px);

    line-height: 0.88;

    letter-spacing: -5px;

    font-weight: 900;
}


.game-features-heading .eyebrow {
    color: var(--yellow);
}


.game-features-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: #333;
}


.game-feature-card {
    min-height: 330px;

    padding: 40px;

    background: var(--black);
}


.game-feature-card > span {
    display: block;

    margin-bottom: 80px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


.game-feature-card h3 {
    margin-bottom: 15px;

    font-size: 32px;

    line-height: 1;

    letter-spacing: -1px;
}


.game-feature-card p {
    max-width: 290px;

    color: #999;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   VIDEO
   ===================================================== */

.game-video-section {
    text-align: center;
}


.game-video-heading {
    max-width: 700px;

    margin: 0 auto 55px;
}


.game-video-heading h2 {
    margin-top: 15px;

    font-size: clamp(52px, 6vw, 85px);

    line-height: 0.88;

    letter-spacing: -5px;

    font-weight: 900;
}


.game-video-heading p {
    margin-top: 25px;

    color: var(--muted);

    font-size: 16px;
}


.game-video {
    width: 100%;

    max-width: 1200px;

    margin: auto;

    overflow: hidden;

    border-radius: 30px;

    background: #111;

    aspect-ratio: 16 / 9;
}


.game-video video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
   MORE TO DISCOVER
   ===================================================== */

.game-more {
    overflow: hidden;
}


.game-more > .game-section-heading {
    margin-bottom: 80px;
}


.game-more-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 18px;
}


.game-more-image {
    height: 430px;

    overflow: hidden;

    border-radius: 28px;

    background: #ddd;
}


.game-more-large {
    height: 620px;

    grid-row: span 2;
}


.game-more-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.game-more-image:hover img {
    transform: scale(1.03);
}


.game-more-text {
    min-height: 430px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 28px;

    background: var(--yellow);
}


.game-more-text > span {
    margin-bottom: 25px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


.game-more-text h3 {
    margin-bottom: 25px;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 0.95;

    letter-spacing: -3px;

    font-weight: 900;
}


.game-more-text p {
    max-width: 390px;

    color: #555;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   FINAL CTA
   ===================================================== */

.game-final-cta {
    padding: 120px 7vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    background: var(--orange);

    color: white;
}


.game-final-cta .eyebrow {
    color: var(--yellow);
}


.game-final-cta h2 {
    margin-top: 15px;

    font-size: clamp(52px, 6vw, 90px);

    line-height: 0.88;

    letter-spacing: -5px;

    font-weight: 900;
}


/* =====================================================
   GAME INFO
   ===================================================== */

.game-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.game-info-heading h2 {
    margin-top: 15px;

    font-size: clamp(52px, 6vw, 80px);

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 900;
}


.game-info-details {
    border-top: 1px solid var(--line);
}


.game-info-row {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid var(--line);
}


.game-info-row span {
    color: var(--muted);

    font-size: 14px;
}


.game-info-row strong {
    font-size: 14px;

    font-weight: 800;

    text-align: right;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 900px) {


    /* HERO */

    .game-hero {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 70px 5vw;
    }


    .game-hero-image {
        height: 500px;

        order: -1;
    }


    /* INTRO */

    .game-introduction {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .game-introduction .game-section-text {
        padding-top: 0;
    }


    /* FEATURE IMAGE */

    .game-feature-image {
        padding: 0 5vw 90px;
    }


    .game-feature-image-inner {
        height: 500px;

        border-radius: 25px;
    }


    /* STEPS */

    .game-step,
    .game-step-reverse {

        grid-template-columns: 1fr;

        gap: 40px;

        margin-bottom: 90px;
    }


    .game-step-reverse .game-step-image {
        order: 0;
    }


    .game-step-reverse .game-step-text {
        order: 1;
    }


    .game-step-image {
        height: 500px;
    }


    /* FEATURES */

    .game-features-grid {
        grid-template-columns: 1fr;
    }


    /* MORE */

    .game-more-grid {
        grid-template-columns: 1fr;
    }


    .game-more-large {
        height: 500px;

        grid-row: auto;
    }


    .game-more-text {
        min-height: 380px;
    }


    /* CTA */

    .game-final-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 90px 5vw;
    }


    /* INFO */

    .game-info {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 600px) {


    .game-hero {
        margin-top: 70px;

        padding: 55px 5vw;
    }


    .game-hero h1 {
        letter-spacing: -5px;
    }


    .game-hero-description {
        font-size: 16px;
    }


    .game-hero-image {
        height: 400px;

        border-radius: 23px;
    }


    .game-store-buttons a {
        width: 140px;
    }


    .game-section-heading h2,
    .game-features-heading h2,
    .game-video-heading h2,
    .game-final-cta h2 {
        letter-spacing: -3px;
    }


    .game-feature-image-inner {
        height: 400px;
    }


    .game-step-image {
        height: 420px;

        border-radius: 23px;
    }


    .game-feature-card {
        min-height: 280px;

        padding: 30px;
    }


    .game-feature-card > span {
        margin-bottom: 55px;
    }


    .game-video {
        border-radius: 22px;
    }


    .game-more-image,
    .game-more-large {
        height: 380px;

        border-radius: 22px;
    }


    .game-more-text {
        min-height: 350px;

        padding: 30px;

        border-radius: 22px;
    }


    .game-info-row {
        min-height: 65px;
    }

}

/* =========================================================
   PRIVACY POLICY
   ========================================================= */

.privacy-page {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 100px 0 140px;

    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 100px;

    align-items: start;
}


/* =========================================================
   CONTENTS
   ========================================================= */

.privacy-index {
    position: sticky;
    top: 110px;

    display: flex;
    flex-direction: column;

    border-top: 1px solid var(--line);
}


.privacy-index-title {
    padding: 20px 0 18px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;

    color: var(--muted);
}


.privacy-index a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;

    padding: 13px 0;

    border-top: 1px solid var(--line);

    color: var(--muted);

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.privacy-index a span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;

    color: var(--accent);
}


.privacy-index a:hover {
    color: var(--ink);
    padding-left: 6px;
}


/* =========================================================
   POLICY CONTENT
   ========================================================= */

.privacy-content {
    width: 100%;
    max-width: 780px;
}


.privacy-section {
    display: block;

    padding: 0 0 72px;
    margin: 0 0 72px;

    border-bottom: 1px solid var(--line);

    scroll-margin-top: 110px;
}


.privacy-section:last-child {
    margin-bottom: 0;
}


.privacy-number {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;

    color: var(--accent);

    padding-top: 7px;
}


.privacy-section-body h2 {
    margin: 0 0 24px;

    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.05;

    font-weight: 800;
    letter-spacing: -0.035em;

    color: var(--ink);
}

.privacy-section-body h3 {
    margin: 0;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 750;
    letter-spacing: -0.015em;

    color: var(--ink);
}


.privacy-section-body p {
    margin: 0 0 18px;

    max-width: 650px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.85;

    white-space: pre-line;
}


.privacy-section-body p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.privacy-contact {
    padding-bottom: 0;
    border-bottom: 0;
}


.privacy-contact .privacy-section-body {
    padding-bottom: 10px;
}


.legal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 30px;

    padding: 14px 22px;

    background: var(--ink);
    color: #fff;

    border-radius: 999px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.legal-button:hover {
    transform: translateY(-2px);
    background: var(--accent);
}


/* =========================================================
   LEGAL HERO
   ========================================================= */

.legal-hero {
    padding: 120px 24px 100px;

    border-bottom: 1px solid var(--line);
}


.legal-hero-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
}


.legal-hero .eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;

    color: var(--accent);
}


.legal-hero h1 {
    margin: 0;

    font-size: clamp(64px, 10vw, 132px);
    line-height: 0.88;

    font-weight: 900;
    letter-spacing: -0.07em;

    color: var(--ink);
}


.legal-hero p {
    margin: 35px 0 0;

    color: var(--muted);

    font-size: 14px;
    font-weight: 500;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .privacy-page {
        grid-template-columns: 1fr;
        gap: 55px;

        padding-top: 70px;
        padding-bottom: 100px;
    }


    .privacy-index {
        position: relative;
        top: auto;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .privacy-index-title {
        grid-column: 1 / -1;
    }


    .privacy-index a {
        padding-right: 15px;
    }


    .privacy-content {
        max-width: none;
    }

}


@media (max-width: 600px) {

    .legal-hero {
        padding: 85px 20px 70px;
    }


    .legal-hero h1 {
        font-size: clamp(58px, 18vw, 90px);
    }


    .legal-hero p {
        margin-top: 25px;
    }


    .privacy-page {
        width: min(100% - 36px, 1200px);

        padding-top: 55px;
        padding-bottom: 80px;
    }


    .privacy-index {
        grid-template-columns: 1fr;
    }


    .privacy-index-title {
        padding-top: 0;
    }


    .privacy-index a {
        padding: 12px 0;
    }


    .privacy-section {
        grid-template-columns: 42px minmax(0, 1fr);

        gap: 16px;

        padding-bottom: 50px;
        margin-bottom: 50px;
    }


    .privacy-number {
        font-size: 11px;
    }


    .privacy-section-body h2 {
        margin-bottom: 18px;

        font-size: 26px;
    }

    .privacy-section-body h3 {
        margin-bottom: 18px;

        font-size: 18px;
    }

    .privacy-section-body p {
        font-size: 15px;
        line-height: 1.75;
    }


    .legal-button {
        width: 100%;
    }

}

.privacy-section-body a {
    color: #0066cc;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.privacy-section-body a:hover {
    color: #004c99;
}

.privacy-section-body a.email-link {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

.privacy-section-body a.email-link:hover {
    opacity: 0.65;
}
