/* ========================================================= 
   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;
}

.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);
}

/* ========================================================= */
/* 5. TEKS FOOTER: TRANSPARAN DENGAN GARIS NEON ORANGE */
/* ========================================================= */

.footer-links, .pre-footer-content, footer span, footer p, .copyright {
    color: transparent !important; /* Tengah transparan */
    
    /* Garis Tepi Neon Orange Redup */
    -webkit-text-stroke: 1px rgba(255, 140, 0, 0.4); 
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.1);
    
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links:hover, .copyright:hover {
    -webkit-text-stroke: 1.2px rgba(255, 165, 0, 0.8);
    text-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

/* Footer Container */
footer, .site-footer {
    background-color: #05000A !important;
    border-top: 3px solid #00FF00 !important;
    box-shadow: 0 -10px 30px rgba(0, 255, 0, 0.2);
}