/* --- CONFIG & CONFIGURATION VARIABLES --- */
:root {
    --bg-sky: #E0F2FE; /* Biru Langit Cerah */
    --primary: #38BDF8; /* Biru Web3 */
    --roo-brown: #8B4513; /* Cokelat Kangguru Pohon */
    --roo-orange: #F97316; /* Oranye Hangat Kangguru */
    --roo-cream: #FEF3C7; /* Krem Lembut */
    --white: #FFFFFF;
    --dark: #1E293B;
    --nav-bg: #0C4A6E;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /* Mencegah highlight biru saat elemen ditekan di mobile browser */
    -webkit-tap-highlight-color: transparent; 
}

body {
    background-color: #0F172A; /* Latar belakang luar (hanya terlihat di desktop) */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--dark);
}

/* --- FULL SCREEN & RESPONSIVE CONTAINER --- */
.phone-container {
    width: 100%;
    height: 100vh; /* Mengambil tinggi penuh layar wallet / device */
    background: var(--bg-sky);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    
    /* PENTING: Menghapus border & border-radius bawaan simulator agar full screen di Mobile */
    box-shadow: none;
    border-radius: 0;
    border: none;
}

/* --- RESPONSIVE MEDIA QUERY FOR DESKTOP --- */
/* Jika dibuka di desktop (layar lebar), container akan mengunci ukuran maksimal agar UI tidak melar */
@media (min-width: 480px) {
    .phone-container {
        max-width: 420px;
        height: 840px;
        border-radius: 30px;
        border: 6px solid #334155;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    }
}

/* --- STATIC HEADER --- */
.static-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Dukungan untuk iOS WebKit (Safari/Bitget iOS) */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 3px dashed var(--primary);
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}
.static-header.active {
    transform: translateY(0);
}
.logo-placeholder {
    width: 40px;
    height: 40px;
    background: var(--roo-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    border: 2px solid var(--roo-brown);
    box-shadow: 0 4px 0 var(--roo-brown);
}
.brand-title {
    font-size: 24px;
    color: var(--roo-brown);
    font-weight: 900;
    text-shadow: 3px 3px 0px var(--roo-cream);
    letter-spacing: 1px;
}
.user-status {
    background: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid var(--primary);
    color: var(--roo-brown);
}

/* --- SCREENS BASE STYLE --- */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    /* Padding disesuaikan agar konten tidak terpotong oleh Header (atas) dan Bottom Nav (bawah) */
    padding: 85px 20px 95px 20px;
    overflow-y: auto;
    scroll-behavior: smooth;
    /* Menghaluskan scroll di perangkat iOS */
    -webkit-overflow-scrolling: touch; 
}
.screen.active {
    display: flex;
}

/* --- 1. SPLASH SCREEN --- */
#splash-screen {
    background: radial-gradient(circle, var(--bg-sky) 0%, var(--primary) 100%);
    z-index: 200;
    padding: 0;
    justify-content: center;
    align-items: center;
    display: flex;
}
.splash-anim-container {
    text-align: center;
}
.jumping-kangaroo {
    font-size: 80px;
    animation: bounce 0.6s infinite alternate;
    display: inline-block;
    margin-bottom: 20px;
}
@keyframes bounce {
    from { transform: translateY(0) scaleX(1); }
    to { transform: translateY(-40px) scaleX(0.9); }
}
.splash-title {
    font-size: 36px;
    color: var(--roo-brown);
    font-weight: 900;
    text-shadow: 3px 3px 0px var(--roo-cream);
    letter-spacing: 2px;
}
.splash-tagline {
    color: var(--white);
    font-weight: bold;
    background: var(--roo-orange);
    padding: 5px 15px;
    border-radius: 15px;
    margin-top: 10px;
    display: inline-block;
}
/* --- ROOBIT PREMIUM LOADING PAGE STYLE --- */
#roobit-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #0C4A6E 0%, #0F172A 100%); /* Gradasi gelap Web3 Cyber */
    z-index: 9999; /* Memastikan berada di paling atas layar */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-wrapper {
    text-align: center;
    width: 100%;
    max-width: 320px;
    padding: 20px;
}

/* --- ANIMASI KANGGURU LOMPAT & BAYANGAN --- */
.kangaroo-container {
    position: relative;
    width: 100px;
    height: 140px;
    margin: 0 auto 25px auto;
}

.pixel-kangaroo {
    font-size: 75px;
    line-height: 1;
    animation: rooJump 0.6s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.6)); /* Efek menyala oranye */
}

.kangaroo-shadow {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(2px);
    animation: shadowScale 0.6s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Keyframes Pergerakan Kangguru */
@keyframes rooJump {
    0% {
        transform: translateY(0) scaleY(0.9) scaleX(1.05);
    }
    35% {
        transform: translateY(-10px) scaleY(1) scaleX(1); /* Efek bersiap melompat */
    }
    100% {
        transform: translateY(-55px) scaleY(1.1) scaleX(0.95); /* Meregang di udara */
    }
}

/* Keyframes Perubahan Ukuran Bayangan (Mengecil saat kangguru di atas) */
@keyframes shadowScale {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) scale(0.4);
        opacity: 0.2;
    }
}
/* --- ROOBIT GLASSMORPHISM OVERLAY LOADER --- */
#roobit-tx-loader {
    position: absolute; /* Mengunci hanya di dalam area DApp container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Latar belakang gelap semi-transparan */
    background: rgba(15, 23, 42, 0.6); 
    /* Efek buram canggih pada elemen di belakangnya */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Dukungan iOS WebKit / Bitget iOS */
    z-index: 2000; /* Di atas layar screen, di bawah splash screen utama */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}
#roobit-game-loader {
    position: absolute; /* Mengunci hanya di dalam area DApp container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Latar belakang gelap semi-transparan */
    background: rgba(15, 23, 42, 0.6); 
    /* Efek buram canggih pada elemen di belakangnya */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Dukungan iOS WebKit / Bitget iOS */
    z-index: 2000; /* Di atas layar screen, di bawah splash screen utama */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Utilitas untuk menyembunyikan loader via JavaScript */
#roobit-tx-loader.hidden {
    opacity: 0;
    pointer-events: none; /* Mencegah user klik saat tidak aktif */
    display: none;
}
#roobit-game-loader.hidden {
    opacity: 0;
    pointer-events: none; /* Mencegah user klik saat tidak aktif */
    display: none;
}

/* Kartu Tengah yang Mengambang */
.glass-loader-card {
    background: rgba(255, 255, 255, 0.85);
    border: 3px solid var(--roo-brown);
    border-radius: 24px;
    padding: 30px 20px;
    width: 80%;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- ANIMATION MULTI-ELEMENT SPINNER --- */
.roo-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
}

.spinner-dot {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 20px;
}

/* Animasi berputar melingkar yang halus */
.dot-1 { animation: rooRotate 1.2s infinite linear; }
.dot-2 { animation: rooRotate 1.2s infinite linear; animation-delay: -0.4s; font-size: 14px; }
.dot-3 { animation: rooRotate 1.2s infinite linear; animation-delay: -0.8s; font-size: 10px; opacity: 0.6; }

@keyframes rooRotate {
    to { transform: rotate(360deg); }
}

/* --- TYPOGRAPHY INSIDE LOADER --- */
.tx-loading-text {
    font-size: 15px;
    font-weight: 800;
    color: var(--roo-brown);
    margin-bottom: 4px;
}

.tx-subtext {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    animation: blinkText 1s infinite alternate;
}

@keyframes blinkText {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* --- TEXT DESIGN --- */
.loader-title {
    font-size: 42px;
    font-weight: 900;
    color: #F97316; /* Warna Oranye Kangguru */
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.4), 3px 3px 0px #FEF3C7;
    margin-bottom: 5px;
    animation: pulseText 1.5s infinite ease-in-out;
}

.loader-subtitle {
    font-size: 13px;
    color: #38BDF8; /* Biru Web3 */
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 30px;
    opacity: 0.8;
}

@keyframes pulseText {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.9; }
}

/* --- CUSTOM LOADING TRACK & PROGRESS (JALUR LOMPATAN) --- */
.loading-track {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid #8B4513; /* Batas Cokelat */
    padding: 1px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F97316 0%, #38BDF8 50%, #34D399 100%);
    background-size: 200% 100%;
    border-radius: 20px;
    /* Durasi simulasi loading (bisa diubah sesuai logika JavaScript Anda nanti) */
    animation: fillProgress 3.5s infinite ease-in-out, gradientShift 2s linear infinite;
}

@keyframes fillProgress {
    0% { width: 0%; }
    20% { width: 25%; }
    45% { width: 50%; }
    70% { width: 85%; }
    100% { width: 100%; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* --- 2. CONNECT WALLET --- */
#connect-screen {
    justify-content: center;
    background: var(--bg-sky);
    z-index: 150;
}
.connect-welcome {
    text-align: center; 
    margin-bottom: 40px;
}
.connect-icon {
    font-size: 60px;
    background: transparent;
}
.connect-welcome h2 {
    color: var(--roo-brown); 
    font-weight: 800;
}
.connect-welcome p {
    color: #64748B;
}
.btn-wallet {
    background: var(--white);
    border: 3px solid var(--roo-brown);
    padding: 15px;
    border-radius: 20px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 0 var(--roo-brown);
    transition: transform 0.1s;
    width: 100%;
}
.btn-wallet:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 var(--roo-brown);
}
.btn-wallet.metamask { border-color: #F6851B; box-shadow: 0 6px 0 #F6851B; }
.btn-wallet.telegram { border-color: #229ED9; box-shadow: 0 6px 0 #229ED9; }
.btn-wallet.telegram i {
    font-size: 24px; 
    color: white; 
    background: #229ED9; 
    padding: 5px; 
    border-radius: 50%;
}

/* --- REUSABLE CARD CONTAINER --- */
.card {
    background: var(--white);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 15px;
    border: 3px solid var(--roo-brown);
    box-shadow: 0 6px 0 var(--roo-brown);
}

/* --- 3. DASHBOARD COMPONENTS --- */
.hero-section {
    background: linear-gradient(135deg, var(--roo-orange), var(--roo-brown));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section h2 {
    font-weight: 900; 
    margin-bottom: 5px;
}
.hero-section p {
    font-size: 14px; 
    opacity: 0.9;
}
.hero-kangaroo {
    font-size: 50px;
    animation: wiggle 2s infinite ease-in-out;
}
@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}
.global-pool-card {
    text-align: center; 
    background: var(--roo-cream);
}
.pool-label {
    font-weight: bold; 
    color: var(--roo-brown);
}
.pool-amount {
    font-weight: 900; 
    color: var(--roo-orange); 
    font-size: 32px;
}
.project-desc {
    font-size: 14px; 
    color: #475569; 
    line-height: 1.5;
}
.card h3 {
    margin-bottom: 10px; 
    color: var(--roo-brown);
}

/* --- 4. TASK COMPONENTS --- */
.stats-card {
    background: var(--primary); 
    color: white; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
.stats-label {
    font-size: 12px; 
    font-weight: bold;
}
.stats-card h2 { font-weight: 900; }
.stats-card h3 { font-weight: 800; color: white; margin: 0; }

.stage-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}
/* Menyembunyikan scrollbar bawaan di tab navigasi task agar mulus */
.stage-tabs::-webkit-scrollbar {
    display: none;
}
.stage-tab {
    background: var(--white);
    border: 2px solid var(--roo-brown);
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}
.stage-tab.active {
    background: var(--roo-orange);
    color: white;
}
.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-sky);
    margin-bottom: 8px;
    border-radius: 14px;
    border: 2px solid #BAE6FD;
}
.btn-claim {
    background: var(--roo-orange);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}
.stage-tab.locked {
    opacity: 0.5;
    cursor: not-allowed;
    background: #1e293b !important;
    border-color: rgba(255,255,255,0.05) !important;
    color: #64748b !important;
}

/* Container Pesan Terkunci di dalam Tasks Container */
.locked-stage-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(12, 74, 110, 0.5);
    border: 2px dashed #F97316;
    border-radius: 12px;
    color: #fff;
    margin-top: 10px;
}
.locked-stage-message i {
    font-size: 40px;
    color: #F97316;
    margin-bottom: 15px;
}

/* --- 5. WALLET COMPONENTS --- */
.wallet-tabs {
    display: flex;
    border: 3px solid var(--roo-brown);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 0 var(--roo-brown);
}
.w-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: var(--white);
    font-weight: bold;
    cursor: pointer;
    border: none;
}
.w-tab.active {
    background: var(--primary);
    color: white;
}
.wallet-content { display: none; }
.wallet-content.active { display: block; }

.airdrop-balance-card {
    background: linear-gradient(to right, #0284c7, #38bdf8); 
    color: white;
}
.airdrop-balance-card h1 {
    font-weight: 900; 
    font-size: 36px;
}
.tge-note {
    font-size: 11px; 
    margin-top: 10px; 
    opacity: 0.8;
}
.user-address-card p.address-label {
    color: #64748B; 
    font-size: 14px;
}
#wallet-address-display {
    font-weight: bold; 
    font-family: monospace; 
    font-size: 14px; 
    margin-bottom: 15px;
    word-break: break-all; /* Agar address panjang tidak keluar layar mobile */
}
.divider {
    border: 1px dashed #cbd5e1; 
    margin-bottom: 15px;
}
.mainnet-row {
    display: flex; 
    justify-content: space-between;
}
.mainnet-balance {
    font-weight: bold;
}

/* --- 6. SHARE COMPONENTS --- */
.share-card {
    text-align: center;
}
.share-subtitle {
    font-size: 14px; 
    color: #64748B; 
    margin-bottom: 15px;
}
.ref-stats-container {
    display: flex; 
    justify-content: space-around; 
    margin: 20px 0;
}
.ref-stats-container h2 {
    font-weight: 900;
}
#ref-count { color: var(--roo-orange); }
#ref-bonus { color: var(--primary); }
.ref-stats-container p {
    font-size: 12px; 
    font-weight: bold;
}
.qr-placeholder {
    width: 150px;
    height: 150px;
    background: #ddd;
    margin: 15px auto;
    border: 4px solid var(--roo-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    position: relative;
}
.copy-box {
    display: flex;
    background: var(--bg-sky);
    padding: 10px;
    border-radius: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    gap: 10px;
}
.copy-box span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* Mengunci teks link agar tidak berantakan di layar kecil */
}

/* --- 7. GAME COMPONENTS --- */
.game-intro-card {
    text-align: center; 
    margin-bottom: 10px;
}
.game-intro-card p {
    font-size: 13px; 
    color: #64748B;
}
.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    position: relative;
}
.game-box {
    height: 90px;
    background: var(--roo-cream);
    border: 3px solid var(--roo-brown);
    border-radius: 16px;
    box-shadow: 0 6px 0 var(--roo-brown);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.2s;
}
.game-box:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 var(--roo-brown);
}
.game-kangaroo-jumper {
    position: absolute;
    font-size: 35px;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    display: none;
}
@keyframes roobitBoxShake {
    0% { transform: translate(0, 0) rotate(0deg); }
    2% { transform: translate(-1px, 1px) rotate(-0.5deg); }
    4% { transform: translate(1px, -1px) rotate(0.5deg); }
    6% { transform: translate(-1px, -1px) rotate(-0.5deg); }
    8% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(0deg); } 
    /* Jarak dari 10% ke 100% memberi jeda diam sebelum box bergetar kembali */
}

/* 2. Pasang Animasi pada Class Game Box */
.game-box {
    display: inline-block; /* Memastikan transform rotasi bekerja sempurna */
    transition: transform 0.2s ease;
    /* Jalankan animasi selama 4 detik secara berulang (infinite) */
    animation: roobitBoxShake 4s ease-in-out infinite; 
}

/* 3. Atur Jeda Waktu (Animation Delay) Bergantian Berdasarkan Urutan Box */
.game-grid .game-box:nth-child(1) { animation-delay: 0.0s; }
.game-grid .game-box:nth-child(2) { animation-delay: 0.6s; }
.game-grid .game-box:nth-child(3) { animation-delay: 1.2s; }
.game-grid .game-box:nth-child(4) { animation-delay: 1.8s; }
.game-grid .game-box:nth-child(5) { animation-delay: 2.4s; }
.game-grid .game-box:nth-child(6) { animation-delay: 3.0s; }

/* 4. Efek Interaktif Tambahan Saat Kursor Diarahkan (Hover) */
.game-box:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.6)); /* Glow Orange Khas Roobit */
    animation-play-state: paused; /* Getaran berhenti sementara saat fokus mau diklik */
}

/* --- UNIQUE & CREATIVE BOTTOM NAVIGATION --- */
.bottom-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--nav-bg);
    height: 75px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom, 10px); /* Dukungan "notch/home indicator" pada iPhone & Android baru */
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.bottom-nav.active {
    transform: translateY(0);
}
.nav-item {
    color: #7DD3FC;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Navigation Active State Jump Trigger */
.nav-item.active {
    color: var(--white);
    background: var(--roo-orange);
    border-radius: 50%;
    transform: translateY(-20px) scale(1.1);
    border: 4px solid var(--bg-sky);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}
.nav-item span {
    position: absolute;
    font-size: 10px;
    bottom: -12px;
    font-weight: bold;
    opacity: 0;
    white-space: nowrap;
}
.nav-item.active span {
    opacity: 1;
    color: var(--nav-bg);
    bottom: -22px;
}
/* Container Utama */
.social-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
}

/* Base Style Tombol */
.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #0f172a; /* Warna gelap dasar */
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Efek Hover & Glow Masing-masing Medsos */
.social-btn.telegram:hover {
    color: #0088cc;
    border-color: #0088cc;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
    transform: translateY(-3px);
}

.social-btn.twitter:hover {
    color: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.5);
    transform: translateY(-3px);
}

.social-btn.discord:hover {
    color: #5865f2;
    border-color: #5865f2;
    box-shadow: 0 0 15px rgba(88, 101, 246, 0.5);
    transform: translateY(-3px);
}

.social-btn.youtube:hover {
    color: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px);
}