/* =========================================================
   FORTIS STUDIO
   Main Website Styles
   ========================================================= */

:root {
    --bg: #f7f7fb;
    --surface: #ffffff;
    --surface-dark: #0d0b1c;

    --text: #17152b;
    --text-muted: #65627a;

    --purple: #7c4dff;
    --purple-light: #a77cff;
    --purple-dark: #5930c7;

    --border: #e8e6f0;

    --shadow-sm: 0 4px 20px rgba(30, 20, 70, 0.06);
    --shadow-md: 0 12px 35px rgba(30, 20, 70, 0.10);

    --radius: 18px;
    --max-width: 1120px;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: var(--bg);
    color: var(--text);

    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

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

/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(13, 11, 28, 0.94);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    max-width: var(--max-width);
    margin: auto;

    min-height: 68px;

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

    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: white;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

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

    list-style: none;
}

.nav-links a {
    color: #d9d6e8;

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

    text-transform: uppercase;
    letter-spacing: 0.5px;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--purple-light);
}

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

.hero {
    min-height: 560px;

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

    position: relative;

    background:
        linear-gradient(
            rgba(13, 8, 35, 0.35),
            rgba(13, 8, 35, 0.60)
        ),
        url("../images/fortis-banner.jpg")
        center center / cover no-repeat;

    color: white;

    text-align: center;
}

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(124, 77, 255, 0.18),
            transparent 55%
        );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;

    max-width: 850px;

    padding: 80px 24px;
}

.hero-logo {
    width: 110px;
    height: 110px;

    object-fit: contain;

    margin: 0 auto 24px;

    filter: drop-shadow(0 10px 30px rgba(124, 77, 255, 0.35));
}

.hero h1 {
    font-size: clamp(42px, 7vw, 76px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;

    margin-bottom: 12px;

    text-shadow:
        0 4px 25px rgba(0,0,0,0.35);
}

.hero-subtitle {
    color: #c49cff;

    font-size: clamp(15px, 2vw, 21px);

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 26px;
}

.hero-description {
    max-width: 650px;

    margin: auto;

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

    font-size: clamp(17px, 2.5vw, 21px);

    line-height: 1.7;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 90px 24px;
}

.section-container {
    max-width: var(--max-width);
    margin: auto;
}

.section-header {
    text-align: center;

    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(32px, 5vw, 44px);

    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -1px;

    margin-bottom: 14px;
}

.section-title::after {
    content: "";

    display: block;

    width: 55px;
    height: 4px;

    margin: 18px auto 0;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        var(--purple),
        var(--purple-light)
    );
}

.section-description {
    max-width: 650px;

    margin: 0 auto;

    color: var(--text-muted);
}

/* =========================================================
   GAME CARDS
   ========================================================= */

.games {
    display: flex;
    flex-direction: column;

    gap: 28px;
}

.game-card {
    background: var(--surface);

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

    border-radius: var(--radius);

    padding: 28px;

    display: grid;

    grid-template-columns: 220px 1fr auto;

    gap: 34px;

    align-items: center;

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

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.game-card:hover {
    transform: translateY(-5px);

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

    border-color: rgba(124, 77, 255, 0.25);
}

.game-image {
    width: 220px;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    border-radius: 22px;

    box-shadow:
        0 10px 30px rgba(30, 20, 70, 0.16);
}

.game-content h3 {
    font-size: 30px;

    font-weight: 900;

    margin-bottom: 10px;
}

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

    margin-bottom: 18px;

    max-width: 650px;
}

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

.features {
    display: grid;

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

    gap: 9px 24px;

    list-style: none;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;
}

.features li {
    display: flex;
    align-items: center;

    gap: 9px;
}

.features li::before {
    content: "✦";

    color: var(--purple);

    font-size: 15px;
}

/* =========================================================
   GOOGLE PLAY BUTTON
   ========================================================= */

.play-button {
    display: inline-flex;

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

    background: #111111;

    color: white;

    padding: 13px 20px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.18);

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

.play-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(0,0,0,0.25);
}

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

.about {
    background: white;

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

    text-align: center;
}

.about-content {
    max-width: 720px;

    margin: auto;
}

.about-content p {
    color: var(--text-muted);

    font-size: 17px;
}

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

.contact {
    text-align: center;
}

.email-link {
    display: inline-block;

    margin-top: 15px;

    color: var(--purple);

    font-size: 18px;

    font-weight: 700;

    transition: color 0.2s ease;
}

.email-link:hover {
    color: var(--purple-dark);
}

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

footer {
    background: var(--surface-dark);

    color: #aaa6bc;

    padding: 45px 24px;

    text-align: center;
}

.footer-logo {
    display: flex;

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

    gap: 10px;

    color: white;

    font-weight: 800;

    margin-bottom: 18px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-bottom: 20px;
}

.footer-links a {
    font-size: 13px;

    color: #aaa6bc;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 12px;

    color: #716d82;
}

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

.policy-page {
    background: var(--bg);

    min-height: 100vh;

    padding: 70px 24px;
}

.policy {
    max-width: 850px;

    margin: auto;

    background: white;

    padding: 55px;

    border-radius: var(--radius);

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

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

.policy h1 {
    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 10px;
}

.policy .last-updated {
    color: var(--text-muted);

    font-size: 14px;

    margin-bottom: 40px;
}

.policy h2 {
    font-size: 23px;

    margin-top: 38px;

    margin-bottom: 12px;

    color: var(--text);
}

.policy p {
    color: #555268;

    margin-bottom: 17px;
}

.policy ul {
    margin:

        0 0 20px 25px;

    color: #555268;
}

.policy li {
    margin-bottom: 8px;
}

.policy a {
    color: var(--purple);

    font-weight: 600;
}

.policy strong {
    color: var(--text);
}

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

@media (max-width: 850px) {

    .nav-container {
        min-height: 62px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .game-card {
        grid-template-columns: 160px 1fr;

        gap: 24px;
    }

    .game-image {
        width: 160px;
    }

    .game-card .play-button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 600px) {

    .nav-container {
        padding: 0 16px;
    }

    .nav-logo {
        font-size: 15px;
    }

    .nav-logo img {
        width: 32px;
        height: 32px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 70px 20px;
    }

    .hero-logo {
        width: 85px;
        height: 85px;
    }

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

    .hero-subtitle {
        letter-spacing: 2px;
    }

    .section {
        padding: 65px 18px;
    }

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

        padding: 20px;

        text-align: left;
    }

    .game-image {
        width: 100%;
        max-width: 260px;

        margin: auto;
    }

    .game-content h3 {
        font-size: 26px;
    }

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

    .game-card .play-button {
        grid-column: auto;

        justify-self: start;
    }

    .policy {
        padding: 30px 22px;
    }

    .policy h1 {
        font-size: 32px;
    }
}
