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

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

.glass-premium {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.glass-premium:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.hero-title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.premium-btn {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

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

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

.tile-premium {
    transition: transform 0.5s ease, box-shadow 0.3s;
}

.tile-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 40px -15px rgba(255, 255, 255, 0.15);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.gold-border {
    border-image: linear-gradient(45deg, #ffffff, #888888, #ffffff) 1;
    border-image-slice: 1;
}

.team-card {
    background: linear-gradient(145deg, #111111, #0a0a0a);
    border-radius: 2rem;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(5, 5, 5, 0.98));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #555555;
    border-radius: 10px;
}

html {
    scroll-behavior: smooth;
}