/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /**
     * COLORS
     */

    /* BACKGROUND */
    --bg-dark-purple: #1f2628;
    /* background utama */
    --bg-oxford-blue: rgb(12 26 15 / 78%);
    --bg-oxford-blue-alpha-95: rgba(255, 255, 255, 0.10);
    --bg-oxford-blue-alpha-90: rgb(12 18 6 / 66%);
    --bg-oxford-blue-alpha-80: rgba(255, 255, 255, 0.06);

    /* ACCENT & BRAND */
    --bg-purple: #c9a66b;
    /* GOLD */
    --bg-purple-alpha-30: rgba(201, 166, 107, 0.25);

    /* TEXT */
    --text-white: #e3e3e3;
    --text-gainsboro: #dfe4e6;
    --text-purple: #c9a66b;
    --text-champagne-pink: #7ba5a1;

    /* BORDER */
    --border-space-cadet: rgba(255, 255, 255, 0.08);
    --border-purple-alpha-30: rgba(201, 166, 107, 0.25);

    /* GRADIENT BUTTON */
    --gradient-1: linear-gradient(135deg, #c9a66b, #0a1010);
    --gradient-2: linear-gradient(90deg, transparent 0%, #c9a66b 50%, transparent 100%);

    /**
     * TYPOGRAPHY
     */

    /* font family */
    --fontFamily-oxanium: 'Oxanium', cursive;
    --fontFamily-work-sans: 'Work Sans', sans-serif;

    /* font size */
    --fontSize-1: 3.6rem;
    --fontSize-2: 2.4rem;
    --fontSize-3: 2rem;
    --fontSize-4: 1.7rem;
    --fontSize-5: 1.6rem;
    --fontSize-6: 1.5rem;
    --fontSize-7: 1.4rem;
    --fontSize-8: 1.2rem;

    /* font weight */
    --weight-regular: 400;
    --weight-semiBold: 600;
    --weight-bold: 700;

    /**
     * SPACING
     */

    --section-spacing: 60px;

    /**
     * BOX SHADOW
     */

    --shadow: 0px 2px 5px 0px hsla(0, 0%, 0%, 0.2);

    /**
     * BORDER RADIUS
     */

    --radius-circle: 50%;
    --radius-5: 5px;
    --radius-3: 3px;

    /**
     * CLIP PATH
     */

    --clip-path-1: polygon(0 0, 100% 0, 100% 0, 0 0);
    --clip-path-2: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    --clip-path-3: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    --clip-path-4: polygon(90% 0, 100% 40%, 100% 100%, 0 100%, 0 0);
    --clip-path-5: polygon(100% 0, 100% 100%, 10% 100%, 0 60%, 0 0);
    --clip-path-6: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
    --clip-path-7: polygon(100% 0, 100% 60%, 90% 100%, 0 100%, 0 0);
    --clip-path-8: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
    --clip-path-9: polygon(0 0, 90% 0, 100% 100%, 0% 100%);

    /**
     * TRANSITION
     */

    --transition-1: 250ms ease;
    --transition-2: 500ms ease;
    --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}

body::before {
    background-color: var(--bg-dark-purple);
    background-image: url("/images/body-bg3.jpg");
    background-repeat: repeat;
    color: var(--text-gainsboro);
    font-family: var(--fontFamily-oxanium);
    font-size: var(--fontSize-4);
    font-weight: var(--weight-regular);
    line-height: 1.6;
    overflow-x: hidden;
}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
    list-style: none;
}

a,
img,
time,
span,
input,
button,
textarea,
ion-icon {
    display: block;
}

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

img {
    height: auto;
}

input,
button,
textarea {
    background: none;
    border: none;
    font: inherit;
}

input,
textarea {
    width: 100%;
}

button {
    cursor: pointer;
}

ion-icon {
    pointer-events: none;
}

address {
    font-style: normal;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-purple);
    background-image: url("../images/body-bg.jpg");
    background-repeat: repeat;
    color: var(--text-gainsboro);
    font-family: var(--fontFamily-oxanium);
    font-size: var(--fontSize-4);
    font-weight: var(--weight-regular);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === DARK OVERLAY FIX === */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    /* background: rgba(18, 23, 26, 0.45); */
    pointer-events: none;
    z-index: -1;
}

/* === GLASS UI FIX === */
.news-card,
    /* .upcoming-card, */
.footer,
.header,
.section {
    /* background: rgba(255, 255, 255, 0.08); */
    background: rgba(18, 23, 26, 0.45);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* === TEXT VISIBILITY FIX === */
.section-title,
.card-title,
.navbar-link,
.footer-link,
.time,
.date {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    color: #e8ebec !important;
}

/* Buttons must stay visible */
.btn {
    background: linear-gradient(135deg, #c9a66b, #7ba5a1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-dark-purple);
}

::-webkit-scrollbar-thumb {
    background-color: var(--bg-purple);
}


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
    padding-inline: 12px;
}

.has-before,
.has-after {
    position: relative;
    z-index: 1;
}

.has-before::before,
.has-after::after {
    content: "";
    position: absolute;
}

.title {
    color: var(--text-white);
}

.h1,
.h3 {
    line-height: 1.3;
}

.h1 {
    font-size: var(--fontSize-1);
    font-weight: var(--weight-semiBold);
}

.h2 {
    font-size: var(--fontSize-2);
    line-height: 1.4;
}

.h3 {
    font-size: var(--fontSize-3);
}

.section-title,
.section-subtitle,
.section-text {
    text-align: center;
}

.section-subtitle {
    color: var(--text-white);
    font-weight: var(--weight-semiBold);
    font-size: var(--fontSize-5);
    text-transform: uppercase;
}

.btn {
    position: relative;
    background-image: var(--gradient-1);
    color: var(--text-white);
    font-size: var(--fontSize-6);
    font-weight: var(--weight-semiBold);
    max-width: max-content;
    min-width: 180px;
    height: 50px;
    display: grid;
    place-items: center;
    padding-inline: 30px;
    clip-path: var(--clip-path-3);
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: var(--top, 50%);
    left: var(--left, 50%);
    width: 250%;
    padding-block-end: 250%;
    background-color: var(--bg-purple);
    transform: translate(-50%, -50%) scale(0);
    border-radius: var(--radius-circle);
    z-index: -1;
    transition: transform var(--transition-2);
}

.btn:is(:hover, :focus-visible)::before {
    transform: translate(-50%, -50%) scale(1);
}

.w-100 {
    width: 100%;
}

.section {
    padding-block: var(--section-spacing);
}

.section-title {
    margin-block: 10px;
    text-transform: uppercase;
}

.section-title .span {
    display: inline;
    color: var(--text-purple);
}

.section-text {
    margin-block-end: 40px;
    max-width: 480px;
    margin-inline: auto;
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-holder {
    background-color: var(--bg-purple);
    aspect-ratio: var(--width) / var(--height);
    overflow: hidden;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[data-reveal] {
    opacity: 0;
    transition: var(--transition-2);
}

[data-reveal="left"] {
    transform: translateX(-20px);
}

[data-reveal="right"] {
    transform: translateX(20px);
}

[data-reveal="bottom"] {
    transform: translateY(20px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0);
}


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
    display: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-oxford-blue);
    padding: 10px 12px;
    z-index: 9999;
}

.header.active {
    position: fixed;
    animation: slideUP 1s ease forwards;
}

/* DESKTOP BUTTON GROUP SPACING */
.header-btn-group {
    display: flex;
    align-items: center;
    gap: 12px; /* jarak antar tombol */
}

/* Hide desktop buttons on mobile */
.desktop-only {
    display: none;
}

@media (min-width: 992px) {
    .desktop-only {
        display: flex;
    }
}

/* MOBILE EXTRA LINKS: inserted into navbar */
.mobile-extra-links {
    display: block;
    margin-top: 10px;
}

.mobile-extra-links .navbar-item {
    border-top: 1px solid var(--border-space-cadet);
}

.mobile-extra-links .navbar-link {
    padding: 12px 25px;
    font-size: var(--fontSize-7);
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .mobile-extra-links {
        display: none !important;
    }
}

@keyframes slideUP {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle-btn .line {
    height: 3px;
    width: 10px;
    margin-block: 4px;
    background-color: var(--text-gainsboro);
    border-radius: 8px;
    transition: var(--transition-1);
}

.nav-toggle-btn .line-2 {
    width: 20px;
}

.nav-toggle-btn .line-3 {
    margin-inline-start: auto;
}

.nav-toggle-btn.active .line-2 {
    transform: rotate(-45deg);
}

.nav-toggle-btn.active .line-1 {
    transform: rotate(45deg) translate(4px, 1.5px);
}

.nav-toggle-btn.active .line-3 {
    transform: rotate(45deg) translate(-3px, -1px);
}

.navbar {
    position: absolute;
    top: calc(100% - 1px);
    right: 12px;
    left: 12px;
    background-color: var(--bg-oxford-blue);
    padding: 0 15px;
    clip-path: var(--clip-path-1);
    visibility: hidden;
    transition: clip-path 500ms var(--cubic-out);
}

.navbar.active {
    clip-path: var(--clip-path-2);
    visibility: visible;
}

.navbar-link {
    padding: 12px 25px;
    text-transform: uppercase;
    font-size: var(--fontSize-7);
    font-weight: var(--weight-semiBold);
    color: var(--text-white);
}

.navbar-item {
    border-block-start: 1px solid var(--border-space-cadet);
}

.navbar-item:last-child {
    border-block-end: 1px solid var(--border-space-cadet);
}


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
    padding-block-start: 170px;
    text-align: center;
}

.hero .container,
.section {
    position: relative;
    z-index: 2; /* semua konten utama di depan anim */
}

.hero .section-subtitle {
    letter-spacing: 5px;
}

.hero-title {
    margin-block: 20px 25px;
}

.hero .btn {
    margin-inline: auto;
}

.hero::before {
    background-image: var(--gradient-2);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1;
}

.hero-banner {
    position: relative;
    margin-block-start: 50px;
}

.hero-banner-bg {
    display: none;
}

.hero.no-text {
    padding-block-start: 260px;
    /* semula 170px */
}

.hero.no-text .hero-banner {
    margin-block-start: 0;
    /* tidak perlu lagi 50px */
}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-image: var(--gradient-1);
    display: grid;
    place-items: center;
    font-size: 2.1rem;
    clip-path: var(--clip-path-8);
    opacity: 0;
    transition: var(--transition-1);
    z-index: 4;
}

.back-top-btn.active {
    opacity: 1;
    transform: translateY(-20px);
}


/*-----------------------------------*\
  #CUSTOM CURSOR
\*-----------------------------------*/

/*.cursor {*/
/*  display: none;*/
/*}*/


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

    /**
     * REUSED STYLE
     */
    .container {
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }


    /**
     * HEADER
     */
    .header .logo img {
        width: 160px;
    }

    /**
     * FOOTER
     */
    .footer-top .container {
        grid-template-columns: 1fr 1fr;
    }

}


/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

    /**
     * CUSTOM PROPERTY
     */
    :root {

        /**
         * TYPOGRAPHY
         */

        /* font size */
        --fontSize-1: 6.5rem;
        --fontSize-2: 3.2rem;

    }


    /**
     * REUSED STYLE
     */
    .container {
        max-width: 720px;
    }

    .h1 {
        line-height: 1;
    }


    /**
     * HERO
     */
    .hero .section-subtitle {
        letter-spacing: 10px;
    }

    .hero-banner-bg {
        display: block;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: scale(1.3);
        transform-origin: bottom;
        z-index: -1;
    }


    /* ===== SERVER STATS SECTION ===== */
    .server-stats {
        padding-block: 60px;
        text-align: center;
    }

    .server-stats-list {
        display: grid;
        gap: 25px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    /* ===== CARD STYLE ===== */
    .stats-card {
        padding: 22px;
        border-radius: 14px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .18);
        transition: .35s ease;

        /* base color biar kalau image fade tetap bagus */
        background: linear-gradient(135deg, rgba(40, 35, 28, .80), rgba(40, 35, 28, .55));
    }

    .stats-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/images/game-status.png') center/cover no-repeat;

        /* bikin gambar “menyatu” */
        opacity: .55; /* atur 0.35–0.75 */
        filter: blur(1px) brightness(.85) contrast(1.05) saturate(1.05);
        transform: scale(1.05); /* hilangin garis tepi */
        mix-blend-mode: soft-light; /* coba: multiply / overlay / soft-light */

        /* OPTIONAL: fade pinggir biar makin nyatu */
        -webkit-mask-image: radial-gradient(circle, #000 70%, transparent 100%);
        mask-image: radial-gradient(circle, #000 70%, transparent 100%);

        z-index: 0;
    }

    /* overlay gelap biar teks kebaca */
    .stats-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(40, 35, 28, .35); /* atur kalau terlalu gelap/terang */
        z-index: 1;
    }

    /* konten card di atas semua layer */
    .stats-card > * {
        position: relative;
        z-index: 2;
    }

    /* ===== HOVER EFFECT ===== */
    .stats-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 255, 255, 0.4);
        filter: brightness(1.18);
        box-shadow: 0 0 18px rgba(201, 166, 107, 0.45);
    }

    /* ===== TITLE ===== */
    .stats-title {
        margin-top: 6px;
        font-size: 1.15rem;
        font-weight: 700;
        color: #eee;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
    }

    /* ===== TEXT VALUE ===== */
    .stats-text {
        font-size: 1.15rem;
        font-weight: 700;
        margin-top: 4px;
        background-image: linear-gradient(135deg, #e9c693, #90d2ca);
        -webkit-background-clip: text;
        color: transparent;
    }

    /* ===== ICON EFFECT ===== */
    .stats-icon {
        width: 65px;
        margin-inline: auto;
        margin-bottom: 12px;
        display: block;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
        transition: transform 0.3s ease, filter 0.35s ease;
        animation: iconPulse 3s infinite;
    }

    .stats-card:hover .stats-icon {
        transform: scale(1.08);
        filter: drop-shadow(0 0 14px rgba(201, 166, 107, 0.9));
    }

    /* ===== ICON ANIMATION ===== */
    @keyframes iconPulse {

        0%,
        100% {
            transform: scale(1);
            filter: brightness(1);
        }

        50% {
            transform: scale(1.12);
            filter: brightness(1.2);
        }
    }

    /* GM ONLINE SPECIAL */
    .gm-online .stats-icon {
        animation: iconPulseSuccess 2.5s infinite;
        filter: drop-shadow(0 0 16px rgba(134, 255, 182, 0.9));
    }

    @keyframes iconPulseSuccess {

        0%,
        100% {
            transform: scale(1);
            filter: drop-shadow(0 0 12px rgba(134, 255, 182, 0.6));
        }

        50% {
            transform: scale(1.15);
            filter: drop-shadow(0 0 22px rgba(0, 255, 100, 1));
        }
    }





    /**
     * CUSTOM CURSOR
     */
    /*.cursor {*/
    /*  display: block;*/
    /*  position: fixed;*/
    /*  top: 0;*/
    /*  left: 0;*/
    /*  width: 30px;*/
    /*  height: 30px;*/
    /*  background-color: var(--bg-purple);*/
    /*  border-radius: var(--radius-circle);*/
    /*  transform: translate(-50%, -50%);*/
    /*  opacity: 0;*/
    /*  pointer-events: none;*/
    /*  z-index: 6;*/
    /*  transition: var(--transition-1);*/
    /*  transition-property: opacity, transform;*/
    /*}*/
    body:hover .cursor {
        opacity: 0.5;
    }

    body .cursor.hovered {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.75;
    }

}


/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

    /**
     * CUSTOM PROPERTY
     */
    :root {

        /**
         * TYPOGRAPHY
         */

        /* font size */
        --fontSize-2: 4.5rem;

        /**
         * SPACING
         */

        --section-spacing: 100px;

    }


    /**
     * REUSED STYLE
     */
    .container {
        max-width: 960px;
    }

    .h2 {
        line-height: 1.1;
    }


    /**
     * HEADER
     */
    .nav-toggle-btn {
        display: none;
    }

    .navbar,
    .navbar.active {
        all: unset;
        display: block;
    }

    .navbar-item,
    .navbar-item:last-child {
        border: none;
    }

    .navbar-list {
        display: flex;
    }

    .header .btn {
        display: grid;
        text-align: center;
    }

    /* === NAVBAR HOVER GRADIENT LIKE BUTTON === */
    .navbar-link {
        position: relative;
        color: #e8ebec;
        font-weight: 600;
        transition: 0.35s ease;
    }

    /* Hover effect like .btn */
    .navbar-link:hover,
    .navbar-link:focus-visible {
        background-image: linear-gradient(135deg, #c9a66b, #7ba5a1);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
    }

    /* Optional underline glow */
    .navbar-link::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 0%;
        height: 2px;
        background: linear-gradient(135deg, #c9a66b, #7ba5a1);
        transition: 0.35s ease;
        transform: translateX(-50%);
    }

    .navbar-link:hover::after {
        width: 80%;
    }

    .navbar-link:hover {
        background-image: linear-gradient(135deg, #e3c48b, #8dd3c1);
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 25px rgba(201, 166, 107, 0.6);
    }


    /**
     * HERO
     */
    .hero-banner-bg {
        transform: scale(1.2);
    }


    /**
     * FOOTER
     */
    .footer-top .container {
        grid-template-columns: repeat(4, 1fr);
    }

}


/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

    /**
     * REUSED STYLE
     */
    .container {
        max-width: 1140px;
    }

    .section-text {
        margin-block-end: 60px;
    }


    /**
     * HERO
     */
    .hero {
        padding-block-start: 250px;
    }

    .hero-banner-bg {
        transform: scale(1.2);
    }

    .hero-banner .w-100 {
        max-width: max-content;
        margin-inline: auto;
    }


    /**
     * FOOTER
     */
    .footer-top .container {
        grid-template-columns: 1f 0.5fr 0.5fr 1fr;
    }

    .footer .logo img {
        width: 205px;
    }

}


/* =========================
   DISCORD (CLEAN + PREMIUM)
========================= */
.discord-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.discord-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(18, 23, 26, 0.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

/* TOP */
.discord-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;

    background: radial-gradient(circle at 10% 30%, rgba(201, 166, 107, .18), transparent 55%),
    radial-gradient(circle at 90% 70%, rgba(123, 165, 161, .10), transparent 60%),
    rgba(12, 18, 18, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.discord-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discord-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(201, 166, 107, .22);
    color: rgba(255, 255, 255, .92);
    font-size: 20px;
}

.discord-title {
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, .95);
}

.discord-subtitle {
    margin-top: 2px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .70);
}

/* STATS PILLS */
.discord-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.discord-pill {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
    min-width: 120px;
}

.discord-pill-label {
    display: block;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(255, 255, 255, .60);
}

.discord-counter {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 1000;
    color: rgba(255, 255, 255, .92);
}

/* EMBED */
.discord-embed {
    background: rgba(10, 10, 20, 0.70);
}

.discord-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.discord-error {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, .75);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* BOTTOM */
.discord-card-bottom {
    padding: 16px 18px 18px;
    display: grid;
    gap: 10px;
    justify-items: center;

    background: radial-gradient(circle at 50% 120%, rgba(201, 166, 107, .14), transparent 55%),
    rgba(12, 18, 18, 0.55);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Button discord (pakai style btn kamu) */
.btn-discord {
    min-width: 220px;
}

/* note */
.discord-note {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .60);
    text-align: center;
}

/* Responsive */
@media (max-width: 575px) {
    .discord-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .discord-stats {
        justify-content: flex-start;
        width: 100%;
    }

    .discord-pill {
        min-width: 0;
        flex: 1 1 140px;
    }
}


/**
   * UPCOMING
   */

.upcoming-card.left .card-meta {
    left: auto;
    right: -15%;
}

.upcoming-card.right .card-meta {
    left: 25%;
}

/**
   * UPCOMING
   */

.upcoming-card::before {
    height: 110px;
}

.upcoming-card .card-meta {
    padding-block: 12px;
    bottom: 20px;
}

.upcoming-card .card-title {
    --fontSize-3: 2.8rem;
}

.upcoming-card.left .card-meta {
    right: -10%;
}

.upcoming-card.right .card-meta {
    left: 20%;
}

.upcoming-time .time {
    --fontSize-1: 5rem;
    display: none !important;
}


/**
 * UPCOMING
 */

.upcoming-item {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    align-items: center;
    margin-bottom: 40px;
}

.upcoming-time {
    margin-block: 0;
}

.upcoming-card .card-meta {
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
}

.upcoming-card.right .card-meta {
    left: 50%;
}

.upcoming-empty {
    width: 100%;
    height: 100%;
    min-height: 40px;
    pointer-events: none;
    opacity: 0;
}


/* =======================
 STREAMER SWIPER MODE
======================= */

.streamerSwiper {
    width: 100%;
    padding-bottom: 60px;
}

.streamerSwiper .swiper-wrapper {
    align-items: center;
}

.swiper-pagination {
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.4 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--text-purple) !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--text-purple);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    transition: 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    scale: 1.2;
}

.streamerSwiper .swiper-slide {
    display: block !important;
}

.streamerSwiper .upcoming-item {
    display: grid !important;
    grid-template-columns: 1fr 0.5fr 1fr;
    margin-bottom: 40px;
}

#streamerList {
    /*transition: opacity 0.35s ease-in-out;*/
    transition: opacity 0.35s linear;
    min-height: 420px;
}


/**
   * UPCOMING
   */

.upcoming-card .card-banner {
    max-height: 180px;
    width: auto;
}

.upcoming-card .card-meta {
    bottom: 0;
}

.upcoming-card.right .card-meta {
    left: 10%;
}

.upcoming-time .time {
    --fontSize-1: 6.2rem;
}


/*-----------------------------------*\
  #UPCOMING
\*-----------------------------------*/

.upcoming-item:not(:last-child) {
    margin-block-end: 90px;
}

.upcoming-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upcoming-card::before {
    top: 50%;
    background-image: var(--gradient-1);
    transform: translateY(-50%);
    width: 90%;
    height: 80px;
    z-index: -1;
    opacity: 0.3;
    border-radius: var(--radius-5);
}

.upcoming-card.left::before {
    right: 0;
    clip-path: var(--clip-path-4);
}

.upcoming-card.right::before {
    left: 0;
    clip-path: var(--clip-path-6);
}

.upcoming-card .card-title {
    text-transform: uppercase;
}

.upcoming-card.left .card-title {
    margin-inline-end: 50px;
    text-align: right;
}

.upcoming-card.right .card-title {
    margin-inline-start: 50px;
    text-align: left;
}

.upcoming-card .card-meta {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-image: var(--gradient-1);
    width: max-content;
    padding: 6px 20px;
    font-size: var(--fontSize-7);
    font-weight: var(--weight-semiBold);
    text-transform: uppercase;
    border-radius: var(--radius-3);
}

.upcoming-card.left .card-meta {
    clip-path: var(--clip-path-5);
}

.upcoming-card.right .card-meta {
    clip-path: var(--clip-path-7);
}

.upcoming-card .card-banner {
    width: 30%;
}

.upcoming-card.right .card-banner {
    order: 1;
}

.upcoming-time {
    margin-block: 50px 30px;
}

.upcoming-time :is(.time, .date) {
    text-align: center;
}

.upcoming-time .time {
    color: var(--text-white);
    font-size: var(--fontSize-1);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.upcoming-time .date {
    font-size: var(--fontSize-7);
    font-weight: var(--weight-semiBold);
    margin-block: 5px;
}

.upcoming-item .social-wrapper {
    justify-content: center;
}

.upcoming-item .social-link {
    color: var(--text-white);
    font-size: 2.5rem;
    transition: var(--transition-1);
}

.upcoming-item .social-link:is(:hover, :focus-visible) {
    color: var(--text-purple);
}

.ghost {
    opacity: 0;
    pointer-events: none;
}

.ghost-item {
    visibility: hidden !important;
}


/* STREAMER GRID --------------------------------------------------- */

.streamer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

.streamer-card {
    background: rgba(18, 23, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.streamer-card:hover {
    transform: translateY(-6px);
    border-color: var(--bg-purple);
    box-shadow: 0 6px 18px rgba(201, 166, 107, 0.35);
}

.streamer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*border-radius: 50%;*/
    margin: 0 auto 15px auto;
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.streamer-name {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.streamer-role {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-purple);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.streamer-squad {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.streamer-squad img {
    width: 26px;
    height: 26px;
}


/* FIX PAGE NUMBERS HORIZONTAL */
.page-numbers-ngn {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 26px;
    background: rgba(18, 23, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
}

/* PAGINATION BUTTON NGN STYLE */
.page-btn-ngn {
    min-width: 160px;
    height: 50px;
    display: grid !important;
    place-items: center !important;
    font-size: 1.5rem;
    font-weight: 600;
    clip-path: var(--clip-path-3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-image: var(--gradient-1);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* HOVER EFFECT "RIPPLE" */
.page-btn-ngn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background-color: var(--bg-purple);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.4s ease;
}

.page-btn-ngn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.page-btn-ngn:hover {
    color: #fff;
    filter: brightness(1.15);
}

/* WRAPPER MUST BE HORIZONTAL */
.pagination-ngn {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 22px;
    margin-top: 50px;
}


/* ======================================================
   PREMIUM BACKGROUND
====================================================== */
.premium-bg {
    position: relative;
    padding-top: 120px; /* tambahkan ruang aman untuk judul */
    background: radial-gradient(circle at 50% -20%, rgb(54 27 4 / 12%), #0000007d 70%), linear-gradient(to bottom, rgb(140 82 255 / 4%), rgba(0, 0, 0, 0.55));
}

/* ======================================================
   PREMIUM TITLES
====================================================== */
.premium-title {
    text-align: center !important;
    width: 100%;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #f5e7c8;
    text-shadow: 0 0 8px rgba(255, 214, 144, 0.55),
    0 0 14px rgba(255, 214, 144, 0.35),
    0 0 30px rgba(214, 179, 109, 0.65);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
    display: block;
}

.premium-title::after {
    content: "";
    width: 240px;
    height: 4px;
    margin: 12px auto 0;
    background: linear-gradient(
        90deg,
        #d6b36d,
        #f7e7b0,
        #a47cff,
        #d6b36d
    );
    border-radius: 999px;
    display: block;

    box-shadow: 0 0 12px rgba(214, 179, 109, 0.8),
    0 0 18px rgba(164, 124, 255, 0.55),
    0 0 24px rgba(214, 179, 109, 0.5);
}

/* Subtle glowing subtitle */
.premium-subtitle {
    color: #d0c7ff;
    text-shadow: 0 0 6px rgba(172, 134, 255, 0.65);
}

.premium-text,
.premium-subtitle {
    text-align: center !important;
    width: 100%;
}

/* ======================================================
   SEARCH BAR PREMIUM
====================================================== */
.search-wrapper-premium {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.premium-search {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    color: #fff;
    width: 280px;
    transition: 0.25s;
}

.premium-search:focus {
    border-color: #a47cff;
    box-shadow: 0 0 10px rgba(164, 124, 255, 0.8);
}

.premium-search-btn {
    background-image: var(--gradient-1);
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    transition: 0.25s ease;
}

.premium-search-btn:hover {
    filter: brightness(1.2);
}

/* ======================================================
   PREMIUM STREAMER CARD
====================================================== */
.premium-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 26px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.premium-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(201, 166, 107, 0.35),
        transparent 120deg
    );
    animation: rotateGlow 6s linear infinite;
    opacity: 0;
    transition: 0.4s;
}

.premium-card:hover::after {
    opacity: 1;
}

@keyframes rotateGlow {
    to {
        transform: rotate(360deg);
    }
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: #d6b36d;
    box-shadow: 0 0 18px rgba(201, 166, 107, 0.45);
}

/* ======================================================
   PREMIUM AVATAR
====================================================== */
.premium-avatar-wrapper {
    /*position: relative;*/
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.premium-avatar {
    /*border: 3px solid rgba(255,255,255,0.25);*/
    /*box-shadow: 0 0 14px rgba(201,166,107,0.45);*/
    /*transition: 0.3s;*/
    /*width: 120px;*/
    /*height: 120px;*/
    /*object-fit: cover;*/
    /*border-radius: 8px !important; !* kotak premium *!*/
    /*border: 3px solid rgba(255,255,255,0.22);*/
    /*box-shadow: 0 0 12px rgba(201,166,107,0.35);*/
    /*transition: 0.35s ease-in-out;*/
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px; /* kotak premium */
    border: 2px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 14px rgba(201, 166, 107, 0.35);
    transition: 0.35s ease;
}

.premium-card:hover .premium-avatar {
    /*transform: scale(1.06);*/
    /*border-color: #d6b36d;*/
    /*box-shadow: 0 0 18px rgba(214,179,109,0.7);*/
    /*transform: scale(1.05);*/
    /*border-color: #d6b36d;*/
    /*box-shadow: 0 0 18px rgba(214,179,109,0.6);*/
    transform: scale(1.06);
    border-color: #d6b36d;
    box-shadow: 0 0 22px rgba(214, 179, 109, 0.75);
}

/* ===== PAGINATION FIX ===== */
.pagination {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 70px;
}

.pagination a {
    display: inline-flex !important; /* override display:block */
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 20px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    clip-path: var(--clip-path-3);
    transition: 0.3s ease;
}

/* ===== BACK HOME BUTTON ===== */
.btn-back-home {
    margin-bottom: 35px;
    font-size: 1.5rem;
    padding: 12px 22px;
}

.pagination a:hover {
    background-image: var(--gradient-1);
}

.pagination a.active {
    background-image: var(--gradient-1);
}

/* FIX HEADER AREA TERTUTUP BACKGROUND */
.section .container {
    padding-top: 40px; /* Biar teks tidak nempel atas */
}

.premium-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgb(14 10 5 / 95%) 25%, rgba(0, 0, 0, 0.05) 50%, #00000000 100%
    );

    z-index: 1;
}

.premium-bg .container > * {
    position: relative;
    z-index: 5;
}

.section .container > * {
    position: relative;
    z-index: 2; /* supaya teks selalu di atas background */
}

.back-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 35px;
    position: relative;
    z-index: 10;
}


/* ============================================
   ULTRA PREMIUM CARD — GOLD FRAME & GLOW
============================================ */
.premium-card {
    background: linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.07)) padding-box, linear-gradient(140deg, #000000, rgb(96 82 41 / 33%), #0c0a05) border-box;
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.45s ease;
    box-shadow: 0 0 20px rgba(214, 179, 109, 0.35),
    inset 0 0 12px rgba(255, 255, 255, 0.15);
}

/* CONIC ROTATING GOLD HALO */
.premium-card::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(214, 179, 109, 0.5),
        transparent 120deg
    );
    animation: ultraSpin 7s linear infinite;
    opacity: 0;
    transition: 0.45s ease;
    z-index: 0;
}

.premium-card:hover::before {
    opacity: 0.8;
}

@keyframes ultraSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Card hover effect */
.premium-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 0 28px rgba(214, 179, 109, 0.55),
    0 0 40px rgba(255, 170, 124, 0.45);
}


/* ============================================
   ULTRA PREMIUM AVATAR — GOLD GLASS
============================================ */
.premium-avatar {
    width: 135px;
    height: 135px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(214, 179, 109, 0.45);
    box-shadow: 0 0 18px rgba(214, 179, 109, 0.5),
    inset 0 0 8px rgba(255, 255, 255, 0.2);
    transition: 0.35s ease;
}

.premium-card:hover .premium-avatar {
    transform: scale(1.09);
    border-color: #f3d79a;
    box-shadow: 0 0 28px rgba(214, 179, 109, 0.75),
    inset 0 0 12px rgba(255, 255, 255, 0.3);
}


/* Align Back Button + Search Bar */
.header-bar-premium {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    gap: 20px;
}

/* Make search form compact inside header row */
.header-bar-premium .search-wrapper-premium {
    margin: 0 !important;
    display: flex;
}

/* Fix width for input */
.header-bar-premium .premium-search {
    width: 260px;
}


/* ===========================
   FAQ PAGE (NOSTA PREMIUM THEME)
   taruh PALING BAWAH
=========================== */

.faq-hero {
    position: relative;
    padding: 110px 0 40px;

    /* dark + gold glow */
    background: radial-gradient(circle at 18% 12%, rgba(201, 166, 107, .22), transparent 48%),
    radial-gradient(circle at 82% 18%, rgba(123, 165, 161, .14), transparent 55%),
    radial-gradient(circle at 55% 95%, rgba(201, 166, 107, .10), transparent 55%),
    linear-gradient(135deg, rgba(10, 16, 16, 1) 0%, rgba(14, 20, 20, 1) 55%, rgba(7, 12, 12, 1) 100%);
    overflow: hidden;
}

.faq-hero-inner {
    max-width: 860px;
}

.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;

    color: rgba(255, 255, 255, .88);
    border: 1px solid rgba(201, 166, 107, .22);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
}

.faq-hero-title {
    margin-top: 14px;
    color: #fff;
    font-size: 44px;
    line-height: 1.1;
    text-shadow: 0 0 16px rgba(201, 166, 107, .22),
    0 0 30px rgba(0, 0, 0, .35);
}

.faq-hero-desc {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .74);
    max-width: 680px;
}

/* search bar premium */
.faq-search {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    padding: 12px 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
}

.faq-search i {
    color: rgba(255, 255, 255, .70);
}

.faq-search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-weight: 700;
}

.faq-search input::placeholder {
    color: rgba(255, 255, 255, .55);
    font-style: normal;
    text-transform: none;
}

/* stats pills */
.faq-hero-stats {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-stat {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
}

.faq-stat-label {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(255, 255, 255, .60);
}

.faq-stat-value {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
}

/* ===== BODY SECTION: dark premium ===== */
.faq-section {
    padding: 44px 0 90px;

    background: radial-gradient(circle at 20% 10%, rgba(201, 166, 107, .10), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(123, 165, 161, .08), transparent 55%),
    linear-gradient(135deg, rgba(12, 18, 18, .98) 0%, rgba(16, 20, 20, .96) 60%, rgba(10, 14, 14, .98) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns:360px 1fr;
    gap: 22px;
    align-items: start;
}

/* cards glass */
.faq-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(18, 23, 26, .55);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    padding: 16px;
}

.faq-card-mini {
    margin-top: 14px;
}

.faq-card-title,
.faq-mini-title {
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(255, 255, 255, .90);
    margin-bottom: 10px;
}

/* chips */
.faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.faq-chip {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .84);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    transition: .18s ease;
}

.faq-chip:hover {
    transform: translateY(-1px);
    background: rgba(201, 166, 107, .10);
    border-color: rgba(201, 166, 107, .22);
}

.faq-chip.is-active {
    color: #0a1010;
    background: linear-gradient(90deg, rgba(201, 166, 107, 1), rgba(123, 165, 161, .92));
    box-shadow: 0 14px 30px rgba(201, 166, 107, .22);
    border: none;
}

/* side note */
.faq-side-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
}

.faq-side-note a {
    font-weight: 900;
    color: rgba(201, 166, 107, .95);
    text-decoration: underline;
}

.faq-mini-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    line-height: 1.8;
    font-size: 13px;
}

/* accordion */
.faq-accordion {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(18, 23, 26, .55);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border: none;
    background: transparent;
    cursor: pointer;

    font-weight: 900;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    text-align: left;
}

.faq-q i {
    transition: .18s ease;
    color: rgba(255, 255, 255, .65);
}

.faq-a {
    display: none;
    padding: 0 18px 16px;

    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    line-height: 1.9;
    font-size: 14px;
}

.faq-a a {
    font-weight: 900;
    color: rgba(201, 166, 107, .95);
    text-decoration: underline;
}

.faq-item.is-open .faq-a {
    display: block;
}

.faq-item.is-open .faq-q i {
    transform: rotate(180deg);
}

.faq-a ul,
.faq-a ol {
    margin-top: 8px;
    padding-left: 20px;
}

/* CTA bottom */
.faq-footer-cta {
    margin-top: 16px;
}

.faq-cta-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(18, 23, 26, .55);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    padding: 18px;

    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.faq-cta-title {
    font-weight: 1000;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
}

.faq-cta-desc {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
    font-size: 13px;
}

.faq-cta-actions {
    display: flex;
    gap: 10px;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .88);

    font-weight: 900;
    text-decoration: none;
    transition: .18s ease;
}

.faq-btn:hover {
    transform: translateY(-1px);
    background: rgba(201, 166, 107, .10);
    border-color: rgba(201, 166, 107, .22);
}

.faq-btn.is-primary {
    border: none;
    background: linear-gradient(90deg, rgba(201, 166, 107, 1), rgba(123, 165, 161, .92));
    color: #0a1010;
    box-shadow: 0 14px 30px rgba(201, 166, 107, .22);
}

.faq-btn.is-primary:hover {
    filter: brightness(1.05);
}

/* hilangkan garis biru focus browser */
.faq-q:focus,
.faq-q:focus-visible,
.faq-btn:focus,
.faq-btn:focus-visible,
.faq-search input:focus,
.faq-search input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns:1fr;
    }

    .faq-hero {
        padding: 95px 0 36px;
    }

    .faq-hero-title {
        font-size: 36px;
    }
}


/* ===========================
   REFUND POLICY (NOSTA PREMIUM THEME)
   taruh PALING BAWAH
=========================== */

.policy-hero {
    position: relative;
    padding: 110px 0 42px;

    /* dark + gold/champagne glow */
    background: radial-gradient(circle at 18% 12%, rgba(201, 166, 107, .22), transparent 48%),
    radial-gradient(circle at 82% 18%, rgba(123, 165, 161, .14), transparent 55%),
    radial-gradient(circle at 55% 95%, rgba(201, 166, 107, .10), transparent 55%),
    linear-gradient(135deg, rgba(10, 16, 16, 1) 0%, rgba(14, 20, 20, 1) 55%, rgba(7, 12, 12, 1) 100%);
    overflow: hidden;
}

.policy-hero-inner {
    max-width: 920px;
}

.policy-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;

    color: rgba(255, 255, 255, .88);
    border: 1px solid rgba(201, 166, 107, .22);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
}

.policy-title {
    margin-top: 14px;
    color: #fff;
    font-size: 44px;
    line-height: 1.1;

    /* gold glow */
    text-shadow: 0 0 16px rgba(201, 166, 107, .22),
    0 0 30px rgba(0, 0, 0, .35);
}

.policy-desc {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .74);
    max-width: 720px;
}

.policy-highlight {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    padding: 14px 16px;

    box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.policy-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* gold glass */
    background: rgba(201, 166, 107, .14);
    border: 1px solid rgba(201, 166, 107, .22);
    color: rgba(255, 255, 255, .92);
}

.policy-highlight-title {
    font-weight: 1000;
    color: rgba(255, 255, 255, .95);
    letter-spacing: .03em;
}

.policy-highlight-desc {
    margin-top: 2px;
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
    line-height: 1.7;
    font-size: 13px;
}

.policy-meta {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.policy-meta-item {
    padding: 10px 12px;
    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
}

.policy-meta-label {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(255, 255, 255, .60);
}

.policy-meta-value {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 1000;
    color: rgba(255, 255, 255, .92);
}

/* ===== BODY SECTION: dark premium ===== */
.policy-section {
    padding: 44px 0 90px;

    background: radial-gradient(circle at 20% 10%, rgba(201, 166, 107, .10), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(123, 165, 161, .08), transparent 55%),
    linear-gradient(135deg, rgba(12, 18, 18, .98) 0%, rgba(16, 20, 20, .96) 60%, rgba(10, 14, 14, .98) 100%);
}

/* CARD: glass premium */
.policy-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(18, 23, 26, .55);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    padding: 18px;
}

.policy-block {
    padding: 10px 8px;
}

.policy-h2 {
    font-size: 18px;
    font-weight: 1000;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.policy-p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.9;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 0;
}

.policy-divider {
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 16px 0;
}

.policy-list {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.policy-li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 16px;

    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);

    color: rgba(255, 255, 255, .78);
    font-weight: 800;
    line-height: 1.7;
    font-size: 13px;
}

.policy-li i {
    margin-top: 2px;
    width: 18px;
    text-align: center;

    /* X merah elegan */
    color: rgba(255, 90, 90, .92);
}

.policy-list-ok .policy-li i {
    /* OK teal/champagne */
    color: rgba(123, 165, 161, .95);
}

.policy-steps {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.policy-step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 16px;

    background: rgba(201, 166, 107, .06);
    border: 1px solid rgba(201, 166, 107, .18);
}

.policy-step-no {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 1000;

    color: #0a1010;
    background: linear-gradient(90deg, rgba(201, 166, 107, 1), rgba(123, 165, 161, .92));
    box-shadow: 0 14px 30px rgba(201, 166, 107, .18);
}

.policy-step-text {
    font-weight: 800;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
    font-size: 13px;
}

.policy-note {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 16px;

    background: rgba(201, 166, 107, .09);
    border: 1px solid rgba(201, 166, 107, .22);
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
    line-height: 1.7;
    font-size: 13px;
}

.policy-note i {
    margin-top: 2px;
    color: rgba(201, 166, 107, .95);
}

.policy-cta {
    margin-top: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    padding: 14px;

    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.policy-cta-text {
    font-weight: 1000;
    color: rgba(255, 255, 255, .92);
}

.policy-cta-sub {
    margin-top: 4px;
    font-weight: 800;
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
}

.policy-cta-actions {
    display: flex;
    gap: 10px;
}

.policy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .88);

    font-weight: 1000;
    text-decoration: none;
    transition: .18s ease;
}

.policy-btn:hover {
    transform: translateY(-1px);
    background: rgba(201, 166, 107, .10);
    border-color: rgba(201, 166, 107, .25);
}

.policy-btn.is-primary {
    border: none;
    background: linear-gradient(90deg, rgba(201, 166, 107, 1), rgba(123, 165, 161, .92));
    color: #0a1010;
    box-shadow: 0 14px 30px rgba(201, 166, 107, .22);
}

.policy-btn.is-primary:hover {
    filter: brightness(1.05);
}

@media (max-width: 991px) {
    .policy-hero {
        padding: 95px 0 36px;
    }

    .policy-title {
        font-size: 36px;
    }
}


/* ======================================================
   STREAMERS PREMIUM OVERRIDE (PUT THIS AT THE VERY END)
====================================================== */

#tournament.streamer-premium.section {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    position: relative;
    overflow: hidden;
}

/* premium background khusus area streamer */
#tournament.streamer-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(201, 166, 107, .22), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(123, 165, 161, .14), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .15));
    z-index: 0;
}

#tournament.streamer-premium .container {
    position: relative;
    z-index: 1;
}

/* rapihin jarak list */
#tournament.streamer-premium .upcoming-item {
    margin-bottom: 26px !important;
    align-items: stretch !important;
}

/* CARD: premium glass + gold frame */
#tournament.streamer-premium .upcoming-card {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px;

    padding: 18px 22px !important;
    min-height: 112px;

    border-radius: 18px !important;
    background: rgba(6, 8, 10, .72) !important;
    border: 1px solid rgba(201, 166, 107, .30) !important;

    backdrop-filter: blur(10px);
    overflow: hidden;

    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}

/* glow layer di dalam card (bukan yang height 80/110px lagi) */
#tournament.streamer-premium .upcoming-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(201, 166, 107, .22), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(123, 165, 161, .12), transparent 60%);
    opacity: 1 !important;
    z-index: 0;

    /* matikan clip-path lama biar tidak “aneh” */
    clip-path: none !important;
    transform: none !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* pastikan isi card di atas overlay */
#tournament.streamer-premium .upcoming-card > * {
    position: relative;
    z-index: 1;
}

/* HOVER: gold premium */
#tournament.streamer-premium .upcoming-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 166, 107, .65) !important;
    box-shadow: 0 0 26px rgba(201, 166, 107, .28),
    0 0 40px rgba(0, 0, 0, .35);
    filter: brightness(1.08);
}

/* AVATAR (card-banner) jadi jelas dan premium */
#tournament.streamer-premium .upcoming-card .card-banner {
    width: 92px !important;
    height: 92px !important;
    object-fit: cover !important;

    border-radius: 14px !important;
    border: 2px solid rgba(201, 166, 107, .55) !important;
    box-shadow: 0 0 18px rgba(201, 166, 107, .25);

    flex: 0 0 auto;
}

/* title lebih kontras */
#tournament.streamer-premium .upcoming-card .card-title {
    margin: 0 !important;
    font-size: clamp(1.7rem, 2.2vw, 2.6rem) !important;
    color: var(--text-white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .65);
    letter-spacing: .06em;
}

/* align teks sesuai kiri/kanan */
#tournament.streamer-premium .upcoming-card.left .card-title {
    text-align: right !important;
    margin-inline-end: 0 !important;
}

#tournament.streamer-premium .upcoming-card.right .card-title {
    text-align: left !important;
    margin-inline-start: 0 !important;
}

/* role/meta: jangan di luar card lagi (ini biar terlihat!) */
#tournament.streamer-premium .upcoming-card .card-meta {
    position: absolute !important;
    left: 50% !important;
    bottom: 12px !important;
    transform: translateX(-50%) !important;

    padding: 7px 14px !important;
    border-radius: 999px !important;

    background: rgba(201, 166, 107, .16) !important;
    border: 1px solid rgba(201, 166, 107, .42) !important;

    color: #f3d79a !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    letter-spacing: .14em;
    text-transform: uppercase;

    /* matikan clip-path lama */
    clip-path: none !important;
}

#tournament.streamer-premium .upcoming-card:hover .card-meta {
    background: rgba(201, 166, 107, .22) !important;
    border-color: rgba(201, 166, 107, .70) !important;
    box-shadow: 0 0 14px rgba(201, 166, 107, .30);
}

/* divider tengah jangan “maksa” tinggi */
#tournament.streamer-premium .upcoming-empty {
    min-height: 1px !important;
    opacity: 0 !important;
}

/* SWIPER spacing */
#tournament.streamer-premium .streamerSwiper {
    padding-bottom: 56px !important;
}

/* pagination premium */
#tournament.streamer-premium .swiper-pagination-bullet {
    opacity: .35 !important;
    background: #fff !important;
}

#tournament.streamer-premium .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--bg-purple) !important;
}

/* MOBILE: bikin rapi 1 kolom */
@media (max-width: 575px) {
    #tournament.streamer-premium .upcoming-item {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    #tournament.streamer-premium .upcoming-empty {
        display: none !important;
    }
}


/* =========================================
   FIX: BADGE/REFERRAL KEPAKAI & TIDAK KEPOTONG
========================================= */


/* card kasih ruang bawah supaya badge aman */
#tournament.streamer-premium .upcoming-card {
    overflow: visible !important; /* penting */
    padding-bottom: 56px !important; /* ruang buat badge */
}

/* pastikan badge ADA di dalam card (bukan keluar) */
#tournament.streamer-premium .upcoming-card .card-meta {
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    clip-path: none !important;
}


/* =========================================
   HILANGKAN GARIS BIRU HOVER / CLICK
========================================= */

/* hilangkan underline/garis link */
#tournament.streamer-premium .upcoming-card,
#tournament.streamer-premium .upcoming-card:hover {
    text-decoration: none !important;
}

/* hilangkan focus ring biru browser */
#tournament.streamer-premium .upcoming-card:focus,
#tournament.streamer-premium .upcoming-card:focus-visible,
#tournament.streamer-premium a:focus,
#tournament.streamer-premium a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* optional: ganti highlight tap di mobile */
#tournament.streamer-premium a {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================
   SWIPER HARUS TETAP "PER SLIDE"
========================================= */
#tournament.streamer-premium .streamerSwiper {
    overflow: hidden !important; /* KUNCI: jangan visible */
    padding-bottom: 56px !important;
}

#tournament.streamer-premium .swiper-wrapper {
    align-items: flex-start !important;
}

#tournament.streamer-premium .swiper-slide {
    height: auto !important;
}

/* =========================================
   BADGE/REFERRAL JANGAN KETUTUP (TANPA RUSAK SWIPER)
========================================= */
#tournament.streamer-premium .upcoming-card {
    overflow: hidden !important; /* boleh hidden, asal badge di DALAM */
    padding-bottom: 52px !important; /* ruang untuk badge */
}

#tournament.streamer-premium .upcoming-card .card-meta {
    bottom: 14px !important; /* pastikan badge masuk ke dalam card */
    left: 50% !important;
    transform: translateX(-50%) !important;
    clip-path: none !important;
}

/* kalau section kamu ada overflow:hidden, ini bisa bikin shadow/badge kepotong */
#tournament.streamer-premium.section {
    overflow: visible !important;
}

/* =========================================
   HILANGKAN GARIS BIRU (FOCUS RING)
========================================= */
#tournament.streamer-premium .upcoming-card,
#tournament.streamer-premium .upcoming-card:hover {
    text-decoration: none !important;
}

#tournament.streamer-premium .upcoming-card:focus,
#tournament.streamer-premium .upcoming-card:focus-visible,
#tournament.streamer-premium a:focus,
#tournament.streamer-premium a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

#tournament.streamer-premium a {
    -webkit-tap-highlight-color: transparent;
}


/*-----------------------------------*\
  #NEWS
\*-----------------------------------*/

.news-list {
    display: grid;
    gap: 30px;
}

.news-card {
    background-color: var(--bg-oxford-blue-alpha-90);
    box-shadow: var(--shadow);
}

.news-card .card-content {
    position: relative;
    padding: 30px;
}

.card-tag {
    position: absolute;
    bottom: 100%;
    left: 0;
    background-image: var(--gradient-1);
    color: var(--text-white);
    font-size: var(--fontSize-8);
    font-weight: var(--weight-semiBold);
    text-transform: uppercase;
    height: 30px;
    line-height: 32px;
    padding-inline: 20px;
    clip-path: var(--clip-path-3);
}

.news-card :is(.card-meta-list, .card-meta-item) {
    display: flex;
    align-items: center;
}

.news-card .card-meta-list {
    flex-wrap: wrap;
    gap: 5px 10px;
}

.news-card .card-meta-item {
    gap: 5px;
}

.news-card .card-meta-item ion-icon {
    color: var(--text-purple);
}

.news-card .card-meta-text,
.news-card .link {
    color: var(--text-champagne-pink);
    font-size: var(--fontSize-7);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}

.news-card .h3 {
    margin-block: 15px 10px;
}

.news-card .card-title {
    display: inline;
    background-image: linear-gradient(to left, var(--bg-purple), var(--bg-purple));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 4px;
    transition: var(--transition-2);
}

.news-card .card-title:is(:hover, :focus-visible) {
    background-size: 100% 4px;
}

.news-card .link {
    max-width: max-content;
    margin-block-start: 15px;
    padding-inline-start: 30px;
    transition: var(--transition-1);
}

.news-card .link::before {
    top: 50%;
    left: 0;
    transform: translateY(-100%);
    width: 20px;
    height: 4px;
    background-color: var(--bg-purple);
}

.news-card .link:is(:hover, :focus-visible) {
    color: var(--text-purple);
}


/* ===== NEWS SECTION (swiper slider) ===== */

/* ===== NEWS SECTION (swiper slider) ===== */
.newsSwiper {
    padding-bottom: 50px;
    overflow: hidden;
}

.newsSwiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.newsSwiper .swiper-slide {
    width: clamp(260px, 28vw, 330px);
    /* better responsive sizing */
    transition: transform 0.3s ease-in-out;
}

.newsSwiper .swiper-slide-active {
    transform: scale(1.06);
}

.newsSwiper .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(0.72) blur(0.5px);
}

/* Swiper pagination and navigation */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--text-purple);
}

/* ===== ADJUSTED CARD BANNER HEIGHT ===== */
.news-card .card-banner {
    height: 100%;
    /* increased from 180px */
    overflow: hidden;
    border-radius: var(--radius-6);
}

.news-card .card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional smaller padding on mobile */
@media (max-width: 480px) {
    .news-card .card-content {
        padding: 16px;
    }
}


.news-list {
    margin-top: 40px;
}

.newsSwiper {
    padding-bottom: 60px;
}

.newsSwiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.newsSwiper .swiper-slide {
    width: 300px;
    transition: 0.3s ease-in-out;
}

.newsSwiper .swiper-slide-active {
    transform: scale(1.05);
}

.newsSwiper .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(0.7) blur(1px);
}

.news-card .card-banner {
    height: 100%;
    /* naikkan height */
    overflow: hidden;
    border-radius: 8px;
}

.news-card .card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.see-all-btn {
    display: block;
    width: fit-content;
    /*margin-top: 30px;*/
    padding: 12px 24px;
    background-image: var(--gradient-2);
    color: var(--text-white);
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: var(--weight-semiBold);
    transition: var(--transition-1);
    margin: 40px auto 0 auto;
    text-align: center;

}

.see-all-btn:hover {
    filter: brightness(1.2);
}


/**
   * NEWS
   */

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

/**
  * NEWS
  */

.news-list {
    grid-template-columns: repeat(3, 1fr);
}


/* ======= PREMIUM BACKGROUND ======= */
.news-detail-bg {
    padding-top: 150px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 50% -20%, rgb(4 3 1 / 82%), rgba(0, 0, 0, 0.75)), url(/assets/images/body-bg.jpg) repeat;
}

/* ======= PREMIUM TITLE ======= */
.news-detail-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.news-detail-title span {
    background: linear-gradient(135deg, #d6b36d, #a47cff);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(214, 179, 109, 0.6);
}

.news-meta {
    text-align: center;
    color: #cfcfcf;
    margin-bottom: 40px;
    font-size: 1.4rem;
    opacity: .85;
}

/* ======= IMAGE ======= */
.news-detail-img {
    width: 100%;
    max-width: 920px;
    margin: 0 auto 40px auto;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 22px rgba(201, 166, 107, 0.35);
}

.news-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ======= CONTENT ======= */
.news-detail-content {
    max-width: 900px;
    margin: auto;
    font-size: 1.7rem;
    line-height: 1.85;
    color: #e6e6e6;
    background: rgba(18, 23, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 35px 40px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.news-detail-content p {
    margin-bottom: 22px;
}

/* ======= BACK BTN ======= */
.back-btn {
    display: inline-block;
    margin: 35px auto 0 auto;
    padding: 12px 26px;
    background-image: var(--gradient-1);
    clip-path: var(--clip-path-3);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: 0.3s ease;
}

.back-btn:hover {
    filter: brightness(1.2);
}


/* ============================================================
   🔥 FIX PREMIUM FOR ALL NEWS PAGE (NOSTA PW GOLD EDITION)
   ============================================================ */

/* Wrapper spacing lebih lega */
.all-news-wrapper {
    padding-top: 190px;
    padding-bottom: 130px;
    background: radial-gradient(circle at 50% -20%, rgba(4, 3, 1, 0.82), rgba(0, 0, 0, 0.75)),
    url('/assets/images/body-bg.jpg') repeat;
}

/* Title spacing */
.all-news-title {
    font-size: 4.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.all-news-sub {
    margin-bottom: 55px;
    opacity: 0.85;
}

/* ===== GRID FIX ===== */
.all-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 35px; /* JAUHKAN ANTAR CARD */
    padding-inline: 8px; /* slightly inward */
}

@media (max-width: 900px) {
    .all-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }
}

@media (max-width: 600px) {
    .all-news-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== CARD FIX ===== */
.news-card {
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 16px rgba(201, 166, 107, 0.35);
    border-color: rgba(201, 166, 107, 0.4);
}

/* Banner height fix */
.news-card .card-banner {
    height: 220px; /* TIDAK 100% LAGI */
    border-radius: 0;
}

.news-card .card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Better padding */
.news-card .card-content {
    padding: 28px;
}

/* Tag offset fix */
.card-tag {
    top: -14px;
    left: 20px;
    bottom: auto;
    height: auto;
    padding: 6px 18px;
    clip-path: var(--clip-path-3);
    font-size: 1.2rem;
}

/* Title spacing */
.news-card .h3 {
    margin: 16px 0 10px 0;
}

/* Description fix */
.card-text {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 6px;
}

/* Read More fix */
.news-card .link {
    margin-top: 18px !important;
}

/* ===== PAGINATION FIX ===== */
.pagination {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 70px;
}

.pagination a {
    display: inline-flex !important; /* override display:block */
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 20px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    clip-path: var(--clip-path-3);
    transition: 0.3s ease;
}

.pagination a:hover {
    background-image: var(--gradient-1);
}

.pagination a.active {
    background-image: var(--gradient-1);
}

.back-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 35px;
    position: relative;
    z-index: 10;
}

/* ===== BACK HOME BUTTON ===== */
.btn-back-home {
    margin-bottom: 35px;
    font-size: 1.5rem;
    padding: 12px 22px;
}

/* ======================================================
   SEARCH BAR PREMIUM
====================================================== */
.search-wrapper-premium {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.premium-search {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    color: #fff;
    width: 280px;
    transition: 0.25s;
}

.premium-search:focus {
    border-color: #a47cff;
    box-shadow: 0 0 10px rgba(164, 124, 255, 0.8);
}

.premium-search-btn {
    background-image: var(--gradient-1);
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    transition: 0.25s ease;
}

.premium-search-btn:hover {
    filter: brightness(1.2);
}


/* ======================================================
   PREMIUM TITLES
====================================================== */
.premium-title {
    text-align: center !important;
    width: 100%;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #f5e7c8;
    text-shadow: 0 0 8px rgba(255, 214, 144, 0.55),
    0 0 14px rgba(255, 214, 144, 0.35),
    0 0 30px rgba(214, 179, 109, 0.65);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
    display: block;
}

.premium-title::after {
    content: "";
    width: 240px;
    height: 4px;
    margin: 12px auto 0;
    background: linear-gradient(
        90deg,
        #d6b36d,
        #f7e7b0,
        #a47cff,
        #d6b36d
    );
    border-radius: 999px;
    display: block;

    box-shadow: 0 0 12px rgba(214, 179, 109, 0.8),
    0 0 18px rgba(164, 124, 255, 0.55),
    0 0 24px rgba(214, 179, 109, 0.5);
}

/* Subtle glowing subtitle */
.premium-subtitle {
    color: #d0c7ff;
    text-shadow: 0 0 6px rgba(172, 134, 255, 0.65);
}

.premium-text,
.premium-subtitle {
    text-align: center !important;
    width: 100%;
}

/* Align Back Button + Search Bar */
.header-bar-premium {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    gap: 20px;
}

/* Make search form compact inside header row */
.header-bar-premium .search-wrapper-premium {
    margin: 0 !important;
    display: flex;
}

/* Fix width for input */
.header-bar-premium .premium-search {
    width: 260px;
}


/* NEWS: pastikan tampil meski reveal script tidak ada */
.news [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
}

/* NEWS: swiper slide auto height */
.newsSwiper .swiper-slide {
    height: auto;
}

.newsSwiper .news-card {
    height: 100%;
}

/* FIX: overlay/pseudo element jangan nutup klik */
.news .news-card::before,
.news .news-card::after,
.news .has-before::before,
.news .has-before::after {
    pointer-events: none;
}

/* Konten & link di atas overlay */
.news .news-card .card-content,
.news .news-card a {
    position: relative;
    z-index: 2;
}

/* Hilangkan garis biru hover */
.news a,
.news a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Kalau underline datang dari .link.has-before */
.news .link.has-before::before {
    content: none !important;
}

/* ============================
   NEWS FIX: Jangan blur kalau cuma 3 berita (mode basic)
   Blur hanya dipakai saat coverflow (mode banyak data)
============================ */

/* default aman */
.newsSwiper .swiper-slide {
    filter: none;
}

/* MODE BASIC (<=3 slide): jangan blur sama sekali */
.newsSwiper.is-basic .swiper-slide,
.newsSwiper.is-basic .swiper-slide:not(.swiper-slide-active) {
    filter: none !important;
    opacity: 1 !important;
}

/* MODE COVERFLOW (data banyak): boleh kasih efek */
.newsSwiper.is-coverflow .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(0.75) blur(0.8px) !important;
}

/* =========================
   FOOTER (PREMIUM + CLEAN)
   taruh PALING BAWAH
========================= */
.footer-modern {
    position: relative;
    padding: 90px 0 0;
    background: radial-gradient(circle at 18% 15%, rgba(201, 166, 107, .14), transparent 55%),
    radial-gradient(circle at 82% 65%, rgba(123, 165, 161, .10), transparent 60%),
    linear-gradient(135deg, rgba(10, 16, 16, 1) 0%, rgba(14, 20, 20, .98) 60%, rgba(7, 12, 12, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-modern .footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr;
    gap: 28px;
    padding-bottom: 26px;
}

.footer-modern .footer-col {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(18, 23, 26, .45);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    padding: 18px 18px;
}

.footer-modern .footer-brand {
    padding: 20px 20px;
}

.footer-modern .footer-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.footer-modern .footer-desc {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.9;
    font-weight: 700;
    color: rgba(255, 255, 255, .72);
}

.footer-modern .footer-quote {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, .62);
    letter-spacing: .03em;
}

.footer-modern .footer-title {
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 1000;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.footer-modern .footer-title::after {
    content: "";
    display: block;
    height: 2px;
    width: 80px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(201, 166, 107, 1), rgba(123, 165, 161, .92));
    opacity: .75;
}

.footer-modern .footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-modern .footer-links a {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, .78);
    transition: .18s ease;
}

.footer-modern .footer-links a:hover {
    color: rgba(201, 166, 107, .95);
    transform: translateX(2px);
}

.footer-modern .footer-contact li {
    display: grid;
    gap: 4px;
}

.footer-modern .footer-label {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(255, 255, 255, .55);
}

.footer-modern .footer-value {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

/* social icons */
.footer-modern .footer-social-modern {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-modern .footer-social-modern a {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(201, 166, 107, .22);
    color: rgba(255, 255, 255, .88);
    transition: .18s ease;
}

.footer-modern .footer-social-modern a:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 166, 107, .55);
    box-shadow: 0 0 18px rgba(201, 166, 107, .22);
    color: rgba(201, 166, 107, .95);
}

.footer-modern .footer-bottom {
    margin-top: 18px;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-modern .copyright {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, .62);
}

.footer-modern .footer-mini-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, .55);
}

.footer-modern .footer-mini-links a {
    color: rgba(255, 255, 255, .68);
    transition: .18s ease;
}

.footer-modern .footer-mini-links a:hover {
    color: rgba(201, 166, 107, .95);
}

.footer-modern .footer-mini-links .dot {
    opacity: .55;
}

/* responsive */
@media (max-width: 991px) {
    .footer-modern .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   HEADER (PREMIUM + GLASS)
   taruh PALING BAWAH
========================= */
.header-modern-shell {
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(135deg, rgba(10, 16, 16, .72) 0%, rgba(14, 20, 20, .62) 70%, rgba(7, 12, 12, .72) 100%);
    backdrop-filter: blur(10px);
}

.header-bar-modern {
    min-height: 78px;
    padding: 12px 18px;
    gap: 16px;
}

.site-logo img {
    width: 165px;
    height: auto;
    display: block;
}

/* desktop layout */
.top-nav-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

/* menu */
.main-menu-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.main-menu-modern li a {
    position: relative;
    font-weight: 900;
    font-size: 13px;
    color: rgba(255, 255, 255, .78);
    padding: 10px 10px;
    border-radius: 12px;
    transition: .18s ease;
}

.main-menu-modern li a:hover {
    color: rgba(201, 166, 107, .95);
    background: rgba(255, 255, 255, .04);
}

.main-menu-modern li a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(2px);
    transition: .18s ease;
    background: linear-gradient(90deg, rgba(201, 166, 107, 1), rgba(123, 165, 161, .92));
}

.main-menu-modern li a:hover::after,
.main-menu-modern li a.active::after {
    opacity: .85;
    transform: translateY(0);
}

.main-menu-modern li a.active {
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 166, 107, .18);
}

/* auth buttons */
.user-panel-modern {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    transition: .18s ease;
}

.btn-auth:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 166, 107, .42);
    box-shadow: 0 0 18px rgba(201, 166, 107, .16);
    color: rgba(201, 166, 107, .95);
}

.btn-auth-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .76);
}

.btn-auth-gold {
    background: rgba(201, 166, 107, .16);
    border-color: rgba(201, 166, 107, .45);
    color: rgba(255, 255, 255, .92);
}

/* hamburger */
.nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    display: grid;
    place-items: center;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, .85);
    border-radius: 999px;
}

/* mobile drawer + backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
    z-index: 998;
}

@media (max-width: 991px) {
    .top-nav-area {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(92vw, 420px);
        padding: 92px 18px 18px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 14px;

        background: rgba(12, 16, 16, .92);
        border-left: 1px solid rgba(255, 255, 255, .10);
        backdrop-filter: blur(12px);

        transform: translateX(105%);
        transition: .22s ease;
        z-index: 999;
    }

    .top-nav-area.active {
        transform: translateX(0);
    }

    .top-nav-area.active ~ .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .main-menu-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .main-menu-modern li a {
        width: 100%;
        padding: 12px 12px;
    }

    .user-panel-modern {
        margin-top: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-auth {
        width: 100%;
    }
}


/*CSS NEW 126*/
/* ===========================
   NOSTAPW SKY / PEARL THEME
   taruh PALING BAWAH CSS
=========================== */

:root {
    --sky-white: #f8fbff;
    --sky-pearl: #dee9f2;
    --sky-soft: #afcee3;
    --sky-mid: #99b6cc;
    --sky-steel: #6d8ea2;
    --sky-deep: #57738b;
    --sky-navy: #334f5f;
    --sky-dark: #263949;

    --sky-text: #213746;
    --sky-text-2: #4e6470;

    --sky-accent: #b9924f; /* gold soft seperti logo */
    --sky-accent-2: #d6b87a;
    --sky-glow: rgba(175, 206, 227, 0.45);
}

/* Background section utama */
.intro-section,
.blog-section,
.games-section,
.games-single-page,
.review-section,
.blog-page,
.contact-page,
.discord-section,
.download-section-custom,
.faq-section,
.policy-section {
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.45) 22%, transparent 42%),
    linear-gradient(135deg, #f8fbff 0%, #dee9f2 38%, #afcee3 72%, #99b6cc 100%) !important;
}


.header-bar-warp {
    background: rgba(51, 79, 95, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 8px 28px rgba(51, 79, 95, 0.18) !important;
    backdrop-filter: blur(12px);
}


body,
p,
.text-box p,
.game-single-content p,
.contact-text p,
.policy-p,
.faq-a,
.policy-step-text,
.policy-note,
.contact-note,
.address-value,
.contact-value,
.footer-desc {
    color: var(--sky-text-2) !important;
}

h1, h2, h3, h4, h5, h6,
.section-title h2,
.faq-hero-title,
.policy-title,
.download-title,
.news-title,
.faq-cta-title,
.policy-cta-text,
.contact-title {
    color: var(--sky-dark) !important;
}


.text-box .top-meta a,
.game-single-content .gs-meta a,
.trending-widget .tw-text .tw-meta a,
.news-btn,
.faq-side-note a,
.faq-a a,
.contact-value a {
    color: var(--sky-accent) !important;
}

.news-btn:hover,
.contact-value a:hover,
.faq-side-note a:hover,
.faq-a a:hover {
    color: var(--sky-dark) !important;
    text-shadow: none !important;
}


.hero-item {
    border-bottom: 2px solid rgba(185, 146, 79, 0.55) !important;
}

.hero-slider .owl-dots .owl-dot {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-slider .owl-dots .owl-dot.active {
    color: var(--sky-accent) !important;
    border: 2px solid rgba(185, 146, 79, 0.45) !important;
}

.site-btn {
    color: var(--sky-dark) !important;
    background: #ffffff !important;
}

.site-btn:before {
    background: #ffffff !important;
}

.site-btn:after {
    background: linear-gradient(90deg, var(--sky-accent), var(--sky-accent-2)) !important;
    box-shadow: 0 0 18px rgba(185, 146, 79, 0.22) !important;
}


.download-btn.full,
.btn-discord-main,
.faq-btn.is-primary,
.policy-btn.is-primary {
    background: linear-gradient(90deg, #b9924f, #d6b87a) !important;
    color: #263949 !important;
    box-shadow: 0 8px 24px rgba(185, 146, 79, 0.20) !important;
    border: none !important;
}

.download-btn.full:hover,
.btn-discord-main:hover,
.faq-btn.is-primary:hover,
.policy-btn.is-primary:hover {
    filter: brightness(1.04);
    box-shadow: 0 10px 28px rgba(185, 146, 79, 0.28) !important;
}

.stat-card,
.news-card,
.download-box,
.discord-card,
.faq-card,
.faq-item,
.policy-card,
.policy-cta,
.faq-cta-card,
.contact-card,
.address-box {
    background: rgba(255, 255, 255, 0.62) !important;
    border: 1px solid rgba(87, 115, 139, 0.14) !important;
    box-shadow: 0 14px 36px rgba(51, 79, 95, 0.08) !important;
    backdrop-filter: blur(10px);
}

.stat-card:hover,
.news-card:hover,
.download-box:hover,
.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(87, 115, 139, 0.14) !important;
}


.main-menu li a,
.main-menu-modern li a,
.user-panel a,
.user-panel-modern a {
    color: #f7fbff !important;
}

.main-menu li a:hover,
.main-menu-modern li a:hover,
.user-panel a:hover,
.user-panel-modern a:hover {
    color: var(--sky-accent-2) !important;
    background: rgba(255, 255, 255, 0.08);
    text-shadow: none !important;
}

.main-menu-modern li a.active {
    color: var(--sky-dark) !important;
    background: linear-gradient(90deg, var(--sky-accent), var(--sky-accent-2)) !important;
    box-shadow: 0 8px 20px rgba(185, 146, 79, 0.22) !important;
}


.footer-section,
.gradient-bg,
.newsletter-section {
    background: linear-gradient(135deg, #57738b 0%, #334f5f 55%, #263949 100%) !important;
}

.footer-title,
.footer-modern .copyright,
.footer-desc,
.footer-links a,
.footer-address-text,
.footer-address-label {
    color: rgba(255, 255, 255, 0.82) !important;
}

.footer-links a:hover {
    color: #ffffff !important;
    text-shadow: none !important;
}






