/* ==============================
   RESET
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #060b08;
    color: #f4f7f5;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ==============================
   HEADER
============================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 11, 8, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand img {
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(63, 255, 132, 0.16);
}

.brand span {
    font-size: 21px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 800;
    color: #aeb9b2;
    letter-spacing: 0.8px;
    transition: 0.2s ease;
}

.main-nav a:hover {
    color: #63f58f;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 27px;
    cursor: pointer;
}


/* ==============================
   GLOBAL
============================== */

.section-label {
    color: #63f58f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}

.section-heading h2,
.experience-copy h2,
.final-cta h2 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.section-description {
    margin-top: 16px;
    max-width: 650px;
    color: #8d9991;
}

.section-link,
.text-link {
    color: #63f58f;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.btn {
    min-height: 52px;
    padding: 0 25px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.6px;
    transition: 0.2s ease;
}

.btn-primary {
    background: #63f58f;
    color: #061008;
    box-shadow: 0 10px 30px rgba(63, 245, 143, 0.14);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #78ffa1;
}

.btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.025);
}

.btn-secondary:hover {
    border-color: #63f58f;
    color: #63f58f;
}


/* ==============================
   HERO
============================== */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #060b08 0%,
            #07130b 48%,
            #050906 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 85px 0;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #a7b4ac;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63f58f;
    box-shadow: 0 0 12px #63f58f;
}

.hero h1 {
    font-size: clamp(58px, 7.8vw, 102px);
    line-height: 0.92;
    letter-spacing: -4px;
    margin-bottom: 28px;
}

.hero h1 span {
    display: block;
    color: #63f58f;
}

.hero-text {
    max-width: 650px;
    color: #9ba79f;
    font-size: 18px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.hero-stats div {
    display: grid;
    gap: 3px;
}

.hero-stats strong {
    font-size: 12px;
    letter-spacing: 1px;
}

.hero-stats span {
    color: #718078;
    font-size: 12px;
}


/* ==============================
   HERO VISUAL
============================== */

.hero-visual {
    position: relative;
    min-height: 500px;
}

.visual-card {
    border: 1px solid rgba(99, 245, 143, 0.16);
    background:
        linear-gradient(
            145deg,
            rgba(20, 37, 26, 0.98),
            rgba(7, 17, 11, 0.99)
        );
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(99, 245, 143, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.visual-main {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 385px;
    min-height: 455px;
    padding: 26px;
    border-radius: 24px;
    transform: translate(-50%, -50%) rotate(2deg);
    z-index: 2;
}

.visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #829088;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.online-badge {
    color: #63f58f;
}

.visual-center {
    min-height: 300px;
    display: grid;
    place-items: center;
}

.visual-center img {
    width: 205px;
    border-radius: 50%;
    box-shadow:
        0 0 50px rgba(63, 245, 143, 0.16),
        0 15px 35px rgba(0, 0, 0, 0.35);
}

.visual-bottom {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 7px;
}

.visual-bottom small {
    color: #63f58f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.visual-bottom strong {
    display: block;
    max-width: 235px;
    font-size: 15px;
    line-height: 1.3;
}

.floating-card {
    position: absolute;
    width: 132px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(99, 245, 143, 0.34);
    background: rgba(6, 15, 10, 0.97);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.38),
        0 0 16px rgba(99, 245, 143, 0.10);
    display: grid;
    gap: 7px;
    z-index: 4;
}

.floating-card span {
    color: #63f58f;
    font-size: 10px;
    font-weight: 900;
}

.floating-card strong {
    font-size: 12px;
    letter-spacing: 0.8px;
}

.floating-one {
    left: 0;
    top: 95px;
}

.floating-two {
    right: 0;
    bottom: 18px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
    pointer-events: none;
}

.hero-glow-one {
    width: 330px;
    height: 330px;
    right: 6%;
    top: 7%;
    background: #00ff6a;
}

.hero-glow-two {
    width: 240px;
    height: 240px;
    left: 15%;
    bottom: -80px;
    background: #009c45;
}


/* ==============================
   FEATURED GAMES
============================== */

.featured-games {
    padding: 110px 0;
    background: #08110b;
    border-top: 1px solid rgba(255,255,255,.05);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.game-card {
    overflow: hidden;
    border-radius: 16px;

    /* Garis hijau */
    border: 1px solid rgba(99, 245, 143, 0.65);

    background: #0a1510;

    /* Cahaya hijau */
    box-shadow:
        0 0 8px rgba(99, 245, 143, 0.18),
        0 0 20px rgba(99, 245, 143, 0.08);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.game-card:hover {
    transform: translateY(-5px);

    border-color: #63f58f;

    box-shadow:
        0 0 10px rgba(99, 245, 143, 0.45),
        0 0 25px rgba(99, 245, 143, 0.22),
        0 0 45px rgba(99, 245, 143, 0.10);
}

.game-art {
    position: relative;
    min-height: 205px;
    overflow: hidden;
    background: #08110b;
}

.game-art img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.game-card:hover .game-art img {
    transform: scale(1.04);
}

.game-art::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(3, 8, 5, 0.55) 0%,
            rgba(3, 8, 5, 0.06) 50%,
            transparent 100%
        );
    pointer-events: none;
}

.game-info {
    padding: 22px;
}

.game-info p {
    color: #63f58f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
    margin-bottom: 7px;
}

.game-info h3 {
    font-size: 19px;
    margin-bottom: 7px;
}

.game-info span {
    color: #7f8d84;
    font-size: 13px;
}


/* ==============================
   CATEGORIES
============================== */

.categories {
    padding: 110px 0;
    background: #050b07;
}

.centered-heading {
    justify-content: center;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.category-card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    overflow: hidden;

    border-radius: 16px;
    border: 1px solid rgba(99, 245, 143, 0.18);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(99, 245, 143, 0.07),
            transparent 32%
        ),
        #07100b;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 245, 143, 0.65);

    box-shadow:
        0 0 10px rgba(99, 245, 143, 0.15),
        0 0 25px rgba(99, 245, 143, 0.08);
}

.category-number {
    display: block;
    color: #63f58f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.category-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border-radius: 14px;
    border: 1px solid rgba(99, 245, 143, 0.28);

    background: rgba(99, 245, 143, 0.055);

    box-shadow:
        inset 0 0 15px rgba(99, 245, 143, 0.04),
        0 0 18px rgba(99, 245, 143, 0.06);
}

.category-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #63f58f;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter: drop-shadow(
        0 0 5px rgba(99, 245, 143, 0.35)
    );
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.category-card p {
    color: #849188;
    font-size: 14px;
}


/* ==============================
   EXPERIENCE
============================== */

.experience {
    padding: 115px 0;
    background: #09130d;
    border-top: 1px solid rgba(255,255,255,.05);
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.experience-copy h2 span {
    display: block;
    color: #63f58f;
}

.experience-copy > p:not(.section-label) {
    color: #95a199;
    font-size: 17px;
    margin: 24px 0 30px;
    max-width: 570px;
}

.experience-list {
    display: grid;
}

.experience-list article {
    display: grid;
    grid-template-columns: 45px 58px 1fr;
    align-items: center;
    gap: 18px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(99, 245, 143, 0.62);
    box-shadow:
        0 9px 16px -14px rgba(99, 245, 143, 0.80);
}

.experience-list article:first-child {
    border-top: 1px solid rgba(99, 245, 143, 0.62);
    box-shadow:
        0 -9px 16px -14px rgba(99, 245, 143, 0.80),
        0 9px 16px -14px rgba(99, 245, 143, 0.80);
}

.experience-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(99, 245, 143, 0.48);
    background: rgba(99, 245, 143, 0.06);
    box-shadow:
        0 0 12px rgba(99, 245, 143, 0.14),
        inset 0 0 12px rgba(99, 245, 143, 0.06);
}

.experience-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #63f58f;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(99, 245, 143, 0.60));
}

.experience-list > article > span {
    color: #63f58f;
    font-size: 11px;
    font-weight: 900;
}

.experience-list h3 {
    margin-bottom: 6px;
}

.experience-list p {
    color: #849087;
    font-size: 14px;
}


/* ==============================
   UPDATES
============================== */

.latest-update {
    padding: 110px 0;
    background: #060b08;
}

.update-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.update-card {
    overflow: hidden;
    border-radius: 16px;

    border: 1px solid rgba(99, 245, 143, 0.28);

    background: #0a1510;

    box-shadow:
        0 0 8px rgba(99, 245, 143, 0.10),
        0 0 18px rgba(99, 245, 143, 0.05);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.update-card:hover {
    transform: translateY(-5px);

    border-color: rgba(99, 245, 143, 0.70);

    box-shadow:
        0 0 10px rgba(99, 245, 143, 0.30),
        0 0 25px rgba(99, 245, 143, 0.12);
}

.update-thumb {
    height: 220px;
    overflow: hidden;
    background: #07100b;
}

.update-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.35s ease;
}

.update-card:hover .update-thumb img {
    transform: scale(1.04);
}

.update-content {
    padding: 28px;
}

.update-tag {
    display: inline-block;

    color: #63f58f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;

    margin-bottom: 18px;
}

.update-card h3 {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.update-card p {
    color: #87938b;
    font-size: 14px;
    margin-bottom: 24px;
}


/* ==============================
   FINAL CTA
============================== */

.final-cta {
    padding: 70px 0 100px;
    background: #060b08;
}

.cta-panel {
    min-height: 270px;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(99,245,143,.16);
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(99,245,143,.13),
            transparent 30%
        ),
        linear-gradient(145deg, #0d1d13, #08100b);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta-panel p:not(.section-label) {
    color: #8d9991;
    margin-top: 14px;
}


/* ==============================
   FOOTER
============================== */

.site-footer {
    padding: 60px 0 25px;
    background: #030604;
    border-top: 1px solid rgba(255,255,255,.055);
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    max-width: 390px;
}

.footer-brand p {
    color: #748078;
    margin-top: 16px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.footer-links a {
    color: #869189;
    font-size: 12px;
    font-weight: 800;
}

.footer-links a:hover {
    color: #63f58f;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-bottom p {
    color: #536057;
    font-size: 12px;
}

/* ==============================
   GAMES PAGE
============================== */

.games-hero {
    padding: 125px 0 105px;
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(99, 245, 143, 0.12),
            transparent 30%
        ),
        #060b08;

    border-bottom: 1px solid rgba(99, 245, 143, 0.12);
}

.games-hero-inner {
    max-width: 850px;
}

.games-hero h1 {
    font-size: clamp(52px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.games-hero p:last-child {
    max-width: 650px;
    color: #95a199;
    font-size: 17px;
}


.games-library {
    padding: 110px 0;
    background: #08110b;
}

.games-library-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.library-card {
    overflow: hidden;
    border-radius: 18px;

    border: 1px solid rgba(99, 245, 143, 0.42);

    background: #0a1510;

    box-shadow:
        0 0 10px rgba(99, 245, 143, 0.08),
        0 0 24px rgba(99, 245, 143, 0.04);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.library-card:hover {
    transform: translateY(-5px);

    border-color: #63f58f;

    box-shadow:
        0 0 12px rgba(99, 245, 143, 0.30),
        0 0 30px rgba(99, 245, 143, 0.12);
}

.library-image {
    height: 300px;
    overflow: hidden;
}

.library-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.35s ease;
}

.library-card:hover .library-image img {
    transform: scale(1.04);
}

.library-content {
    padding: 30px;
}

.library-content > span {
    display: inline-block;

    color: #63f58f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;

    margin-bottom: 10px;
}

.library-content h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.library-content p {
    color: #87938b;
    margin-bottom: 22px;
}


.game-detail-section {
    padding: 105px 0;
    background: #050b07;
}

.game-detail-list {
    display: grid;
}

.game-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;

    padding: 50px 0;

    border-bottom: 1px solid rgba(99, 245, 143, 0.35);
}

.game-detail:first-child {
    border-top: 1px solid rgba(99, 245, 143, 0.35);
}

.detail-number {
    color: #63f58f;

    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.game-detail h2 {
    font-size: clamp(30px, 5vw, 48px);
    margin-bottom: 16px;
}

.game-detail > div:last-child > p:last-child {
    max-width: 700px;
    color: #8b978f;
    font-size: 16px;
}

/* ==============================
   UPDATE PAGE
============================== */

.update-page-hero {
    padding: 125px 0 105px;

    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(99, 245, 143, 0.13),
            transparent 32%
        ),
        #060b08;

    border-bottom:
        1px solid rgba(99, 245, 143, 0.12);
}

.update-page-hero-inner {
    max-width: 900px;
}

.update-page-hero h1 {
    max-width: 850px;

    font-size: clamp(55px, 7vw, 88px);
    line-height: 0.96;
    letter-spacing: -4px;

    margin-bottom: 28px;
}

.update-page-hero h1 span {
    color: #63f58f;
}

.update-page-lead {
    max-width: 650px;

    color: #95a199;
    font-size: 17px;
}


/* FEATURED */

.update-featured {
    padding: 110px 0;
    background: #08110b;
}

.update-featured-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    overflow: hidden;

    min-height: 470px;

    border-radius: 20px;
    border: 1px solid rgba(99, 245, 143, 0.45);

    background: #0a1510;

    box-shadow:
        0 0 12px rgba(99, 245, 143, 0.12),
        0 0 35px rgba(99, 245, 143, 0.05);
}

.update-featured-image {
    overflow: hidden;
}

.update-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 470px;

    object-fit: cover;
    display: block;
}

.update-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
}

.update-featured-content h2 {
    max-width: 600px;

    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.05;

    margin-bottom: 22px;
}

.update-featured-content > p:not(.section-label) {
    max-width: 600px;

    color: #8c9890;
    font-size: 16px;

    margin-bottom: 30px;
}

.update-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.update-meta span {
    padding: 8px 12px;

    border-radius: 100px;
    border: 1px solid rgba(99, 245, 143, 0.30);

    color: #63f58f;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}


/* UPDATE LIBRARY */

.update-library {
    padding: 110px 0;

    background: #050b07;
}

.update-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.update-page-card {
    overflow: hidden;

    border-radius: 16px;

    border:
        1px solid rgba(99, 245, 143, 0.32);

    background: #09140e;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.update-page-card:hover {
    transform: translateY(-5px);

    border-color: #63f58f;

    box-shadow:
        0 0 12px rgba(99, 245, 143, 0.25),
        0 0 30px rgba(99, 245, 143, 0.10);
}

.update-page-image {
    height: 250px;
    overflow: hidden;
}

.update-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.35s ease;
}

.update-page-card:hover img {
    transform: scale(1.04);
}

.update-page-content {
    padding: 28px;
}

.update-page-content > span {
    display: inline-block;

    color: #63f58f;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;

    margin-bottom: 15px;
}

.update-page-content h3 {
    font-size: 21px;
    line-height: 1.25;

    margin-bottom: 13px;
}

.update-page-content p {
    color: #849087;

    font-size: 14px;
}


/* TOPICS */

.update-topics {
    padding: 110px 0;

    background: #08110b;
}

.update-topics-heading {
    margin-bottom: 55px;
}

.update-topics-heading h2 {
    font-size: clamp(34px, 5vw, 55px);
}

.update-topic-list {
    display: grid;
}

.update-topic-list article {
    display: grid;
    grid-template-columns: 80px 1fr;

    gap: 25px;

    padding: 34px 0;

    border-bottom:
        1px solid rgba(99, 245, 143, 0.38);
}

.update-topic-list article:first-child {
    border-top:
        1px solid rgba(99, 245, 143, 0.38);
}

.update-topic-list article > span {
    color: #63f58f;

    font-size: 13px;
    font-weight: 900;
}

.update-topic-list h3 {
    font-size: 22px;

    margin-bottom: 8px;
}

.update-topic-list p {
    max-width: 700px;

    color: #849087;

    font-size: 14px;
}

/* ==============================
   ABOUT PAGE
============================== */

.about-page-hero {
    padding: 125px 0 105px;

    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(99, 245, 143, 0.13),
            transparent 32%
        ),
        #060b08;

    border-bottom:
        1px solid rgba(99, 245, 143, 0.12);
}

.about-page-hero-inner {
    max-width: 900px;
}

.about-page-hero h1 {
    font-size: clamp(58px, 8vw, 94px);
    line-height: 0.92;
    letter-spacing: -4px;

    margin-bottom: 28px;
}

.about-page-hero h1 span {
    display: block;
    color: #63f58f;
}

.about-page-lead {
    max-width: 700px;

    color: #95a199;
    font-size: 17px;
}


/* ABOUT INTRO */

.about-intro {
    padding: 115px 0;

    background: #08110b;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;
}

.about-intro h2 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
}

.about-intro h2 span {
    display: block;
    color: #63f58f;
}

.about-intro-copy {
    max-width: 680px;
}

.about-intro-copy p {
    color: #8b978f;
    font-size: 16px;

    margin-bottom: 20px;
}


/* ABOUT PILLARS */

.about-pillars {
    padding: 110px 0;

    background: #050b07;
}

.about-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.about-pillar-card {
    min-height: 290px;

    padding: 30px;

    border-radius: 16px;

    border:
        1px solid rgba(99, 245, 143, 0.32);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(99, 245, 143, 0.07),
            transparent 32%
        ),
        #09140e;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.about-pillar-card:hover {
    transform: translateY(-5px);

    border-color: #63f58f;

    box-shadow:
        0 0 12px rgba(99, 245, 143, 0.25),
        0 0 30px rgba(99, 245, 143, 0.08);
}

.about-pillar-number {
    display: block;

    color: #63f58f;

    font-size: 10px;
    font-weight: 900;

    margin-bottom: 20px;
}

.about-pillar-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 14px;

    border:
        1px solid rgba(99, 245, 143, 0.35);

    background:
        rgba(99, 245, 143, 0.05);
}

.about-pillar-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: #63f58f;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(
            0 0 5px rgba(99, 245, 143, 0.50)
        );
}

.about-pillar-card h3 {
    font-size: 21px;

    margin-bottom: 12px;
}

.about-pillar-card p {
    color: #849087;

    font-size: 14px;
}


/* STRUCTURE */

.about-structure {
    padding: 115px 0;

    background: #08110b;
}

.about-structure-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;
}

.about-structure-copy h2 {
    font-size: clamp(35px, 5vw, 56px);
    line-height: 1.05;

    margin-bottom: 20px;
}

.about-structure-copy h2 span {
    display: block;

    color: #63f58f;
}

.about-structure-copy > p:last-child {
    max-width: 500px;

    color: #8b978f;
}

.about-structure-list {
    display: grid;
}

.about-structure-list article {
    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 28px 0;

    border-bottom:
        1px solid rgba(99, 245, 143, 0.45);
}

.about-structure-list article:first-child {
    border-top:
        1px solid rgba(99, 245, 143, 0.45);
}

.about-structure-list article > span {
    color: #63f58f;

    font-size: 11px;
    font-weight: 900;
}

.about-structure-list h3 {
    font-size: 20px;

    margin-bottom: 7px;
}

.about-structure-list p {
    color: #849087;

    font-size: 14px;
}

/* ==============================
   GAMING EDITORIAL
============================== */

.gaming-editorial {
    padding: 115px 0;
    background: #08110b;
    border-top: 1px solid rgba(99, 245, 143, 0.08);
}

.gaming-editorial-head {
    max-width: 850px;
    margin-bottom: 70px;
}

.gaming-editorial-head h2 {
    font-size: clamp(38px, 5.5vw, 64px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.gaming-editorial-head h2 span {
    display: block;
    color: #63f58f;
}

.gaming-editorial-head > p:last-child {
    max-width: 760px;
    color: #95a199;
    font-size: 17px;
    line-height: 1.8;
}

.gaming-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.gaming-editorial-grid article {
    padding: 35px;
    border-radius: 16px;

    border: 1px solid rgba(99, 245, 143, 0.25);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(99, 245, 143, 0.05),
            transparent 28%
        ),
        #09140e;
}

.editorial-inline-link {
    color: #b9f8cb;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(99, 245, 143, 0.45);
    text-underline-offset: 4px;

    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}

.editorial-inline-link:hover {
    color: #63f58f;
    text-decoration-color: #63f58f;
}

.editorial-number {
    display: inline-block;
    color: #63f58f;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;

    margin-bottom: 28px;
}

.gaming-editorial-grid h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.gaming-editorial-grid p {
    color: #87938b;
    font-size: 15px;
    line-height: 1.8;
}

.gaming-editorial-grid p + p {
    margin-top: 18px;
}

.gaming-editorial-footer {
    margin-top: 22px;
    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-radius: 16px;
    border: 1px solid rgba(99, 245, 143, 0.30);

    background: #07100b;
}

.gaming-editorial-footer h3 {
    font-size: 25px;
}

.gaming-editorial-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 500px;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .game-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .update-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-wrap {
        min-height: 68px;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        top: 68px;
        width: 100%;
        padding: 25px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        background: #060b08;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 65px 0;
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(50px, 15vw, 72px);
        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .visual-main {
        position: relative;
        left: auto;
        top: auto;
        width: min(300px, 88%);
        min-height: 355px;
        margin: 0 auto;
        padding: 20px;
        transform: rotate(0deg);
    }

    .visual-center {
        min-height: 220px;
    }

    .visual-center img {
        width: 145px;
    }

    .floating-card {
        display: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 38px;
    }

    .featured-games,
    .categories,
    .experience,
    .latest-update {
        padding: 72px 0;
    }

    .game-grid,
    .category-grid,
    .update-grid {
        grid-template-columns: 1fr;
    }

    .game-art,
    .game-art img {
        min-height: 220px;
        height: 220px;
    }

    .category-card {
        min-height: auto;
        padding: 20px 22px;
    }

    .category-number {
        margin-bottom: 14px;
    }

    .category-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
        border-radius: 12px;
    }

    .category-icon svg {
        width: 22px;
        height: 22px;
    }

    .category-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .category-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .experience-list article {
        grid-template-columns: 36px 48px 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .experience-icon {
        width: 44px;
        height: 44px;
    }

    .experience-icon svg {
        width: 22px;
        height: 22px;
    }

    .update-thumb {
        height: 230px;
    }

    .cta-panel {
        min-height: auto;
        padding: 34px 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        flex-direction: column;
    }


    .games-hero {
    padding: 90px 0 70px;
}

.games-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
}

.games-library {
    padding: 72px 0;
}

.games-library-grid {
    grid-template-columns: 1fr;
}

.library-image {
    height: 230px;
}

.library-content {
    padding: 24px;
}

.game-detail-section {
    padding: 70px 0;
}

.game-detail {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 35px 0;
}

.detail-number {
    font-size: 26px;
}

.update-page-hero {
    padding: 90px 0 70px;
}

.update-page-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
    letter-spacing: -3px;
}

.update-featured {
    padding: 70px 0;
}

.update-featured-card {
    grid-template-columns: 1fr;
}

.update-featured-image {
    height: 260px;
}

.update-featured-image img {
    min-height: 260px;
}

.update-featured-content {
    padding: 28px 24px;
}

.update-library {
    padding: 70px 0;
}

.update-page-grid {
    grid-template-columns: 1fr;
}

.update-page-image {
    height: 230px;
}

.update-topics {
    padding: 70px 0;
}

.update-topic-list article {
    grid-template-columns: 40px 1fr;
    gap: 15px;

    padding: 28px 0;
}

.about-page-hero {
    padding: 90px 0 70px;
}

.about-page-hero h1 {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: -3px;
}

.about-intro {
    padding: 72px 0;
}

.about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-pillars {
    padding: 72px 0;
}

.about-pillar-grid {
    grid-template-columns: 1fr;
}

.about-pillar-card {
    min-height: auto;
    padding: 24px;
}

.about-structure {
    padding: 72px 0;
}

.about-structure-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-structure-list article {
    grid-template-columns: 35px 1fr;
    gap: 14px;
    padding: 24px 0;
}

.gaming-editorial {
    padding: 72px 0;
}

.gaming-editorial-head {
    margin-bottom: 45px;
}

.gaming-editorial-head h2 {
    font-size: clamp(36px, 11vw, 52px);
}

.gaming-editorial-grid {
    grid-template-columns: 1fr;
}

.gaming-editorial-grid article {
    padding: 25px 22px;
}

.gaming-editorial-grid h3 {
    font-size: 21px;
}

.gaming-editorial-grid p {
    font-size: 14px;
}

.gaming-editorial-footer {
    padding: 25px 22px;
    flex-direction: column;
    align-items: flex-start;
}

.gaming-editorial-links {
    flex-direction: column;
    gap: 12px;
}

}