/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: #d4c1a8;
    color: #171717;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: relative;
    z-index: 100;

    width: 100%;
    height: 92px;

    background: rgba(250, 246, 239, 0.97);

    border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.navbar-container {
    width: min(1480px, calc(100% - 80px));
    height: 100%;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    justify-self: start;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #171717;
}

.brand-logo {
    display: block;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    object-fit: cover;

    flex-shrink: 0;
}

.brand-name {
    display: flex;
    flex-direction: column;

    gap: 2px;

    line-height: 1;
}

.brand-name-top,
.brand-name-bottom {
    font-size: 16px;
    font-weight: 800;

    letter-spacing: 2px;

    white-space: nowrap;
}

.brand-divider {
    width: 1px;
    height: 40px;

    margin-left: 2px;
    margin-right: 2px;

    background: rgba(23, 23, 23, 0.42);
}

.brand-hub {
    color: #4164a5;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 3px;

    white-space: nowrap;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-menu {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 58px;
}

.nav-link {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 180ms ease;
}

.nav-link:hover {
    color: #26619b;
}

.nav-link.active {
    color: #26619b;
}

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 17px;

    height: 2px;

    background: #26619b;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    justify-self: end;

    display: flex;
    align-items: center;

    gap: 32px;
}


/* LANGUAGE */

.language-switch {
    display: flex;
    align-items: center;

    gap: 10px;
}

.language-switch span {
    width: 1px;
    height: 15px;

    background: rgba(0, 0, 0, 0.3);
}

.language {
    border: 0;
    background: transparent;

    cursor: pointer;

    color: #444;

    font-size: 13px;
    font-weight: 600;
}

.language.active {
    color: #26619b;
}


/* DISCORD BUTTON */

.discord-button,
.hero-discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #26619b;
    color: white;

    border-radius: 6px;

    font-weight: 800;

    transition:
        transform 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.discord-button {
    min-height: 48px;

    padding: 0 23px;

    font-size: 13px;
}

.discord-button:hover,
.hero-discord-button:hover {
    background: #1e4e81;

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(38, 97, 155, 0.24);
}

.discord-icon {
    display: block;

    width: 22px;
    height: 22px;

    object-fit: contain;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: calc(100vh - 92px);

    min-height: 680px;
    max-height: 940px;

    overflow: hidden;

    background: #111;
}


/* =========================================================
   HERO SLIDESHOW
========================================================= */

.hero-slideshow,
.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.hero-slide {
    opacity: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.035);

    transition:
        opacity 1.4s ease,
        transform 8s ease;
}

.hero-slide.active {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(5, 15, 24, 0.93) 0%,
            rgba(5, 15, 24, 0.76) 25%,
            rgba(5, 15, 24, 0.38) 48%,
            rgba(5, 15, 24, 0.08) 70%,
            rgba(5, 15, 24, 0.02) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 12, 18, 0.45) 0%,
            rgba(5, 12, 18, 0) 42%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-container {
    position: relative;

    z-index: 5;

    width: min(1480px, calc(100% - 110px));
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;

    width: min(590px, 48vw);
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: white;
}

.hero-eyebrow {
    color: #ed6421;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.hero-small-line {
    width: 31px;
    height: 2px;

    margin-top: 18px;
    margin-bottom: 19px;

    background: #ed6421;
}

.hero-title {
    font-size: clamp(48px, 4.1vw, 72px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 900;
}

.hero-title span {
    display: block;

    margin-top: 6px;

    color: #26619b;
}

.hero-title-line {
    width: 31px;
    height: 2px;

    margin-top: 23px;
    margin-bottom: 19px;

    background: #ed6421;
}

.hero-description {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 17px;
    line-height: 1.75;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-discord-button {
    min-height: 58px;

    margin-top: 31px;

    padding: 0 27px;

    font-size: 14px;
}

.hero-copyright {
    margin-top: 42px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}


/* =========================================================
   HERO INDICATORS
========================================================= */

.hero-indicators {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 27px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 9px;
}

.hero-indicator {
    width: 26px;
    height: 3px;

    border: 0;

    background: rgba(255, 255, 255, 0.4);

    cursor: pointer;

    transition:
        width 200ms ease,
        background 200ms ease;
}

.hero-indicator.active {
    width: 43px;

    background: white;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .navbar-container {
        width: calc(100% - 40px);

        grid-template-columns: 1fr auto;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        gap: 15px;
    }

    .hero-container {
        width: calc(100% - 50px);
    }

    .hero-content {
        width: min(590px, 80vw);
    }

}


/* =========================================================
   MOBILE NAVBAR + HOMEPAGE HERO
========================================================= */

.mobile-menu-toggle,
.mobile-menu {
    display: none;
}


@media (max-width: 768px) {

    body {
        background: #faf6ef;
    }


    /* =========================
       NAVBAR
    ========================= */

    .navbar {
        height: 72px;
    }

    .navbar-container {
        width: calc(100% - 28px);

        display: flex;
        align-items: center;

        gap: 12px;
    }

    .brand {
        flex: 1;

        min-width: 0;

        gap: 8px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        gap: 1px;
    }

    .brand-name-top,
    .brand-name-bottom {
        font-size: 11px;

        letter-spacing: 1.15px;
    }

    .brand-divider {
        height: 30px;

        margin-left: 1px;
        margin-right: 1px;
    }

    .brand-hub {
        font-size: 13px;

        letter-spacing: 2px;
    }


    /* desktop navigation hidden */

    .nav-menu {
        display: none;
    }

    .language-switch {
        display: none;
    }


    /* actions */

    .nav-actions {
        justify-self: auto;

        gap: 6px;

        flex-shrink: 0;
    }

    .music-toggle {
        width: 34px;
        height: 34px;
    }

    .discord-button {
        display: none;
    }


    /* hamburger */

    .mobile-menu-toggle {
        width: 34px;
        height: 34px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        padding: 0;

        border: 0;
        background: transparent;

        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;

        display: block;

        background: #171717;

        border-radius: 10px;

        transition:
            transform 180ms ease,
            opacity 180ms ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* =========================
       MOBILE MENU
    ========================= */

    .mobile-menu {
        position: absolute;

        z-index: 99;

        top: 72px;
        left: 0;
        right: 0;

        display: none;

        padding: 18px 20px 22px;

        background: rgba(250, 246, 239, 0.99);

        border-bottom:
            1px solid rgba(20, 20, 20, 0.08);

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-nav a {
        padding: 13px 2px;

        color: #171717;

        font-size: 14px;
        font-weight: 700;

        border-bottom:
            1px solid rgba(0, 0, 0, 0.06);
    }

    .mobile-language {
        display: flex;
        align-items: center;

        gap: 10px;

        margin-top: 17px;
    }

    .mobile-language span {
        width: 1px;
        height: 15px;

        background: rgba(0, 0, 0, 0.3);
    }


    /* =========================
       HOMEPAGE HERO
    ========================= */

    .hero {
        height: calc(100svh - 72px);

        min-height: 600px;
        max-height: none;
    }

    .hero-slide {
        background-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 15, 24, 0.93) 0%,
                rgba(5, 15, 24, 0.73) 64%,
                rgba(5, 15, 24, 0.30) 100%
            ),
            linear-gradient(
                0deg,
                rgba(5, 12, 18, 0.72) 0%,
                rgba(5, 12, 18, 0.05) 60%
            );
    }

    .hero-container {
        width: calc(100% - 38px);

        align-items: center;

        padding: 0;
    }

    .hero-content {
        width: 100%;
        height: auto;

        display: block;
    }

    .hero-eyebrow {
        font-size: 11px;

        letter-spacing: 1.1px;
    }

    .hero-small-line {
        width: 25px;

        margin-top: 12px;
        margin-bottom: 16px;
    }

    .hero-title {
        max-width: 340px;

        font-size: clamp(38px, 12vw, 52px);

        line-height: 1.02;

        letter-spacing: -1.5px;
    }

    .hero-title span {
        margin-top: 6px;
    }

    .hero-title-line {
        width: 25px;

        margin-top: 18px;
        margin-bottom: 16px;
    }

    .hero-description {
        max-width: 360px;

        font-size: 13px;
        line-height: 1.7;
    }

    .hero-discord-button {
        width: auto;

        min-height: 48px;

        margin-top: 24px;

        padding: 0 19px;

        font-size: 11px;
    }

    .hero-discord-button .discord-icon {
        width: 19px;
        height: 19px;
    }

    .hero-copyright {
        margin-top: 26px;

        font-size: 9px;

        color: rgba(255, 255, 255, 0.55);
    }

    .hero-indicators {
        bottom: 16px;

        gap: 6px;
    }

    .hero-indicator {
        width: 19px;
    }

    .hero-indicator.active {
        width: 31px;
    }

}

/* =========================================================
   SERVER RULES PAGE
========================================================= */

.rules-hero {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.rules-hero-background {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center 52%;
    background-repeat: no-repeat;
}

.rules-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 17, 29, 0.96) 0%,
            rgba(5, 17, 29, 0.82) 26%,
            rgba(5, 17, 29, 0.38) 53%,
            rgba(5, 17, 29, 0.08) 100%
        );
}

.rules-hero-container {
    position: relative;
    z-index: 2;

    width: min(1400px, calc(100% - 120px));
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.rules-hero-content {
    width: 560px;
}


/* BREADCRUMB */

.rules-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    color: #f1b84b;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.rules-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.rules-breadcrumb a:hover {
    text-decoration: underline;
}


/* TITLE */

.rules-hero-title {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}


/* DESCRIPTION */

.rules-hero-description {
    max-width: 500px;

    margin: 0;

    color: rgba(255, 255, 255, 0.94);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   RULES CONTENT AREA
========================================================= */

.rules-page {
    width: 100%;

    background: #faf9f7;

    padding: 32px 0 70px;
}

.rules-container {
    width: min(1400px, calc(100% - 120px));

    margin: 0 auto;
}


/* NOTICE */

.rules-notice {
    width: 100%;

    min-height: 58px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 0 20px;

    border: 1px solid rgba(214, 146, 55, 0.10);
    border-radius: 10px;

    background: #f8f2eb;
}

.rules-notice-icon {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f28a16;

    color: #ffffff;

    font-size: 17px;
    font-weight: 800;
}

.rules-notice p {
    margin: 0;

    color: #85522d;

    font-size: 14px;
    line-height: 1.5;
}

/* =========================================================
   RULE LIST
========================================================= */

.rules-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-top: 22px;
}


/* =========================================================
   RULE CARD
========================================================= */

.rule-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(25, 32, 40, 0.08);
    border-radius: 11px;

    box-shadow:
        0 4px 16px rgba(20, 25, 32, 0.025);

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.rule-item {
    align-self: start;
}

.rule-item.open {
    border-color: rgba(38, 97, 155, 0.15);

    box-shadow:
        0 8px 25px rgba(38, 97, 155, 0.055);
}


/* =========================================================
   RULE HEADER
========================================================= */

.rule-header {
    width: 100%;

    min-height: 78px;

    display: grid;
    grid-template-columns: 48px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 15px 24px;

    border: 0;

    background: transparent;

    color: #171717;

    text-align: left;

    cursor: default;
}


/* Rule yang punya detail clickable */

.rule-item:has(.rule-content) .rule-header {
    cursor: pointer;
}


/* =========================================================
   NUMBER
========================================================= */

.rule-number {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: #26619b;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.3px;
}


/* =========================================================
   TITLE
========================================================= */

.rule-title {
    min-width: 0;

    color: #202020;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   CHEVRON
========================================================= */

.rule-chevron {
    color: #26619b;

    font-size: 23px;
    line-height: 1;

    transform: rotate(0deg);

    transition: transform 200ms ease;
}

.rule-item.open .rule-chevron {
    transform: rotate(180deg);
}


/* =========================================================
   EXPANDED CONTENT
========================================================= */

.rule-content {
    display: none;

    margin:
        -2px
        24px
        20px
        92px;

    padding: 18px 20px;

    border-radius: 9px;

    background: #f5f8fc;
}

.rule-item.open .rule-content {
    display: block;
}

.rule-content p {
    margin: 0;

    color: #4a5159;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   RULE LINKS
========================================================= */

.rule-links {
    display: flex;
    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

.rule-links a {
    color: #26619b;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.rule-links a:hover {
    text-decoration: underline;
}


/* =========================================================
   RULE MOBILE
========================================================= */

@media (max-width: 700px) {

    .rules-page {
        padding:
            22px
            0
            45px;
    }

    .rules-container {
        width: calc(100% - 24px);
    }

    .rules-list {
        gap: 9px;
    }

    .rule-header {
        min-height: 68px;

        grid-template-columns: 39px 1fr auto;

        gap: 13px;

        padding: 13px 14px;
    }

    .rule-number {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }

    .rule-title {
        font-size: 14px;

        line-height: 1.45;
    }

    .rule-content {
        margin:
            0
            14px
            14px
            66px;

        padding: 14px;
    }

    .rule-content p {
        font-size: 13px;
    }

}

/* =========================
   MOBILE - RULES
========================= */

@media (max-width: 900px) {
    .rules-list {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .rules-hero {
        height: 300px;
    }

    .rules-hero-container,
    .rules-container {
        width: calc(100% - 40px);
    }

    .rules-hero-title {
        font-size: 38px;
    }

    .rules-hero-description {
        font-size: 15px;
    }
}

/* =========================
   SITE FOOTER
========================= */

.site-footer {
    width: 100%;
    background: #f8f6f2;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-container {
    max-width: 1440px;
    min-height: 130px;
    margin: 0 auto;
    padding: 26px 40px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.footer-brand {
    justify-self: start;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 8px;
}

.footer-brand-logo {
    display: block;

    width: 48px;
    height: 48px;

    border-radius: 50%;
    object-fit: cover;

    flex-shrink: 0;
}

.footer-brand-name {
    display: flex;
    flex-direction: column;

    gap: 1px;

    line-height: 1;
}

.footer-brand-name span {
    color: #111;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1.8px;

    white-space: nowrap;
}

.footer-brand-divider {
    width: 1px;
    height: 38px;

    margin: 0 2px;

    background: rgba(0, 0, 0, 0.3);
}

.footer-brand-hub {
    color: #4164a5;

    font-size: 19px;
    font-weight: 800;

    letter-spacing: 3px;

    white-space: nowrap;
}

.footer-description {
    max-width: 330px;

    margin: 0;

    color: #333;

    font-size: 11px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    white-space: nowrap;
}

.footer-nav a {
    color: #111;
    font-size: 12px;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #1265c4;
}

.footer-nav span {
    color: #777;
    font-size: 10px;
}

.footer-copyright {
    justify-self: end;

    color: #444;
    font-size: 11px;
    white-space: nowrap;
}


/* FOOTER MOBILE */

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .footer-brand,
    .footer-copyright {
        justify-self: center;
    }

    .footer-brand-header {
    justify-content: center;
}

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-copyright {
        white-space: normal;
    }
}

/* =========================================================
   GUIDE PAGE
========================================================= */

.guide-hero {
    position: relative;

    width: 100%;
    height: 330px;

    overflow: hidden;
}

.guide-hero-background {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
}

.guide-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 17, 29, 0.96) 0%,
            rgba(5, 17, 29, 0.82) 27%,
            rgba(5, 17, 29, 0.4) 55%,
            rgba(5, 17, 29, 0.08) 100%
        );
}

.guide-hero-container {
    position: relative;
    z-index: 2;

    width: min(1400px, calc(100% - 120px));
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.guide-hero-content {
    width: 580px;
}

.guide-breadcrumb {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #f1b84b;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.guide-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.guide-breadcrumb a:hover {
    text-decoration: underline;
}

.guide-hero-title {
    margin: 0 0 18px;

    color: #fff;

    font-size: 48px;
    line-height: 1;

    font-weight: 800;
    letter-spacing: -1px;
}

.guide-hero-description {
    max-width: 540px;

    margin: 0;

    color: rgba(255, 255, 255, 0.94);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   GUIDE CONTENT
========================================================= */

.guide-page {
    width: 100%;

    padding: 42px 0 70px;

    background: #faf9f7;
}

.guide-container {
    width: min(1400px, calc(100% - 120px));

    margin: 0 auto;
}

.guide-section-heading {
    margin-bottom: 22px;
}

.guide-section-label {
    color: #202020;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.4px;
}


/* =========================================================
   GUIDE GRID
========================================================= */

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.guide-card {
    width: 100%;
    min-height: 150px;

    display: grid;
    grid-template-columns: 54px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 26px 28px;

    border: 1px solid rgba(25, 32, 40, 0.08);
    border-radius: 12px;

    background: #fff;

    text-align: left;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(20, 25, 32, 0.025);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.guide-card:hover {
    transform: translateY(-3px);

    border-color: rgba(38, 97, 155, 0.18);

    box-shadow:
        0 10px 30px rgba(38, 97, 155, 0.07);
}

.guide-card-number {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #26619b;

    color: #fff;

    font-size: 14px;
    font-weight: 800;
}

.guide-card-content h2 {
    margin: 0 0 8px;

    color: #171717;

    font-size: 19px;
    font-weight: 800;
}

.guide-card-content p {
    max-width: 470px;

    margin: 0;

    color: #555;

    font-size: 14px;
    line-height: 1.6;
}

.guide-card-arrow {
    color: #26619b;

    font-size: 30px;

    transition:
        transform 180ms ease;
}

.guide-card:hover .guide-card-arrow {
    transform: translateX(5px);
}


/* =========================================================
   GUIDE RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .guide-hero {
        height: 300px;
    }

    .guide-hero-container,
    .guide-container {
        width: calc(100% - 40px);
    }

    .guide-hero-title {
        font-size: 38px;
    }

    .guide-hero-description {
        font-size: 15px;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .guide-page {
        padding: 28px 0 45px;
    }

    .guide-container {
        width: calc(100% - 24px);
    }

    .guide-card {
        min-height: 125px;

        grid-template-columns: 42px 1fr auto;

        gap: 14px;

        padding: 20px 18px;
    }

    .guide-card-number {
        width: 40px;
        height: 40px;

        font-size: 12px;
    }

    .guide-card-content h2 {
        font-size: 16px;
    }

    .guide-card-content p {
        font-size: 12px;
    }

    .guide-card-arrow {
        font-size: 24px;
    }

}

/* =========================================================
   GUIDE DETAIL
========================================================= */

.guide-card.active {
    border-color: rgba(38, 97, 155, 0.45);

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f9ff 100%
        );

    box-shadow:
        0 10px 30px rgba(38, 97, 155, 0.08);
}

.guide-card.active .guide-card-arrow {
    transform: translateX(5px);
}


/* DETAIL CONTAINER */

.guide-detail {
    margin-top: 40px;

    padding-top: 40px;

    border-top:
        1px solid rgba(20, 30, 40, 0.1);

    scroll-margin-top: 110px;
}

.guide-detail[hidden] {
    display: none;
}


/* DETAIL HEADER */

.guide-detail-header {
    display: grid;

    grid-template-columns: 64px 1fr;

    gap: 22px;

    align-items: start;

    margin-bottom: 24px;
}

.guide-detail-number {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #26619b;

    color: #fff;

    font-size: 17px;
    font-weight: 800;
}

.guide-detail-heading {
    max-width: 760px;
}

.guide-detail-label {
    display: block;

    margin-bottom: 7px;

    color: #26619b;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.guide-detail-heading h2 {
    margin: 0 0 8px;

    color: #151515;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 800;
}

.guide-detail-heading p {
    margin: 0;

    color: #555;

    font-size: 14px;
    line-height: 1.7;
}


/* DETAIL ITEMS */

.guide-detail-list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.guide-detail-item {
    min-height: 180px;

    padding: 24px;

    border:
        1px solid rgba(25, 32, 40, 0.08);

    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 4px 16px rgba(20, 25, 32, 0.025);
}

.guide-detail-item-index {
    margin-bottom: 25px;

    color: #26619b;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.guide-detail-item-content h3 {
    margin: 0 0 10px;

    color: #171717;

    font-size: 17px;
    font-weight: 800;
}

.guide-detail-item-content p {
    margin: 0;

    color: #555;

    font-size: 13px;
    line-height: 1.65;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .guide-detail-list {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .guide-detail {
        margin-top: 30px;
        padding-top: 30px;
    }

    .guide-detail-header {
        grid-template-columns: 48px 1fr;

        gap: 15px;
    }

    .guide-detail-number {
        width: 46px;
        height: 46px;

        font-size: 13px;
    }

    .guide-detail-heading h2 {
        font-size: 23px;
    }

    .guide-detail-item {
        min-height: auto;
    }

}

/* =========================================================
   BACKGROUND MUSIC CONTROL
========================================================= */

.music-toggle {
    position: relative;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: transparent;

    color: #26619b;

    cursor: pointer;

    transition:
        background 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.music-toggle:hover {
    background: rgba(38, 97, 155, 0.08);
}

.music-toggle:active {
    transform: scale(0.94);
}

.music-icon {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;

    user-select: none;
}

.music-off {
    display: none;
}

.music-toggle.muted {
    color: #777;
}

.music-toggle.muted .music-on {
    display: none;
}

.music-toggle.muted .music-off {
    display: block;

    position: relative;
}

.music-toggle.muted .music-off::after {
    content: "";

    position: absolute;

    width: 22px;
    height: 2px;

    top: 50%;
    left: 50%;

    background: currentColor;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);

    border-radius: 10px;
}

/* =========================================================
   MOBILE INNER PAGES
========================================================= */

@media (max-width: 768px) {

    /* RULES HERO */

    .rules-hero,
    .guide-hero {
        height: 250px;
    }

    .rules-hero-background,
    .guide-hero-background {
        background-position: 60% center;
    }

    .rules-hero-overlay,
    .guide-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 17, 29, 0.94) 0%,
                rgba(5, 17, 29, 0.72) 72%,
                rgba(5, 17, 29, 0.35) 100%
            );
    }

    .rules-hero-container,
    .guide-hero-container {
        width: calc(100% - 36px);
    }

    .rules-hero-content,
    .guide-hero-content {
        width: 100%;
    }

    .rules-breadcrumb,
    .guide-breadcrumb {
        margin-bottom: 14px;

        font-size: 10px;
    }

    .rules-hero-title,
    .guide-hero-title {
        margin-bottom: 12px;

        font-size: 34px;
    }

    .rules-hero-description,
    .guide-hero-description {
        max-width: 340px;

        font-size: 12px;
        line-height: 1.65;
    }


    /* RULES */

    .rules-container,
    .guide-container {
        width: calc(100% - 24px);
    }

    .rules-notice {
        min-height: 50px;

        gap: 11px;

        padding: 10px 13px;
    }

    .rules-notice-icon {
        width: 24px;
        height: 24px;

        font-size: 14px;
    }

    .rules-notice p {
        font-size: 11px;
    }

    .rules-list {
        grid-template-columns: 1fr;

        gap: 9px;

        margin-top: 14px;
    }

    .rule-header {
        min-height: 62px;

        grid-template-columns: 36px 1fr auto;

        gap: 11px;

        padding: 11px 12px;
    }

    .rule-number {
        width: 35px;
        height: 35px;

        border-radius: 7px;

        font-size: 11px;
    }

    .rule-title {
        font-size: 12px;
        line-height: 1.45;
    }

    .rule-content {
        margin:
            0
            12px
            12px
            58px;

        padding: 12px;
    }

    .rule-content p {
        font-size: 11px;
    }


    /* GUIDE */

    .guide-page {
        padding: 26px 0 42px;
    }

    .guide-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .guide-card {
        min-height: 110px;

        grid-template-columns:
            42px
            1fr
            auto;

        gap: 12px;

        padding: 17px 16px;
    }

    .guide-card-number {
        width: 40px;
        height: 40px;

        font-size: 11px;
    }

    .guide-card-content h2 {
        margin-bottom: 5px;

        font-size: 15px;
    }

    .guide-card-content p {
        font-size: 11px;
        line-height: 1.5;
    }

    .guide-card-arrow {
        font-size: 21px;
    }


    /* FOOTER */

    .footer-container {
        min-height: auto;

        padding: 28px 18px;

        gap: 24px;
    }

    .footer-brand-logo {
        width: 42px;
        height: 42px;
    }

    .footer-brand-name span {
        font-size: 12px;
    }

    .footer-brand-divider {
        height: 32px;
    }

    .footer-brand-hub {
        font-size: 15px;
    }

    .footer-description {
        max-width: 290px;

        font-size: 10px;
    }

    .footer-nav {
        gap: 9px 13px;
    }

    .footer-nav a {
        font-size: 10px;
    }

    .footer-copyright {
        font-size: 9px;
    }

}