/* Custom Premium Styles */

:root {
    --charcoal: #0a0a0a;
    --silver: #e2e8f0;
    --silver-muted: #94a3b8;
    --gold: #ffd700;
    --gold-bright: #ffea00;
    --emerald-glow: #10b981;
}

/* Custom Base Styles */
body {
    background-color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
}

/* Metallic Gradients */
.text-gradient-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffea00 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drop-shadow-metallic {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.15));
}

/* Responsive Font Sizes with Clamp */
h1 {
    font-size: clamp(3rem, 10vw, 8rem);
}

.text-silver-muted {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    max-width: 65ch;
}

/* Animations */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-reveal-text {
    animation: revealText 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.animate-fade-in-delayed-more {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

/* Premium Button */
.btn-premium {
    position: relative;
    display: inline-flex;
    padding: 1.25rem 3rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-premium:hover {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.btn-premium .btn-content {
    position: relative;
    z-index: 2;
}

.btn-premium .btn-glimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%) translate(var(--x, 0px), var(--y, 0px));
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
    opacity: 0;
}

.btn-premium:hover .btn-glimmer {
    opacity: 0.3;
}

/* Typographic Brutalism Adjustments */
h1 span {
    display: block;
}

/* Utilities for Layout */
.bg-charcoal { background-color: var(--charcoal); }
.text-silver { color: var(--silver); }
.text-silver-muted { color: var(--silver-muted); }
.text-gold { color: var(--gold); }
.bg-emerald-glow { background-color: var(--emerald-glow); }
.bg-gold-glow { background-color: var(--gold); }

/* Responsive adjustments */
@media (max-width: 640px) {
    h1 {
        font-size: 3.5rem !important;
    }
}
