/* ================================
   DEWA33 HEADER + LOGIN / DAFTAR
   Navy / Black / Gold Theme
================================ */

.vc-header-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* BUTTON CONTAINER */
.n-columns-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(105px, 1fr));
    gap: 12px;
    width: 100%;
    margin: 0 auto;
    font-weight: 600;
}

.n-columns-2 a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    margin: 0;
    overflow: hidden;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.4px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 3px;

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


/* ================================
   LOGIN
   Silver / Light Grey
================================ */

.login,
.login-button {
    color: #252525;

    background: linear-gradient(
        180deg,
        #e2e5ea 0%,
        #c9cdd3 100%
    );

    border: 1px solid #d7dbe1;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.18);
}

.login:hover,
.login-button:hover {
    color: #111111;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #d8dce2 100%
    );

    border-color: #ffffff;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.26);

    transform: translateY(-2px);
}

.login:active,
.login-button:active {
    transform: translateY(0);

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.2);
}


/* ================================
   REGISTER / DAFTAR
   DEWA33 MUTED GOLD
================================ */

.register,
.register-button {
    color: #ffffff;

    background: linear-gradient(
        180deg,
        #b2923f 0%,
        #92752e 100%
    );

    border: 1px solid #b49647;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.2);
}

.register:hover,
.register-button:hover {
    color: #ffffff;

    background: linear-gradient(
        180deg,
        #c5a651 0%,
        #a68636 100%
    );

    border-color: #d1b25d;

    box-shadow:
        0 5px 16px rgba(176, 143, 54, 0.28);

    transform: translateY(-2px);
}

.register:active,
.register-button:active {
    transform: translateY(0);

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.22);
}


/* ================================
   SUBTLE HOVER LIGHT
================================ */

.login::before,
.register::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.55s ease;

    pointer-events: none;
}

.login:hover::before,
.register:hover::before {
    left: 140%;
}


/* ================================
   BUTTON TEXT
================================ */

.login span,
.register span {
    position: relative;
    z-index: 2;

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

    transition: transform 0.25s ease;
}

.login:hover span,
.register:hover span {
    transform: translateY(-1px);
}


/* ================================
   OPTIONAL TOP HEADER COLOR
   Matches Screenshot
================================ */

.vc-header,
.header-top,
.top-header {
    background: #21395e;
}


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

.main-menu,
.main-navigation,
.navbar-menu {
    background: #050505;
}


/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .n-columns-2 {
        gap: 9px;
        grid-template-columns: repeat(2, 1fr);
    }

    .n-columns-2 a {
        min-height: 44px;
        padding: 11px 15px;
        font-size: 13px;
    }
}


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

@media (max-width: 480px) {

    .n-columns-2 {
        gap: 7px;
    }

    .n-columns-2 a {
        min-height: 40px;
        padding: 10px 8px;

        font-size: 12px;
        letter-spacing: 0.2px;

        border-radius: 2px;
    }
}

/* =========================================
       DEWA33 CONTENT SYSTEM
       Navy / Black / Antique Gold / Silver
    ========================================== */

    .dewa-content {
        --dewa-navy: #1f3658;
        --dewa-navy-dark: #152944;
        --dewa-black: #07090d;
        --dewa-black-soft: #10141b;
        --dewa-card: #151a23;
        --dewa-gold: #a88a3d;
        --dewa-gold-light: #cfb45f;
        --dewa-silver: #c9ced7;
        --dewa-white: #f5f6f8;
        --dewa-muted: #9ba4b2;
        --dewa-line: rgba(255, 255, 255, 0.08);

        width: 100%;
        padding: 50px 20px 60px;
        background:
            radial-gradient(circle at top right, rgba(31, 54, 88, 0.40), transparent 35%),
            linear-gradient(180deg, #0a0d12 0%, #07090d 100%);
        color: var(--dewa-white);
        font-family: Arial, Helvetica, sans-serif;
        box-sizing: border-box;
    }

    .dewa-content *,
    .dewa-content *::before,
    .dewa-content *::after {
        box-sizing: border-box;
    }

    .dewa-shell {
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
    }

    /* =========================================
       ARTICLE
    ========================================== */

    .dewa-article {
        position: relative;
        padding: 42px 44px;
        background: linear-gradient(
            135deg,
            rgba(31, 54, 88, 0.42),
            rgba(12, 15, 21, 0.96) 48%
        );
        border-top: 3px solid var(--dewa-gold);
        border-bottom: 1px solid var(--dewa-line);
        overflow: hidden;
    }

    .dewa-article::after {
        content: "DEWA33";
        position: absolute;
        right: -10px;
        top: 10px;
        font-size: 92px;
        font-weight: 900;
        letter-spacing: -5px;
        color: rgba(255, 255, 255, 0.025);
        pointer-events: none;
    }

    .dewa-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 17px;
        color: var(--dewa-gold-light);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .dewa-label::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--dewa-gold);
    }

    .dewa-article h1 {
        position: relative;
        z-index: 2;
        max-width: 950px;
        margin: 0 0 30px;
        color: #ffffff;
        font-size: clamp(28px, 4vw, 46px);
        font-weight: 800;
        line-height: 1.16;
        letter-spacing: -1px;
    }

    .dewa-article h1 span {
        color: var(--dewa-gold-light);
    }

    .dewa-description {
        position: relative;
        z-index: 2;
        max-width: 1050px;
    }

    .dewa-description p {
        margin: 0 0 21px;
        color: #d4d8df;
        font-size: 16px;
        line-height: 1.8;
    }

    .dewa-description p:last-child {
        margin-bottom: 0;
    }

    .dewa-description a {
        color: var(--dewa-gold-light);
        font-weight: 700;
        text-decoration: none;
        transition: color 0.25s ease;
    }

    .dewa-description a:hover {
        color: #ffffff;
    }


    /* =========================================
       GAME SYSTEM STRIP
    ========================================== */

    .dewa-systems {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-top: 1px;
        background: var(--dewa-navy-dark);
        border-bottom: 3px solid var(--dewa-gold);
    }

    .dewa-system {
        padding: 25px 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        text-align: center;
        transition:
            background 0.25s ease,
            transform 0.25s ease;
    }

    .dewa-system:last-child {
        border-right: 0;
    }

    .dewa-system:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .dewa-system-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin: 0 auto 12px;
        color: var(--dewa-gold-light);
        border: 1px solid rgba(207, 180, 95, 0.4);
        font-size: 20px;
    }

    .dewa-system-title {
        margin-bottom: 5px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .dewa-system-text {
        color: #9da7b5;
        font-size: 12px;
        line-height: 1.5;
    }


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

    .dewa-section {
        margin-top: 50px;
    }

    .dewa-section-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(168, 138, 61, 0.35);
    }

    .dewa-section-heading {
        margin: 0;
        color: #ffffff;
        font-size: 27px;
        font-weight: 800;
        line-height: 1.2;
    }

    .dewa-section-heading span {
        color: var(--dewa-gold-light);
    }

    .dewa-section-note {
        color: #7f8998;
        font-size: 12px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }


    /* =========================================
       REVIEWS
    ========================================== */

    .dewa-reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .dewa-review {
        position: relative;
        min-height: 230px;
        padding: 25px;
        background: #10151d;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-bottom: 2px solid rgba(168, 138, 61, 0.55);
        transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            background 0.25s ease;
    }

    .dewa-review:hover {
        transform: translateY(-4px);
        background: #141a24;
        border-color: rgba(207, 180, 95, 0.4);
    }

    .dewa-review-top {
        display: flex;
        align-items: center;
        gap: 13px;
        margin-bottom: 18px;
    }

    .dewa-avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        background: var(--dewa-navy);
        border: 1px solid rgba(207, 180, 95, 0.5);
        color: var(--dewa-gold-light);
        font-size: 13px;
        font-weight: 800;
    }

    .dewa-reviewer-name {
        margin-bottom: 4px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 700;
    }

    .dewa-reviewer-type {
        color: #858f9e;
        font-size: 11px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .dewa-rating {
        margin-bottom: 13px;
        color: var(--dewa-gold-light);
        font-size: 14px;
        letter-spacing: 2px;
    }

    .dewa-review-text {
        margin: 0;
        color: #bbc2cc;
        font-size: 14px;
        line-height: 1.7;
    }


    /* =========================================
       FAQ
    ========================================== */

    .dewa-faq {
        background: #0d1118;
        border-top: 3px solid var(--dewa-gold);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dewa-faq-item {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .dewa-faq-item:last-child {
        border-bottom: 0;
    }

    .dewa-faq-question {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 64px;
        padding: 18px 65px 18px 22px;
        color: #e9ebef;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.45;
        cursor: pointer;
        list-style: none;
        transition:
            background 0.25s ease,
            color 0.25s ease;
    }

    .dewa-faq-question::-webkit-details-marker {
        display: none;
    }

    .dewa-faq-question::after {
        content: "+";
        position: absolute;
        right: 22px;
        top: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 27px;
        height: 27px;
        transform: translateY(-50%);
        border: 1px solid var(--dewa-gold);
        color: var(--dewa-gold-light);
        font-size: 18px;
        font-weight: 400;
        transition:
            background 0.25s ease,
            color 0.25s ease,
            transform 0.25s ease;
    }

    .dewa-faq-item[open] .dewa-faq-question {
        background: var(--dewa-navy-dark);
        color: #ffffff;
    }

    .dewa-faq-item[open] .dewa-faq-question::after {
        content: "−";
        background: var(--dewa-gold);
        color: #0b0d11;
    }

    .dewa-faq-answer {
        padding: 0 70px 21px 22px;
        background: #0b0f15;
    }

    .dewa-faq-answer p {
        margin: 0;
        padding-top: 17px;
        color: #aeb6c2;
        font-size: 14px;
        line-height: 1.75;
    }


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

    @media (max-width: 900px) {
        .dewa-reviews-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .dewa-systems {
            grid-template-columns: repeat(2, 1fr);
        }

        .dewa-system:nth-child(2) {
            border-right: 0;
        }

        .dewa-system:nth-child(1),
        .dewa-system:nth-child(2) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }
    }

    @media (max-width: 620px) {
        .dewa-content {
            padding: 25px 12px 40px;
        }

        .dewa-article {
            padding: 28px 20px;
        }

        .dewa-article::after {
            display: none;
        }

        .dewa-article h1 {
            font-size: 28px;
        }

        .dewa-description p {
            font-size: 15px;
            line-height: 1.7;
        }

        .dewa-reviews-grid {
            grid-template-columns: 1fr;
        }

        .dewa-section-header {
            align-items: flex-start;
            flex-direction: column;
            gap: 8px;
        }

        .dewa-section-heading {
            font-size: 23px;
        }

        .dewa-system {
            padding: 20px 12px;
        }

        .dewa-faq-question {
            padding: 16px 55px 16px 16px;
            font-size: 13px;
        }

        .dewa-faq-question::after {
            right: 15px;
        }

        .dewa-faq-answer {
            padding: 0 16px 18px;
        }
    }

    /* =========================================
       DEWA33 FLOATING BOTTOM NAVIGATION
    ========================================== */

    .footer-floating-DEWA33 {
        position: fixed;
        left: 50%;
        bottom: 16px;
        z-index: 9999;

        display: grid;
        grid-template-columns: repeat(5, minmax(105px, 1fr));

        width: calc(100% - 32px);
        max-width: 760px;

        background:
            linear-gradient(
                180deg,
                rgba(31, 54, 88, 0.98) 0%,
                rgba(12, 18, 28, 0.99) 100%
            );

        border: 1px solid rgba(207, 180, 95, 0.35);
        border-top: 2px solid #a88a3d;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.55),
            0 0 25px rgba(168, 138, 61, 0.08);

        transform: translateX(-50%);
        overflow: hidden;
    }


    /* EACH BUTTON */

    .footer-btn-DEWA33 {
        position: relative;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;

        min-height: 70px;
        padding: 10px 8px;

        color: #d8dde5;
        background: transparent;

        border-right: 1px solid rgba(255, 255, 255, 0.07);

        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;

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

    .footer-btn-DEWA33:last-child {
        border-right: 0;
    }


    /* ICON */

    .footer-btn-DEWA33 img {
        width: 25px;
        height: 25px;
        object-fit: contain;

        filter:
            drop-shadow(0 2px 3px rgba(0, 0, 0, 0.45));

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


    /* HOVER */

    .footer-btn-DEWA33:hover {
        color: #ffffff;

        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.055),
                rgba(255, 255, 255, 0.015)
            );
    }

    .footer-btn-DEWA33:hover img {
        transform: translateY(-2px) scale(1.06);
    }


    /* =========================================
       PROMO
    ========================================== */

    .footer-btn-DEWA33.promo {
        color: #d9dee6;
    }

    .footer-btn-DEWA33.promo::before {
        content: "HOT";
        position: absolute;
        top: 5px;
        right: 8px;

        padding: 2px 5px;

        color: #ffffff;
        background: #b22d2d;

        font-size: 8px;
        font-weight: 800;
        line-height: 1;

        border-radius: 2px;
    }


    /* =========================================
       LOGIN
    ========================================== */

    .footer-btn-DEWA33.login-footer {
        color: #e4e7eb;

        background:
            linear-gradient(
                180deg,
                rgba(210, 216, 224, 0.11),
                rgba(210, 216, 224, 0.03)
            );
    }


    /* =========================================
       DAFTAR - MAIN CTA
    ========================================== */

    .footer-btn-DEWA33.daftar {
        color: #ffffff;

        background:
            linear-gradient(
                180deg,
                #af9348 0%,
                #88702e 100%
            );

        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .footer-btn-DEWA33.daftar:hover {
        color: #ffffff;

        background:
            linear-gradient(
                180deg,
                #c5aa5a 0%,
                #9b7d34 100%
            );
    }

    .footer-btn-DEWA33.daftar img {
        filter:
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45))
            brightness(1.1);
    }


    /* =========================================
       LINK ALTERNATIF
    ========================================== */

    .footer-btn-DEWA33.link {
        color: #d5dae2;
    }


    /* =========================================
       LIVE CHAT
    ========================================== */

    .footer-btn-DEWA33.chat {
        color: #d5dae2;
    }

    .footer-btn-DEWA33.chat::after {
        content: "";
        position: absolute;
        top: 10px;
        right: 16px;

        width: 7px;
        height: 7px;

        background: #5ecb76;
        border: 2px solid #14243a;
        border-radius: 50%;

        box-shadow: 0 0 7px rgba(94, 203, 118, 0.8);
    }


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

    @media (max-width: 600px) {

        .footer-floating-DEWA33 {
            left: 0;
            bottom: 0;

            width: 100%;
            max-width: none;

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

            border-left: 0;
            border-right: 0;
            border-bottom: 0;

            transform: none;
        }

        .footer-btn-DEWA33 {
            min-height: 61px;

            padding: 8px 3px;

            gap: 4px;

            font-size: 9px;
            letter-spacing: 0;
        }

        .footer-btn-DEWA33 img {
            width: 22px;
            height: 22px;
        }

        .footer-btn-DEWA33.promo::before {
            top: 4px;
            right: 3px;

            padding: 2px 3px;

            font-size: 6px;
        }

        .footer-btn-DEWA33.chat::after {
            top: 6px;
            right: 9px;

            width: 6px;
            height: 6px;
        }
    }