/* ========================================================= 
   THEME: JUPITER TITAN - CYBERPUNK TRANSPARENT NEON (FINAL)
   REPLACING ALL BLUE WITH NEON GLOW & TRANSPARENT OUTLINE
   ========================================================= */

/* 1. KEYFRAMES: ANIMASI NEON & JUPITER */

/* Putaran Cincin Jupiter Hijau */
@keyframes jupiter-ring-spin {
    0% { transform: rotateX(75deg) rotateZ(0deg); }
    100% { transform: rotateX(75deg) rotateZ(360deg); }
}

/* Getaran Aura Super Saiya (Energy Vibe) */
@keyframes saiya-aura-vibe {
    0% { transform: translate(0, 0); box-shadow: 0 0 15px #00FF00, 0 0 25px #BF00FF; }
    50% { transform: translate(-1.5px, 1.5px); box-shadow: 0 0 40px #00FF00, 0 0 70px #BF00FF; }
    100% { transform: translate(0, 0); box-shadow: 0 0 15px #00FF00, 0 0 25px #BF00FF; }
}

/* Efek Denyut Garis Neon */
@keyframes neon-outline-pulse {
    0%, 100% { filter: drop-shadow(0 0 2px #BF00FF) brightness(1); }
    50% { filter: drop-shadow(0 0 10px #00FFFF) brightness(1.5); }
}

/* ========================================================= */
/* 2. TRANSFORMASI TOTAL BACKGROUND & CONTAINER */
/* ========================================================= */

body, .site-wrapper, .main-content, .bg-blue-default {
    background-image: none !important;
    background-color: #05000A !important; /* Hitam Pekat */
    color: #E0E0E0 !important;
  /* ANTI-PENCURIAN: Mencegah seleksi teks */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.site-content-container, .main-content-wrapper, .page-wrapper {
    background-color: #0D001A !important; 
    border: 2px solid #00FF00 !important; /* Neon Green Border */
    outline: 2px solid #BF00FF !important; /* Neon Purple Outline */
    outline-offset: -6px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2) !important;
}

/* Header & Topbar (Hapus Biru) */
.topbar-container, .site-header {
    background: #05000A !important;
    border-bottom: 3px solid #00FF00 !important;
    box-shadow: 0 5px 25px rgba(0, 255, 0, 0.3);
}

/* ========================================================= */
/* 3. LOGO FLAME: TRANSPARAN (HANYA GARIS NEON UNGU-BIRU) */
/* ========================================================= */

.site-header .top-menu>li>a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header .top-menu>li>a .icon, 
.site-header .top-menu>li>a img {
    width: 50px !important;
    height: 50px !important;
    padding: 3px;
    z-index: 5;
    
    /* Bentuk Flame sesuai gambar */
    clip-path: polygon(50% 0%, 80% 25%, 100% 55%, 85% 90%, 50% 100%, 15% 90%, 0% 55%, 20% 25%);
    
    /* TRANSPARAN: Hanya Garis Tepi (Border) */
    background: transparent !important; 
    border: 2px solid transparent !important;
    border-image: linear-gradient(180deg, #BF00FF, #00FFFF) 1 !important;
    
    animation: neon-outline-pulse 3s infinite ease-in-out;
    transition: all 0.5s ease;
}

/* Hover Logo: Berputar & Glow Menguat */
.site-header .top-menu>li:hover>a .icon, 
.site-header .top-menu>li:hover>a img {
    transform: rotate(360deg) scale(1.2);
    filter: brightness(2) drop-shadow(0 0 15px #00FFFF);
}

/* Cincin Jupiter: Tetap Berputar */
.site-header .top-menu>li>a::before {
    content: '';
    position: absolute;
    width: 75px; 
    height: 75px;
    top: -5px;
    left: 50%;
    margin-left: -37.5px;
    border: 3px solid;
    border-image: linear-gradient(to right, #00FF00, #ADFF2F) 1;
    border-radius: 50% !important;
    z-index: 1;
    transform: rotateX(75deg);
    animation: jupiter-ring-spin 5s infinite linear;
}

/* ========================================================= */
/* 4. TOMBOL: AURA SUPER SAIYA */
/* ========================================================= */

.login-panel .login-button:hover, 
.login-panel .register-button:hover {
    animation: saiya-aura-vibe 0.2s infinite !important;
    cursor: pointer;
    filter: brightness(1.4) saturate(1.4);
}

/* ========================================================= */
/* FINAL: JUDUL METEOR BLUE (GETAR) + ANCHOR NEON (TENANG)   */
/* ========================================================= */

/* 1. ANIMASI KHUSUS JUDUL (METEOR EXPLOSION & SHAKE) */
@keyframes stableMeteor {
    0% { 
        transform: translate(0, 0); 
        filter: drop-shadow(0 0 10px #00BFFF);
    }
    25% { 
        transform: translate(-0.5px, 0.5px); 
        filter: drop-shadow(0 0 20px #00BFFF) drop-shadow(0 0 40px #0000FF);
    }
    50% { 
        transform: translate(0.5px, -0.5px); 
        filter: drop-shadow(0 0 35px #00BFFF) drop-shadow(0 0 70px #0000FF);
    }
    75% { 
        transform: translate(-0.5px, -0.5px); 
        filter: drop-shadow(0 0 20px #00BFFF) drop-shadow(0 0 40px #0000FF);
    }
    100% { 
        transform: translate(0, 0); 
        filter: drop-shadow(0 0 10px #00BFFF);
    }
}

/* 2. ANIMASI DASAR LAINNYA */
@keyframes neonHollowFlow {
    0%   { -webkit-text-stroke: 1px #00FFFF; filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.4)); }
    33%  { -webkit-text-stroke: 1px #BF00FF; filter: drop-shadow(0 0 4px rgba(191, 0, 255, 0.4)); }
    66%  { -webkit-text-stroke: 1px #39FF14; filter: drop-shadow(0 0 3px rgba(57, 255, 20, 0.4)); }
    100% { -webkit-text-stroke: 1px #00FFFF; filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.4)); }
}

@keyframes neonSilverCyan {
    0%   { -webkit-text-stroke: 0.8px #FFFFFF; filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5)); }
    50%  { -webkit-text-stroke: 0.8px #4A4A4A; filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.2)); }
    100% { -webkit-text-stroke: 0.8px #FFFFFF; filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5)); }
}

@keyframes glassShine {
    0% { background-position: -200%; }
    100% { background-position: 200%; }
}

/* 3. JUDUL UTAMA (EFEK METEOR AKTIF) */
h1, h2, h3, .section-title, .title-wrapper h3 {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 1px;
    color: transparent; 
    -webkit-text-stroke: 1px #00FFFF; 
    animation: neonHollowFlow 7s linear infinite;
    transition: all 0.3s ease;
    cursor: default;
}

/* HOVER JUDUL: TETAP BERGETAR & MELEDAK */
h1:hover, h2:hover, h3:hover, .section-title:hover {
    font-style: normal !important;
    animation: stableMeteor 0.4s linear infinite !important;
    color: #FFFFFF !important;
    -webkit-text-stroke: 1.5px #00BFFF;
    text-shadow: 0 0 15px #00BFFF, 0 0 30px #0000FF;
}

/* 4. ANCHOR TEXT (GAYA KACA) */
.footer-links a, 
.link-list-container a, 
.site-footer a, 
.footer-container a,
[class*="link-item"] a {
    font-size: 0.75rem !important; 
    font-style: italic; 
    font-weight: 600;
    text-decoration: none;
    color: #FFFFFF !important; 
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 4px 8px;
    margin: 2px 0;
    border-radius: 4px;
    background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 70%);
    background-size: 200% 100%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    animation: neonSilverCyan 5s ease-in-out infinite, glassShine 3s linear infinite !important;
    transition: all 0.3s ease;
}

/* HOVER ANCHOR: SEKARANG TENANG (TIDAK BERGETAR) */
.footer-links a:hover, 
.link-list-container a:hover, 
.site-footer a:hover, 
.footer-container a:hover,
[class*="link-item"] a:hover {
    font-style: normal !important;
    animation: glassShine 3s linear infinite !important; /* Getar dihilangkan */
    background-color: rgba(0, 255, 204, 0.15) !important;
    border: 1px solid #00FFCC !important;
    color: #FFFFFF !important;
    -webkit-text-stroke: 0.8px #00FFCC;
    filter: drop-shadow(0 0 8px #00FFCC) drop-shadow(0 0 15px #00FFFF) !important;
    text-shadow: 0 0 10px #00FFCC, 0 0 20px #00FFFF;
}

/* 5. TEKS PARAGRAF & COPYRIGHT */
p, .description-text, .text-muted {
    color: #B0B0FF;
    font-size: 0.95rem;
    line-height: 1.5;
}

.copyright-text, .site-info {
    font-size: 0.8rem;
    color: #FFA500;
    opacity: 0.8;
}