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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Glassmorphism Base Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(6, 182, 212, 0.1),
        0 0 20px rgba(147, 51, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(6, 182, 212, 0.1),
        rgba(147, 51, 234, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card-large {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(6, 182, 212, 0.08),
        0 0 40px rgba(147, 51, 234, 0.15);
}

/* Glass Buttons */
.glass-button-primary {
    background: rgba(6, 182, 212, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #06b6d4;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(6, 182, 212, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-button-primary:hover {
    background: rgba(6, 182, 212, 0.2);
    box-shadow: 
        0 8px 30px rgba(6, 182, 212, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.glass-button-secondary {
    background: rgba(147, 51, 234, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #9333ea;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(147, 51, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-button-secondary:hover {
    background: rgba(147, 51, 234, 0.2);
    box-shadow: 
        0 8px 30px rgba(147, 51, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.glass-button-glow {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(147, 51, 234, 0.15));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 40px rgba(6, 182, 212, 0.3),
        0 8px 40px rgba(147, 51, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-button-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.glass-button-glow:hover::before {
    left: 100%;
}

.glass-button-glow:hover {
    box-shadow: 
        0 12px 50px rgba(6, 182, 212, 0.5),
        0 12px 50px rgba(147, 51, 234, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #06b6d4, #9333ea);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0891b2, #7c3aed);
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(6, 182, 212, 0.3),
            0 0 40px rgba(147, 51, 234, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(6, 182, 212, 0.6),
            0 0 60px rgba(147, 51, 234, 0.4);
    }
}

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

.glow {
    animation: glow 4s ease-in-out infinite;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .text-8xl {
        font-size: 3.5rem;
    }
    
    .text-7xl {
        font-size: 3rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
}

/* Custom gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%,
        rgba(147, 51, 234, 0.1) 50%,
        rgba(6, 182, 212, 0.05) 100%);
}