:root {
    --bg-main: #020308;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --gold: #d4af37;
    --blue-neon: #3b82f6;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.owl-body {
    background: radial-gradient(circle at top, #050816 0, #020308 45%, #000 100%);
    min-height: 100vh;
    color: var(--text-main);
    font-family: 'Segoe UI', sans-serif;
}

/* Asap / Partikel Biru */
.bg-overlay {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59,130,246,0.18) 0, transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(37,99,235,0.25) 0, transparent 55%),
        radial-gradient(circle at 50% 80%, rgba(56,189,248,0.18) 0, transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.7;
    filter: blur(1px);
}

/* HEADER */
.owl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6vw;
    background: rgba(2,3,8,0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.owl-logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-owlnoctun {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.8));
}

.owl-title {
    letter-spacing: 0.2em;
    font-size: 12px;
    color: var(--text-muted);
}

/* NAV */
.owl-nav {
    display: flex;
    gap: 22px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue-neon));
}

/* MAIN HERO */
.owl-main {
    padding: 40px 6vw;
}

.hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
}

.highlight-gold { color: var(--gold); }
.highlight-blue { color: var(--blue-neon); }

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #9a7b2f);
    padding: 10px 22px;
    border-radius: 999px;
    color: #050816;
    text-decoration: none;
    font-weight: bold;
}

.btn-ghost {
    border: 1px solid #4b5563;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-main);
}

.btn-ghost:hover {
    color: var(--blue-neon);
    border-color: var(--blue-neon);
}

/* COIN */
.hero-right {
    display: flex;
    justify-content: center;
}

.hero-coin-wrapper {
    position: relative;
    width: 300px;
    aspect-ratio: 1;
}

.glow-circle {
    position: absolute;
    inset: 10%;
    background:
        radial-gradient(circle at 20% 30%, rgba(59,130,246,0.3) 0, transparent 60%),
        radial-gradient(circle at 75% 70%, rgba(37,99,235,0.4) 0, transparent 60%);
    filter: blur(10px);
    z-index: 0;
}

.logo-coin {
    width: 100%;
    position: relative;
    z-index: 1;
    filter:
        drop-shadow(0 0 18px rgba(15,23,42,0.8))
        drop-shadow(0 0 25px rgba(56,189,248,0.5));
}
/* Fix hero spacing */
.hero-premium {
    padding-top: 160px;
    padding-bottom: 120px;
}

/* Rapikan subtitle agar tidak menabrak tombol */
.hero-subtitle-premium {
    margin-top: 20px;
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.55;
}

/* Hero buttons block */
.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 22px; /* space before social icons */
}

/* Social icons container */
.hero-social {
    margin-top: 10px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.hero-social a {
    color: #cbd5e1;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s;
}

.hero-social a:hover {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59,130,246,0.6);
}

/* SECTION TITLE */
.section {
    margin-top: 60px;
}

.section-title {
    font-size: 22px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}
.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
    gap: 20px;
    margin-top: 25px;
}

.nft-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: .2s ease;
}

.nft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 15px rgba(56,189,248,0.4);
}

.nft-image {
    width: 100%;
    border-radius: 10px;
}

.nft-info {
    padding-top: 10px;
}

.nft-info h3 {
    font-size: 15px;
    margin: 0;
}
body::before {
    content: "";
    position: fixed;
    top: var(--mouse-y);
    left: var(--mouse-x);
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(100,160,255,0.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transition: top .1s linear, left .1s linear;
}
.video-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -10;
    filter: blur(6px) brightness(0.55);
}

.video-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layer1 { transform: translateZ(-2px) scale(1.3); opacity: 0.45; }
.layer2 { transform: translateZ(-3px) scale(1.6); opacity: 0.35; }
.layer3 { transform: translateZ(-4px) scale(1.8); opacity: 0.25; }

.galaxy { 
    opacity: 0.12;
    animation: galaxySpin 40s linear infinite;
}

@keyframes galaxySpin {
    from { transform: rotate(0deg) scale(1.4); }
    to   { transform: rotate(360deg) scale(1.4); }
}
.hero-logo-big {
    width: 390px;
    transition: transform .3s ease, filter .3s ease;
    animation: owlPulse 8s infinite ease-in-out;
    filter: drop-shadow(0 0 25px rgba(56,149,255,0.6));
}

@keyframes owlPulse {
    0% { filter: drop-shadow(0 0 25px rgba(56,149,255,0.5)); }
    50% { filter: drop-shadow(0 0 55px rgba(0,132,255,0.9)); }
    100% { filter: drop-shadow(0 0 25px rgba(56,149,255,0.5)); }
}
/* ===== HEADER PREMIUM ===== */

.owl-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    background: rgba(10, 12, 20, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
}

/* LEFT LOGO */
.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-left img {
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* NAVIGATION MENU */
.owl-nav a {
    color: #dbe4ff;
    text-decoration: none;
    margin-left: 28px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: 0.25s ease;
}

.owl-nav a:hover {
    color: #fff;
}

.owl-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #ffd66b, #e8b23a);
    transition: width 0.25s ease;
}

.owl-nav a:hover::after {
    width: 100%;
}

/* ===== COIN LOGO ANIMATION ===== */

.coin-header {
    height: 55px;
    width: 55px;
    cursor: pointer;
    transition: transform 0.35s ease, filter 0.35s ease;
    animation: coinSpin 9s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 110, 255, 0.4));
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Hover enlarge */
.coin-header:hover {
    transform: scale(1.25) rotateY(360deg);
    filter: drop-shadow(0 0 17px rgba(50, 180, 255, 0.8));
}


/* BUTTONS */
.btn-premium {
    padding: 14px 28px;
    background: linear-gradient(135deg, #d4af37, #b98b27);
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(212,175,55,0.8);
}

.btn-outline {
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #64748b;
    text-decoration: none;
    color: #d3d8e8;
    transition: 0.3s;
}
.btn-outline:hover {
    border-color: #4fa8ff;
    color: #4fa8ff;
}

/* RIGHT COIN */
.hero-coin-big {
    width: 380px;
    filter: drop-shadow(0 0 40px rgba(0,110,255,0.35));
    animation: floatCoin 6s ease-in-out infinite;
}

@keyframes floatCoin {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}
.eye {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255,220,100,0.9) 0%,
        rgba(0,140,255,0.7) 40%,
        rgba(0,40,150,0) 70%
    );
    filter: blur(2px);
    mix-blend-mode: screen;
    animation: eyePulse 3s ease-in-out infinite;
}

.eye-left { top: 42%; left: 33%; }
.eye-right { top: 42%; left: 59%; }

@keyframes eyePulse {
    0% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.85; }
}
/* =============================== */
/* 🔥 GOD MODE OMEGA+++ CSS CLEAN  */
/* =============================== */


/* ----------------------------- */
/* GRAVITY WARP BACKGROUND      */
/* ----------------------------- */
.gravity-warp {
    position: fixed;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -20;
    background: conic-gradient(
        rgba(0,20,60,0.2),
        rgba(0,0,0,0.7),
        rgba(0,20,60,0.2)
    );
    filter: blur(180px);
    animation: warpSpin 18s linear infinite;
}

@keyframes warpSpin {
    from { transform: translate(-50%, -50%) rotate(0deg) scale(1.2); }
    to   { transform: translate(-50%, -50%) rotate(360deg) scale(1.2); }
}


/* ----------------------------- */
/* BLACKHOLE CORE                */
/* ----------------------------- */
.blackhole-core {
    position: fixed;
    top: 50%; left: 50%;
    width: 260px; height: 260px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -19;
    background: radial-gradient(circle,
        rgba(0,0,0,1) 0%,
        rgba(0,0,40,1) 40%,
        rgba(0,80,255,0.4) 70%,
        transparent 100%
    );
    box-shadow: 0 0 140px rgba(0,80,255,0.7);
    animation: blackholePulse 6s ease-in-out infinite;
}

@keyframes blackholePulse {
    0%,100% { transform: translate(-50%, -50%) scale(1); opacity: .9; }
    50%     { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}


/* ----------------------------- */
/* ELECTRIC ARCS (PETIR)         */
/* ----------------------------- */
.cosmic-arcs {
    position: fixed;
    top: 50%; left: 50%;
    width: 900px; height: 900px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -18;

    background:
        radial-gradient(circle, rgba(0,150,255,0.18), transparent 60%),
        url('<?= base_url("assets/img/electric-arcs.png") ?>')
        center/contain no-repeat;

    opacity: 0.45;
    animation: arcsPulse 4s ease-in-out infinite alternate;
    mix-blend-mode: screen;
}

@keyframes arcsPulse {
    0%   { opacity: .2; transform: translate(-50%, -50%) scale(1);}
    100% { opacity: .55; transform: translate(-50%, -50%) scale(1.15);}
}


/* ----------------------------- */
/* VORTEX NEBULA                 */
/* ----------------------------- */
.portal-vortex {
    position: fixed;
    top: 50%; left: 50%;
    width: 1200px; height: 1200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -17;

    background: radial-gradient(circle,
        rgba(0, 80, 255, 0.25),
        rgba(0, 0, 40, 0.9)
    );

    filter: blur(120px);
    opacity: 0.55;
    animation: vortexSpin 60s linear infinite;
}

@keyframes vortexSpin {
    from { transform: translate(-50%, -50%) rotate(0deg) scale(1.3); }
    to   { transform: translate(-50%, -50%) rotate(360deg) scale(1.3); }
}


/* ----------------------------- */
/* BLUE FLAME AURA               */
/* ----------------------------- */
.portal-flame {
    position: fixed;
    top: 50%; left: 50%;
    width: 620px; height: 620px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -16;

    background: conic-gradient(
        from 0deg,
        rgba(0,140,255,0.85),
        rgba(0,60,255,0.15),
        rgba(0,140,255,0.85)
    );

    filter: blur(80px);
    opacity: 0.55;
    animation: flameSpin 14s ease-in-out infinite alternate;
}

@keyframes flameSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* ----------------------------- */
/* RIPPLE SHOCKWAVE              */
/* ----------------------------- */
.portal-ripple {
    position: fixed;
    top: 50%; left: 50%;
    width: 450px; height: 450px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -15;
    border: 3px solid rgba(0,150,255,0.45);

    animation: rippleAnim 6s ease-out infinite;
}

@keyframes rippleAnim {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}


