/* ===================================
KATANA111 - THEME MYSTIC PURPLE (WHITE TEXT + GOLD HEADER)
STYLE.CSS
=================================== */

/* ===================================
RESET
=================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at top, #2d1b4e, #1a0e30 45%, #0f0820);
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===================================
COLOR SYSTEM - MYSTIC PURPLE (BRIGHTER)
=================================== */

:root {
    /* Primary - Mystic Purple (lebih cerah) */
    --primary: #8b5cf6;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --primary-soft: #c4b5fd;
    --primary-glow: 0 0 40px rgba(139, 92, 246, 0.4);

    /* Secondary Purple Muda */
    --secondary: #9d6ff7;
    --secondary-soft: #b89ffa;
    --secondary-glow: 0 0 30px rgba(157, 111, 247, 0.35);

    /* Gold / Emas */
    --gold: #ffd700;
    --gold-light: #ffe066;
    --gold-glow: 0 0 30px rgba(255, 215, 0, 0.5);
    --gold-border: #ffd700;

    /* Text - PUTIH */
    --text-white: #ffffff;
    --text-white-soft: #f0f0f0;

    /* Dark */
    --black: #0f0820;
    --dark-bg: rgba(20, 10, 35, 0.92);

    /* Box Background - Ungu Muda Lebih Cerah */
    --box-bg: rgba(139, 92, 246, 0.18);
    --box-bg-hover: rgba(139, 92, 246, 0.30);
    --box-border: rgba(255, 215, 0, 0.7);
    --box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);

    /* Shadow */
    --shadow-primary: 0 0 35px rgba(139, 92, 246, 0.4);
    --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.5);
}

/* ===================================
CONTAINER
=================================== */

.container {
    width: min(1200px, 90%);
    margin: auto;
}

/* ===================================
TYPOGRAPHY - TEXT PUTIH
=================================== */

h1,
h2,
h3 {
    color: var(--text-white);
    line-height: 1.25;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    font-weight: 900;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #ffffff;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
}

p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    margin-bottom: 18px;
    color: #f0f0f0;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: 0.3s;
}

a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ===================================
GAMING BOX SYSTEM - UNGU MUDA CERAH
=================================== */

.gaming-box {
    background: var(--box-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--gold-border);
    border-radius: 18px;
    padding: clamp(20px, 3vw, 40px);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

/* Animasi Border Emas Berkilau */
@keyframes borderGlow {
    0%, 100% {
        border-color: #ffd700;
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
    }
    25% {
        border-color: #ffe066;
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    }
    50% {
        border-color: #e6c200;
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    }
    75% {
        border-color: #ffea80;
        box-shadow: 0 0 45px rgba(255, 215, 0, 0.45);
    }
}

/* Efek gold shimmer di dalam box */
.gaming-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 215, 0, 0.05),
        transparent 60%
    );
    pointer-events: none;
    animation: shimmerGold 6s ease-in-out infinite;
}

@keyframes shimmerGold {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(5%, 5%) scale(1.1);
        opacity: 1;
    }
}

.gaming-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.10),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.8s;
}

@media (hover: hover) {
    .gaming-box:hover::before {
        left: 130%;
    }
}

@media (hover: hover) {
    .gaming-box:hover {
        transform: translateY(-6px) scale(1.01);
        background: var(--box-bg-hover);
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.4);
        border-color: var(--gold-light);
        animation: none;
        border-color: #ffe066;
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    }
}

/* ===================================
BUTTON - EMAS
=================================== */

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transition: 0.3s ease;
    border: 1px solid #ffe066;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffe066, #ffd700);
    color: #0a0a0a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
    border-color: #fff2a8;
}

/* ===================================
HEADER - NAVIGASI KUNING
=================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(20, 10, 35, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold-border);
    animation: borderGlow 3s ease-in-out infinite;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 18px 0;
}

.logo-juragan59 img {
    width: 140px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.navigation ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

/* ===================================
NAVIGASI LINK - WARNA KUNING
=================================== */

.navigation a {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.05rem;
    transition: 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.navigation a:hover {
    color: #ffe066;
    background: rgba(255, 215, 0, 0.12);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* ===================================
HERO SECTION
=================================== */

.hero {
    min-height: 90vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at top, #3d2268, #2d1b4e 40%, #1a0e30 80%);
    position: relative;
}

/* Efek bintang/partikel di hero */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(139, 92, 246, 0.2), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(255, 215, 0, 0.15), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(139, 92, 246, 0.18), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 215, 0, 0.12), transparent),
        radial-gradient(1px 1px at 90% 10%, rgba(139, 92, 246, 0.12), transparent);
    background-size: 200px 200px;
    pointer-events: none;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Efek glow ungu di hero */
.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12), transparent 70%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    color: #ffffff;
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.hero-text p {
    color: #f0f0f0;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.hero-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid var(--gold-border);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.25);
    animation: borderGlow 3s ease-in-out infinite;
}

/* ===================================
SECTION SYSTEM
=================================== */

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), transparent);
}

/* ===================================
GRID SYSTEM
=================================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    align-items: stretch;
}

/* ===================================
ACCOUNT BUTTONS - EMAS
=================================== */

.account-section {
    padding: 40px 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.10), transparent);
}

.account-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.account-button {
    width: 280px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #1a1a1a;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #ffd700;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transition: 0.3s ease;
    animation: borderGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.account-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 60%);
    animation: shimmerGold 6s ease-in-out infinite;
}

.account-button:hover {
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(135deg, #ffe066, #ffd700);
    border-color: #ffe066;
    color: #0a0a0a;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
    animation: none;
}

.account-button:last-child {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #ffffff;
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.account-button:last-child:hover {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #1a1a1a;
    border-color: #ffe066;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
}

/* ===================================
FAQ
=================================== */

.faq .gaming-box {
    max-width: 950px;
    margin: auto;
}

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    color: #f0f0f0;
}

.faq-item.active p {
    max-height: 300px;
    opacity: 1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    cursor: pointer;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.faq-item h3::after {
    content: "✦";
    font-size: 1.2rem;
    transition: 0.3s;
    color: var(--gold);
}

.faq-item.active h3::after {
    content: "✧";
    transform: rotate(180deg);
}

/* ===================================
FOOTER
=================================== */

footer {
    padding: 50px 0;
    background: #0f0820;
    border-top: 2px solid var(--gold-border);
    animation: borderGlow 3s ease-in-out infinite;
}

.footer-box {
    text-align: center;
}

.footer-box h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.footer-box nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.footer-box a {
    color: #ffd700;
    font-weight: 600;
}

.footer-box a:hover {
    color: #ffe066;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ===================================
SCROLLBAR
=================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a0e30;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#8b5cf6, #ffd700);
    border-radius: 10px;
}

/* ===================================
RESPONSIVE
=================================== */

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-header .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navigation ul {
        gap: 15px;
    }

    .hero {
        padding: 70px 0;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 600px) {
    .container {
        width: 92%;
    }

    section {
        padding: 55px 0;
    }

    .site-header .container {
        flex-direction: column;
    }

    .navigation ul {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
    }

    .gaming-box {
        padding: 22px;
        border-radius: 15px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero-card img {
        height: 200px;
    }

    .account-buttons {
        flex-direction: column;
    }

    .account-button {
        width: 90%;
        height: 65px;
        font-size: 1.2rem;
    }

    .gaming-box::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    content-visibility: auto;
}

::selection {
    background: var(--gold);
    color: #0a0a0a;
}

/* ===================================
FINAL CTA - CENTER
=================================== */

.final-cta .gaming-box {
    text-align: center;
}

.final-cta .gaming-box .cta-button {
    display: inline-block;
    margin-top: 10px;
}

/* ===================================
FOOTER LOGO
=================================== */

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.2));
}

/* Responsive */
@media (max-width: 600px) {
    .footer-logo img {
        width: 140px;
        height: auto;
    }
}

/* ===================================
END STYLE.CSS - MYSTIC PURPLE (WHITE TEXT + GOLD HEADER)
=================================== */

