/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: rgba(18, 18, 18, 0.8);
    --bg-card-hover: rgba(25, 25, 25, 0.95);
    --text-primary: #ededed;
    --text-secondary: #b0b0b0;
    --text-tertiary: #d0d0d0;
    --accent-cyan: #4ecdc4;
    --accent-coral: #ff6b6b;
    --accent-yellow: #ffe66d;
    --border-light: rgba(255,255,255,0.03);
    --border-hover: rgba(78, 205, 196, 0.3);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.2);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.4);
    --shadow-lg: 0 30px 60px rgba(0,0,0,0.6);
    --font-inter: 'Inter', sans-serif;
    --font-playfair: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-primary);
    font-family: var(--font-inter);
    color: var(--text-primary);
    line-height: 1.6;
    background-image: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 25%),
                      radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 30%);
    background-attachment: fixed;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* ==================== HEADER SECTION ==================== */
.header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.header h1 {
    font-family: var(--font-playfair);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255,255,255,0.1);
}

.header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-coral), var(--accent-cyan), var(--accent-yellow));
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
}

.header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 2rem auto 0;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* ==================== LOADING INDICATOR ==================== */
.loading-container {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top-color: var(--accent-cyan);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== ERROR CONTAINER ==================== */
.error-container {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255,107,107,0.1);
    border-radius: 20px;
    border: 1px solid rgba(255,107,107,0.3);
    margin: 2rem 0;
}

.error-container i {
    font-size: 3rem;
    color: var(--accent-coral);
    margin-bottom: 1rem;
}

.error-container h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.error-container p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ==================== FILTER PILLS ==================== */
.filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-pill {
    padding: 0.7rem 1.8rem;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
}

.filter-pill:hover {
    background: rgba(40, 40, 40, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-cyan));
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
    font-weight: 600;
}

/* ==================== CATALOG GRID ==================== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    transition: all 0.2s ease;
}

/* ==================== CARD STYLES ==================== */
.catalog-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.02) inset;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}

.catalog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-hover) inset;
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.card-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.card-icon {
    font-size: 3.8rem;
    color: white;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    z-index: 2;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 1.3rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.catalog-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,255,255,0.15);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.3);
}

.card-content {
    padding: 2rem 1.8rem 2.2rem;
    background: transparent;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: inline-block;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.3);
    width: fit-content;
}

.card-title {
    font-family: var(--font-playfair);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
    font-weight: 400;
    flex-grow: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.3rem;
    font-size: 0.9rem;
}

.badge {
    background: rgba(255,255,255,0.05);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
}

.badge i {
    font-size: 0.7rem;
    color: var(--accent-yellow);
}

.btn-detail {
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    pointer-events: none;
}

.catalog-card:hover .btn-detail {
    color: var(--accent-yellow);
    border-bottom-color: rgba(255, 230, 109, 0.5);
}

.catalog-card:hover .btn-detail i {
    transform: translateX(6px);
    color: var(--accent-yellow);
}

.btn-detail i {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.external-link-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    padding: 8px 14px;
    border-radius: 30px;
    color: white;
    font-size: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.catalog-card:hover .external-link-indicator {
    opacity: 1;
}

.external-link-indicator i {
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

/* ==================== MODAL STYLES ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 32px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(78, 205, 196, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: var(--font-playfair);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-description {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.modal-url {
    background: rgba(0,0,0,0.5);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    word-break: break-all;
    margin-bottom: 2rem;
    font-family: monospace;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-cyan));
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.modal-btn-secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.modal-btn-cancel {
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.05);
}

.modal-btn-cancel:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}

/* ==================== SETTINGS ==================== */
.setting-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.browser-setting {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.browser-setting label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    cursor: pointer;
}

.browser-setting input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--accent-cyan);
}

/* ==================== FOOTER ==================== */
.footer-note {
    margin-top: 5rem;
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #888;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
}

.footer-note::before {
    content: '✦';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    padding: 0 1.5rem;
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

/* ==================== GRADIENT BACKGROUNDS ==================== */
.bg-gradient-1 { 
    background: linear-gradient(145deg, #2c3e50, #1a2634);
    background-image: radial-gradient(circle at 0% 0%, #34495e, #1e272e);
}
.bg-gradient-2 { 
    background: linear-gradient(145deg, #373b44, #1e2127);
    background-image: radial-gradient(circle at 100% 0%, #4a4e5c, #2c2f36);
}
.bg-gradient-3 { 
    background: linear-gradient(145deg, #3a4e4b, #1e2c2a);
    background-image: radial-gradient(circle at 0% 100%, #4b6b66, #1f2f2c);
}
.bg-gradient-4 { 
    background: linear-gradient(145deg, #4a3f45, #2a2327);
    background-image: radial-gradient(circle at 100% 100%, #5e4e56, #2e262b);
}
.bg-gradient-5 { 
    background: linear-gradient(145deg, #2d404e, #1d2c35);
    background-image: radial-gradient(circle at 0% 50%, #3e5a68, #1e2f38);
}
.bg-gradient-6 { 
    background: linear-gradient(145deg, #3e3a4a, #24212e);
    background-image: radial-gradient(circle at 100% 50%, #53516b, #2c2a37);
}
.bg-gradient-7 { 
    background: linear-gradient(145deg, #4a4036, #2e2721);
    background-image: radial-gradient(circle at 50% 0%, #635748, #302a24);
}
.bg-gradient-8 { 
    background: linear-gradient(145deg, #354044, #212a2d);
    background-image: radial-gradient(circle at 50% 100%, #4a5a5e, #232f32);
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    .header h1 {
        font-size: 2.8rem;
    }
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    .modal-content {
        padding: 2rem;
    }
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2.2rem;
    }
    .card-title {
        font-size: 1.5rem;
    }
}
/* ==================== FLOATING BUTTON 3D GLOBE - FIXED VERSION ==================== */
.floating-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Floating Button - Ukuran Lebih Besar */
.floating-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-bottom: 10px;
}

/* ===== 3D GLOBE ===== */
.globe-3d {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    transform-style: preserve-3d;
    animation: globeRotate 15s linear infinite;
    box-shadow: 
        0 0 50px rgba(78, 205, 196, 0.3),
        0 0 0 2px rgba(78, 205, 196, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
}

/* Sphere Core */
.sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        #4ecdc4 0%,
        #2c8f89 50%,
        #1a5a5a 100%);
    box-shadow: 
        inset -10px -10px 30px rgba(0,0,0,0.7),
        inset 10px 10px 30px rgba(255,255,255,0.3);
    transform: translateZ(0px);
}

/* Grid Lines */
.grid {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 255, 255, 0.4);
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.5);
}

.lat-1 {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-bottom: none;
    border-left: none;
    border-right: none;
    transform: rotateX(60deg) translateZ(2px);
}

.lat-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top: none;
    border-left: none;
    border-right: none;
    transform: rotateX(-30deg) translateZ(4px);
}

.lat-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-bottom: none;
    border-left: none;
    border-right: none;
    transform: rotateX(45deg) translateZ(6px);
}

.lon-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left: 1px solid rgba(200, 255, 255, 0.4);
    border-right: none;
    border-top: none;
    border-bottom: none;
    transform: rotateY(30deg) translateZ(8px);
}

.lon-2 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left: 1px solid rgba(200, 255, 255, 0.4);
    border-right: none;
    border-top: none;
    border-bottom: none;
    transform: rotateY(90deg) translateZ(10px);
}

.lon-3 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left: 1px solid rgba(200, 255, 255, 0.4);
    border-right: none;
    border-top: none;
    border-bottom: none;
    transform: rotateY(150deg) translateZ(12px);
}

.lon-4 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left: 1px solid rgba(200, 255, 255, 0.4);
    border-right: none;
    border-top: none;
    border-bottom: none;
    transform: rotateY(210deg) translateZ(14px);
}

/* Continents - Fixed Posisi */
.continent {
    position: absolute;
    border-radius: 50%;
    box-shadow: 
        inset -2px -2px 5px rgba(0,0,0,0.3),
        inset 2px 2px 5px rgba(255,255,255,0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.africa {
    width: 25%;
    height: 28%;
    top: 36%;
    left: 46%;
    background: radial-gradient(circle at 40% 50%, #66bb6a, #2e7d32);
    border-radius: 60% 40% 50% 50%;
    transform: rotate(-5deg) translateZ(16px);
    opacity: 0.9;
}

.eurasia {
    width: 45%;
    height: 32%;
    top: 22%;
    left: 42%;
    background: radial-gradient(circle at 30% 40%, #81c784, #388e3c);
    border-radius: 70% 30% 60% 40%;
    transform: rotate(8deg) translateZ(18px);
    opacity: 0.9;
}

.north-america {
    width: 30%;
    height: 24%;
    top: 22%;
    left: 14%;
    background: radial-gradient(circle at 30% 40%, #81c784, #388e3c);
    border-radius: 40% 60% 40% 60%;
    transform: rotate(-8deg) translateZ(20px);
    opacity: 0.9;
}

.south-america {
    width: 16%;
    height: 24%;
    top: 46%;
    left: 19%;
    background: radial-gradient(circle at 40% 50%, #66bb6a, #2e7d32);
    border-radius: 40% 60% 50% 50%;
    transform: rotate(5deg) translateZ(22px);
    opacity: 0.9;
}

.australia {
    width: 14%;
    height: 12%;
    top: 68%;
    left: 76%;
    background: radial-gradient(circle at 50% 50%, #81c784, #388e3c);
    border-radius: 50% 50% 60% 40%;
    transform: rotate(-12deg) translateZ(24px);
    opacity: 0.9;
}

.antarctica {
    width: 40%;
    height: 12%;
    bottom: 6%;
    left: 30%;
    background: radial-gradient(circle at 50% 50%, #b3e5fc, #4fc3f7);
    border-radius: 50% 50% 30% 70%;
    transform: translateZ(26px);
    opacity: 0.8;
}

/* Shading & Effects */
.shadow-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        transparent 0%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.6) 100%);
    transform: translateZ(28px);
    pointer-events: none;
}

.highlight {
    position: absolute;
    width: 35%;
    height: 35%;
    top: 15%;
    left: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.4) 0%,
        transparent 80%);
    filter: blur(5px);
    transform: translateZ(30px);
    pointer-events: none;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 50%, 
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%);
    animation: cloudMove 12s ease-in-out infinite;
    transform: translateZ(32px);
    pointer-events: none;
}

/* Stars */
.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px white;
    animation: starTwinkle 2s ease-in-out infinite;
    transform: translateZ(40px);
}

.star-1 { top: 5%; left: 15%; }
.star-2 { top: 85%; left: 90%; width: 5px; height: 5px; animation-delay: 0.5s; }
.star-3 { top: 25%; left: 88%; animation-delay: 1s; }
.star-4 { top: 90%; left: 10%; width: 3px; height: 3px; animation-delay: 1.5s; }
.star-5 { top: 45%; left: 5%; animation-delay: 0.2s; }
.star-6 { top: 10%; left: 92%; width: 5px; height: 5px; animation-delay: 0.7s; }
.star-7 { top: 95%; left: 45%; animation-delay: 1.2s; }
.star-8 { top: 60%; left: 98%; width: 3px; height: 3px; animation-delay: 0.9s; }

/* Close Icon */
.close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 42px;
    color: white;
    text-shadow: 0 0 30px #ff6b6b, 0 0 60px #ff6b6b;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    z-index: 100;
}

.floating-button.active .globe-3d {
    animation: globeRotate 5s linear infinite;
    opacity: 0.2;
    filter: blur(3px);
}

.floating-button.active .close-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Floating Menu */
.floating-menu {
    position: absolute;
    bottom: 110px;
    right: 0;
    width: 360px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.8),
        0 0 0 2px rgba(78, 205, 196, 0.3),
        inset 0 0 30px rgba(78, 205, 196, 0.1);
    padding: 25px;
    transform: scale(0) translateY(50px);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.floating-menu.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Menu Items */
.menu-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #4ecdc4, #ffe66d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-subtitle {
    font-size: 0.8rem;
    color: #b0b0b0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
}

.menu-item:hover {
    background: rgba(78,205,196,0.15);
    transform: translateX(-5px) scale(1.02);
    border-color: rgba(78,205,196,0.4);
    box-shadow: 0 8px 20px rgba(78,205,196,0.25);
}

.menu-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp { background: linear-gradient(145deg, #25D366, #128C7E); color: white; }
.telegram { background: linear-gradient(145deg, #0088cc, #00405d); color: white; }
.email { background: linear-gradient(145deg, #EA4335, #B23121); color: white; }
.download { background: linear-gradient(145deg, #4ecdc4, #2c8f89); color: white; }
.saweria { background: linear-gradient(145deg, #FAA916, #B3700E); color: white; }

.menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-item-title {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.menu-item-desc {
    color: #b0b0b0;
    font-size: 0.75rem;
}

.menu-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 0.7rem;
}

/* Animations */
@keyframes globeRotate {
    0% { transform: rotateY(0deg) rotateX(15deg); }
    100% { transform: rotateY(360deg) rotateX(15deg); }
}

@keyframes cloudMove {
    0%, 100% { 
        transform: translateZ(32px) translateX(0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateZ(32px) translateX(8px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.8);
        box-shadow: 0 0 30px white;
    }
}

/* Ripple Effect */
.floating-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #4ecdc4;
    animation: ripple 2.5s ease-out infinite;
    opacity: 0;
    pointer-events: none;
}

.floating-button:hover::after {
    opacity: 1;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-button {
        width: 90px;
        height: 90px;
    }
    .floating-menu {
        width: 320px;
        right: 0;
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .floating-button {
        width: 80px;
        height: 80px;
    }
    .floating-menu {
        width: 300px;
        padding: 20px;
    }
    .close-icon {
        font-size: 36px;
    }
}
/* ===== NEON CYBER ===== */
.globe-3d.neon-cyber {
    background: radial-gradient(circle at 30% 30%, 
        #0a0a0a 0%,
        #1a1a2a 50%,
        #0a0a1a 100%);
    border: 2px solid #4ecdc4;
    box-shadow: 
        0 0 60px rgba(78, 205, 196, 0.6),
        0 0 0 3px rgba(78, 205, 196, 0.3),
        inset 0 0 40px rgba(78, 205, 196, 0.3);
}

.neon-cyber .grid {
    border: 1px solid #4ecdc4;
    box-shadow: 0 0 15px #4ecdc4;
}

.neon-cyber .continent {
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid #4ecdc4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
}

.neon-cyber .sphere {
    display: none;
}