@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFEA80;
}

/* Neon Text */
.neon-text-gold {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4), 
                 0 0 10px rgba(255, 215, 0, 0.4), 
                 0 0 20px rgba(255, 215, 0, 0.3), 
                 0 0 40px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.neon-text-gold:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 
                 0 0 20px rgba(255, 215, 0, 0.6), 
                 0 0 30px rgba(255, 215, 0, 0.4), 
                 0 0 60px rgba(255, 215, 0, 0.2);
}

/* Glassmorphism Panels */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Shimmer Effect for Cards */
.shimmer-card {
    position: relative;
    overflow: hidden;
}

.shimmer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.05), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Neon Box Glow on Hover */
.neon-box {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1), inset 0 0 5px rgba(255, 215, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.neon-box:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3), inset 0 0 15px rgba(255, 215, 0, 0.1);
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Floating Action Buttons Animations */
.float-pulse-green {
    animation: float-pulse-green 2s infinite ease-in-out;
}

@keyframes float-pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); }
}

.float-pulse-red {
    animation: float-pulse-red 2s infinite ease-in-out;
    animation-delay: 1s;
}

@keyframes float-pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 59, 48, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 59, 48, 0.8), 0 0 40px rgba(255, 59, 48, 0.4); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 59, 48, 0.5); }
}

/* Hero Background and Glow */
.hero-bg {
    background: radial-gradient(circle at center, rgba(30,25,0,1) 0%, rgba(5,5,5,1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 60%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 8s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse-glow {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button scale animation */
.btn-scale {
    transition: all 0.2s ease;
}
.btn-scale:active {
    transform: scale(0.95);
}

/* Magic Effects (Shooting Stars & Fire Embers) */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: shooting-star linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

@keyframes shooting-star {
    0% { transform: translateX(0) translateY(0) rotate(-45deg); opacity: 1; }
    100% { transform: translateX(-1500px) translateY(1500px) rotate(-45deg); opacity: 0; }
}

.ember {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF4500, 0 0 20px #FFD700;
    animation: float-ember linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

@keyframes float-ember {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 0.8; }
    100% { transform: translate(var(--ember-x, 20px), -300px) scale(0.2); opacity: 0; }
}
