:root {
    --primary: #00f2ff;
    --secondary: #7000ff;
    --accent: #ff007a;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #02040a;
    color: #ffffff;
    overflow-x: hidden;
    margin: 0;
}

.orbitron { font-family: 'Orbitron', sans-serif; }

/* Animated Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0a0f1d 0%, #02040a 100%);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Running Border */
.premium-border {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-border::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, var(--primary), var(--secondary), var(--accent), transparent 30%);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
}

.premium-border::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #0d111a;
    border-radius: 20px;
    z-index: -1;
}

@keyframes rotate-border {
    100% { transform: rotate(360deg); }
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-glow {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 35px rgba(255, 0, 122, 0.6);
    transform: scale(1.05);
}

.icon-circle {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem !important; }
}