/* =============================================
   SUPER DEWA DESIGN SYSTEM
============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nu-hijau-gelap: #052818;
    --nu-hijau-utama: #0C4A2F;
    --nu-hijau-terang: #146642;
    --nu-hijau-cerah: #208A5A;
    --nu-emas-gelap: #755C16;
    --nu-emas-utama: #B38D28;
    --nu-emas-terang: #D9B446;
    --nu-emas-cerah: #F0D680;
    --nu-hitam-pekat: #020305;
    --nu-hitam-utama: #0A0C12;
    --nu-hitam-gelap: #151821;
    --nu-hitam-sedang: #202430;
    --nu-hitam-terang: #C8CBD8;
    --putih: #FFFFFF;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Roboto, 'Inter', sans-serif;
    font-size: 16px;
}

body {
    background: linear-gradient(135deg, var(--nu-hitam-pekat) 0%, var(--nu-hitam-utama) 100%);
    color: var(--nu-hitam-terang);
    overflow-x: hidden;
    line-height: 1.7;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============================================
   TEKS & WARNA
============================================= */
.teks-gradasi {
    background: linear-gradient(90deg, var(--nu-hijau-cerah) 0%, var(--nu-emas-cerah) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.teks-putih-emas {
    background: linear-gradient(90deg, #fff 0%, var(--nu-emas-cerah) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teks-putih-hijau {
    background: linear-gradient(90deg, #fff 0%, var(--nu-hijau-cerah) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   NAVIGASI PREMIUM
============================================= */
.nav-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(2, 3, 5, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 214, 128, 0.15);
    transition: all 0.4s ease;
}

.nav-scrolled {
    background: rgba(2, 3, 5, 0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(240, 214, 128, 0.25);
}

.nav-link {
    position: relative;
    color: var(--nu-hitam-terang);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nu-emas-cerah);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--nu-hijau-cerah), var(--nu-emas-cerah));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* =============================================
   KARTU SUPER DEWA
============================================= */
.kartu-super {
    position: relative;
    background: rgba(21, 24, 33, 0.65);
    backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    border: 1px solid rgba(240, 214, 128, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.kartu-super::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 214, 128, 0.1), transparent);
    transition: left 0.7s ease;
}

.kartu-super:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(240, 214, 128, 0.4);
    box-shadow: 0 25px 50px rgba(20, 102, 66, 0.25), 0 10px 25px rgba(179, 141, 40, 0.2);
}

.kartu-super:hover::before {
    left: 100%;
}

/* =============================================
   TOMBOL PREMIUM
============================================= */
.tombol-super {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    border-radius: 0.9rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.tombol-hijau {
    background: linear-gradient(135deg, var(--nu-hijau-utama) 0%, var(--nu-hijau-cerah) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(32, 138, 90, 0.3);
}

.tombol-hijau:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 138, 90, 0.5);
    color: #fff;
}

.tombol-emas {
    background: linear-gradient(135deg, var(--nu-emas-utama) 0%, var(--nu-emas-cerah) 100%);
    color: var(--nu-hitam-pekat);
    box-shadow: 0 4px 15px rgba(179, 141, 40, 0.3);
}

.tombol-emas:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 141, 40, 0.5);
    color: var(--nu-hitam-pekat);
}

.tombol-garis {
    background: transparent;
    color: var(--nu-emas-cerah);
    border: 2px solid rgba(240, 214, 128, 0.5);
    box-shadow: 0 4px 15px rgba(240, 214, 128, 0.15);
}

.tombol-garis:hover {
    border-color: var(--nu-emas-cerah);
    background: rgba(240, 214, 128, 0.1);
    transform: translateY(-3px);
    color: var(--nu-emas-cerah);
}

/* =============================================
   ANIMASI SUPER HALUS
============================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mengambang {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25px, 25px) scale(1.05); }
}

.animasi-muncul {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.tunda-1 { animation-delay: 0.2s; }
.tunda-2 { animation-delay: 0.4s; }
.tunda-3 { animation-delay: 0.6s; }
.tunda-4 { animation-delay: 0.8s; }
.tunda-5 { animation-delay: 1s; }

.garis-gradasi {
    width: 120px;
    height: 3px;
    margin: 1rem auto;
    background: linear-gradient(90deg, var(--nu-hijau-cerah), var(--nu-emas-cerah));
    border-radius: 10px;
}

/* =============================================
   UTILITAS
============================================= */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}