/* Global Vars & Reset */
:root {
    --solana-purple: #9945FF;
    --solana-green: #14F195;
    --bg-dark: #0F172A;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: white;
    margin: 0;
    overflow-x: hidden;
}

.font-cyber {
    font-family: 'Orbitron', sans-serif;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--solana-purple) 0%, var(--solana-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(20, 241, 149, 0.2);
    border-color: rgba(20, 241, 149, 0.3);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.15) 0%, rgba(20, 241, 149, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Buttons */
.btn-primary {
    position: relative;
    padding: 1rem 2.5rem;
    background: white;
    color: black;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(20, 241, 149, 0.3);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(153, 69, 255, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}
