/* 
 * SERIBUVIBES - Premium Design System
 * Unified CSS for consistency and luxury feel
 */

:root {
    --ocean: #0077b6;
    --navy: #020c1b;
    --navy-light: #0a192f;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Glassmorphism System */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.glass-card-dark {
    background: rgba(2, 12, 27, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Typography Hierarchy */
.section-title {
    letter-spacing: -0.05em;
    line-height: 0.9;
}

.section-subtitle {
    letter-spacing: 0.4em;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ocean);
}

/* Smooth Animations */
.hover-lift {
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(2, 12, 27, 0.25);
}

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

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--ocean);
    border-radius: 10px;
}

/* Utilities */
.text-glow-ocean {
    text-shadow: 0 0 20px rgba(0, 119, 182, 0.4);
}

.bg-mesh {
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 119, 182, 0.15) 0, transparent 50%), 
        radial-gradient(at 50% 0%, rgba(0, 180, 216, 0.1) 0, transparent 50%);
}
