/* ============================================
   CSS Variables & Reset - Vintage Rap Edition
   ============================================ */

:root {
    /* Vintage Rap Color Palette - Gold & Bling */
    --rap-black: #0a0a0a;
    --rap-dark: #1a1a1a;
    --gold-rap: #ffd700;
    --gold-dark: #daa520;
    --gold-light: #ffed4e;
    --gold-bling: #ffc125;
    --gold-aged: #b8860b;
    --cream: #f5deb3;
    --ivory: #fffff0;
    
    /* Neutral Colors */
    --dark: #2a2a2a;
    --dark-gray: #3d3d3d;
    --gray: #8b8b8b;
    --light-gray: #d4d4d4;
    --white: #ffffff;
    
    /* Typography */
    --font-cursive: 'Great Vibes', 'Dancing Script', 'Allura', cursive;
    --font-cursive-alt: 'Playball', 'Parisienne', 'Pacifico', cursive;
    --font-accent: 'Righteous', 'Kalam', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --gold-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-accent);
    font-size: 18px;
    line-height: 1.7;
    color: var(--cream);
    background-color: var(--rap-black);
    overflow-x: hidden;
    position: relative;
}

/* Graffiti Overlay */
.graffiti-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 215, 0, 0.03) 2px, rgba(255, 215, 0, 0.03) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255, 215, 0, 0.03) 2px, rgba(255, 215, 0, 0.03) 4px);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: overlay;
}

/* Cursive Title Styles */
.cursive-title {
    font-family: var(--font-cursive);
    font-weight: 400;
    letter-spacing: 2px;
}

.gold-text {
    color: var(--gold-rap);
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
    animation: goldGlow 2s ease-in-out infinite;
}

@keyframes goldGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.4);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 45px rgba(255, 215, 0, 0.6);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-cursive);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gold-rap);
    letter-spacing: 3px;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.8rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Preloader - Rap Style
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rap-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.rap-loader {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-chain {
    position: absolute;
    width: 150px;
    height: 80px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    animation: chainSwing 2s ease-in-out infinite;
}

.chain-link {
    width: 30px;
    height: 30px;
    border: 3px solid var(--gold-rap);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-rap) 0%, var(--gold-dark) 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    animation: linkShine 1.5s ease-in-out infinite;
}

.chain-link:nth-child(2) {
    animation-delay: 0.3s;
}

.chain-link:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes chainSwing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes linkShine {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 1); }
}

.diamond-pendant {
    position: absolute;
    top: 60px;
    width: 40px;
    height: 40px;
    animation: diamondSpin 3s linear infinite;
}

.diamond {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-rap) 50%, var(--gold-dark) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 30px rgba(255, 215, 0, 1);
    animation: diamondGlow 2s ease-in-out infinite;
}

@keyframes diamondSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes diamondGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 1); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 1.5); }
}

.preloader-text {
    display: flex;
    gap: 6px;
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--gold-rap);
}

.text-letter {
    display: inline-block;
    color: var(--gold-rap);
    animation: letterBounce 1.5s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.text-letter:nth-child(1) { animation-delay: 0s; }
.text-letter:nth-child(2) { animation-delay: 0.1s; }
.text-letter:nth-child(3) { animation-delay: 0.2s; }
.text-letter:nth-child(4) { animation-delay: 0.3s; }
.text-letter:nth-child(5) { animation-delay: 0.4s; }
.text-letter:nth-child(6) { animation-delay: 0.5s; }
.text-letter:nth-child(7) { animation-delay: 0.6s; }

@keyframes letterBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loading-bar {
    width: 300px;
    height: 8px;
    background: rgba(218, 165, 32, 0.3);
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid var(--gold-dark);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-rap) 50%, var(--gold-light) 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    width: 0%;
    animation: progressFill 2s ease-in-out infinite, shimmer 2s linear infinite;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

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

/* ============================================
   Hero Section - Rap Style
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--rap-black) 0%, var(--rap-dark) 50%, var(--rap-black) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.vinyl-scratch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.2'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.gold-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmerMove 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmerMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Music & Cadillac Animations */
.music-notes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 3rem;
    color: var(--gold-rap);
    opacity: 0.3;
    animation: floatNote 15s infinite ease-in-out;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.note-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.note-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.note-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.note-4 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.note-5 {
    bottom: 15%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.note-6 {
    top: 70%;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes floatNote {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg) scale(1.2);
        opacity: 0.4;
    }
    50% {
        transform: translate(-20px, -100px) rotate(180deg) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(-40px, -50px) rotate(270deg) scale(1.1);
        opacity: 0.35;
    }
}

.sound-waves {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none;
}

.wave {
    width: 4px;
    background: linear-gradient(to top, var(--gold-rap), var(--gold-light));
    border-radius: 2px;
    animation: wavePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.wave-1 {
    height: 20px;
    animation-delay: 0s;
}

.wave-2 {
    height: 40px;
    animation-delay: 0.2s;
}

.wave-3 {
    height: 60px;
    animation-delay: 0.4s;
}

.wave-4 {
    height: 30px;
    animation-delay: 0.6s;
}

@keyframes wavePulse {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.cadillac-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.steering-wheel {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 4px solid var(--gold-rap);
    border-radius: 50%;
    opacity: 0.15;
    animation: rotateWheel 20s linear infinite;
}

.steering-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid var(--gold-light);
    border-radius: 50%;
}

.steering-wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold-rap);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.vinyl-record {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--rap-black) 0%, var(--rap-black) 30%, var(--dark) 30%, var(--dark) 100%);
    border: 3px solid var(--gold-rap);
    opacity: 0.2;
    animation: spinRecord 8s linear infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold-rap);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.vinyl-record::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
}

@keyframes spinRecord {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}

.road-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-rap) 50%, transparent 100%);
    opacity: 0.3;
    animation: roadMove 3s linear infinite;
}

.road-line:nth-child(1) {
    bottom: 30%;
    animation-delay: 0s;
}

.road-line:nth-child(2) {
    bottom: 50%;
    animation-delay: 1s;
}

.road-line:nth-child(3) {
    bottom: 70%;
    animation-delay: 2s;
}

@keyframes roadMove {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: var(--spacing-md);
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 215, 0, 0.2);
    border: 3px solid var(--gold-rap);
    border-radius: var(--radius-xl);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.hero-title {
    margin-bottom: var(--spacing-md);
    text-transform: none;
    letter-spacing: 5px;
    line-height: 1.1;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6);
}

.title-line {
    display: inline-block;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.title-line:nth-child(2) {
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.title-line:nth-child(3) {
    /* Typewriter effect will handle this */
    opacity: 1;
    transform: translateY(0);
}

/* Typewriter Effect */
.typewriter-text {
    position: relative;
    display: inline-block;
    opacity: 1 !important;
    transform: translateY(0) !important;
    min-width: 0.5em; /* Ensure space for cursor */
}

.typewriter-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    color: var(--gold-light);
    animation: blinkCursor 1s infinite;
    font-weight: 300;
    text-shadow: 0 0 15px rgba(255, 237, 78, 0.8);
}

.typewriter-text.typing-complete::after {
    animation: blinkCursor 1s infinite;
    opacity: 1;
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--cream);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 4px solid var(--gold-rap);
    border-bottom: 4px solid var(--gold-rap);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

/* ============================================
   Buttons - Rap Style
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-rap) 0%, var(--gold-dark) 100%);
    color: var(--rap-black);
    border-color: var(--gold-rap);
    box-shadow: 
        0 4px 20px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-rap) 100%);
    border-color: var(--gold-light);
}

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

.btn-outline {
    background: transparent;
    color: var(--gold-rap);
    border-color: var(--gold-rap);
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-rap) 0%, var(--gold-dark) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--rap-black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.2rem;
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 215, 0, 0.2);
    border: 3px solid var(--gold-rap);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    text-transform: none;
    letter-spacing: 4px;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.5);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--cream);
    font-style: italic;
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: var(--rap-dark);
    position: relative;
    border-top: 3px solid var(--gold-rap);
    border-bottom: 3px solid var(--gold-rap);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.3);
    border: 4px solid var(--gold-rap);
    align-self: start;
    height: calc(100vh - 200px);
    max-height: 800px;
}

.cadillac-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.1s ease-out;
    filter: contrast(1.1) brightness(0.95);
    will-change: transform;
    transform-origin: top center;
    object-fit: cover;
    object-position: top;
    position: relative;
}

.about-image:hover .cadillac-image {
    transform: scale(1.05);
    filter: contrast(1.2) brightness(1);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image {
        order: -1;
    }
}

.lead-text {
    font-size: 1.4rem;
    color: var(--gold-rap);
    font-weight: 400;
    font-family: var(--font-cursive);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
}

.about p {
    color: var(--cream);
    margin-bottom: var(--spacing-md);
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-dark);
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--gold-rap);
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.feature-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--gold-rap);
    font-size: 1.4rem;
    font-family: var(--font-cursive);
}

.feature-item p {
    color: var(--cream);
    margin: 0;
    font-size: 1rem;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
    background: var(--rap-black);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.pricing-card {
    background: rgba(26, 26, 26, 0.8);
    border: 4px solid var(--gold-dark);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: cardFadeIn 0.6s ease-out forwards;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--gold-rap);
    box-shadow: 
        0 12px 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(26, 26, 26, 0.9);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover::after {
    left: 100%;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pricing-card.featured {
    border-color: var(--gold-rap);
    border-width: 5px;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 70px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: featuredPulse 3s ease-in-out infinite, cardFadeIn 0.6s ease-out forwards;
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 15px 50px rgba(255, 215, 0, 0.7),
        0 0 90px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.5),
            0 0 70px rgba(255, 215, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.7),
            0 0 90px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

.pricing-card.exclusive {
    grid-column: 1 / -1;
    max-width: 100%;
    border-color: var(--gold-light);
    background: rgba(255, 237, 78, 0.15);
    box-shadow: 
        0 0 50px rgba(255, 237, 78, 0.5),
        0 0 80px rgba(255, 237, 78, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: exclusiveGlow 4s ease-in-out infinite, cardFadeIn 0.6s ease-out forwards;
}

.pricing-card.exclusive:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 15px 50px rgba(255, 237, 78, 0.7),
        0 0 100px rgba(255, 237, 78, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@keyframes exclusiveGlow {
    0%, 100% {
        box-shadow: 
            0 0 50px rgba(255, 237, 78, 0.5),
            0 0 80px rgba(255, 237, 78, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(255, 237, 78, 0.7),
            0 0 100px rgba(255, 237, 78, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

.pricing-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    background: rgba(218, 165, 32, 0.3);
    color: var(--cream);
    border: 2px solid var(--gold-dark);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.pricing-badge.popular {
    background: linear-gradient(135deg, var(--gold-rap) 0%, var(--gold-dark) 100%);
    color: var(--rap-black);
    border-color: var(--gold-rap);
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
    animation: badgeShine 2s ease-in-out infinite;
}

.pricing-card:hover .pricing-badge.popular {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7);
    transform: scale(1.05);
}

.pricing-badge.exclusive {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-rap) 100%);
    color: var(--rap-black);
    border-color: var(--gold-light);
    box-shadow: 0 2px 15px rgba(255, 237, 78, 0.5);
    animation: badgeShine 2s ease-in-out infinite;
}

.pricing-card:hover .pricing-badge.exclusive {
    box-shadow: 0 4px 20px rgba(255, 237, 78, 0.7);
    transform: scale(1.05);
}

@keyframes badgeShine {
    0%, 100% {
        box-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 2px 20px rgba(255, 215, 0, 0.7);
    }
}

.pricing-tier {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gold-rap);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4);
}

.pricing-card:hover .pricing-tier {
    color: var(--gold-light);
    text-shadow: 
        0 0 15px rgba(255, 237, 78, 0.8),
        0 0 30px rgba(255, 237, 78, 0.6);
    transform: scale(1.05);
    letter-spacing: 6px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding: var(--spacing-sm) 0;
}

.currency {
    font-size: 2rem;
    color: var(--gold-rap);
    margin-right: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.pricing-card:hover .currency {
    color: var(--gold-light);
    transform: scale(1.2) translateY(-2px);
    text-shadow: 0 0 15px rgba(255, 237, 78, 1);
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-rap);
    font-family: var(--font-accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.5);
}

.pricing-card:hover .amount {
    color: var(--gold-light);
    transform: scale(1.1);
    text-shadow: 
        0 0 20px rgba(255, 237, 78, 1),
        0 0 40px rgba(255, 237, 78, 0.7);
}

.includes-note {
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(255, 215, 0, 0.15);
    border-left: 4px solid var(--gold-rap);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover .includes-note {
    color: var(--gold-light);
    background: rgba(255, 215, 0, 0.25);
    border-left-color: var(--gold-light);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    color: var(--cream);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: var(--spacing-md);
    opacity: 0;
    transform: translateX(-10px);
    animation: featureSlideIn 0.5s ease-out forwards;
}

.pricing-features li:nth-child(1) { animation-delay: 0.1s; }
.pricing-features li:nth-child(2) { animation-delay: 0.2s; }
.pricing-features li:nth-child(3) { animation-delay: 0.3s; }
.pricing-features li:nth-child(4) { animation-delay: 0.4s; }
.pricing-features li:nth-child(5) { animation-delay: 0.5s; }

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-rap);
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: scale(0.8);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.pricing-card:hover .pricing-features li {
    color: var(--gold-light);
    transform: translateX(5px);
    padding-left: calc(var(--spacing-md) + 5px);
}

.pricing-card:hover .pricing-features li::before {
    color: var(--gold-light);
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 237, 78, 1);
    filter: drop-shadow(0 0 8px rgba(255, 237, 78, 0.8));
}

.feature-note {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--rap-black) 0%, var(--rap-dark) 50%, var(--rap-black) 100%);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
    border-top: 3px solid var(--gold-rap);
}

.cta-content h2 {
    margin-bottom: var(--spacing-md);
    text-transform: none;
}

.cta-content p {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--rap-black);
    border-top: 3px solid var(--gold-rap);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-rap);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    font-family: var(--font-cursive);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-family: var(--font-accent);
}

.footer-section p {
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: var(--spacing-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--cream);
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--gold-rap);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gold-dark);
}

.footer-bottom p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   Confirmation Page
   ============================================ */

.confirmation-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    border-bottom: 3px solid var(--gold-rap);
}

.confirmation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--rap-black) 0%, var(--rap-dark) 50%, var(--rap-black) 100%);
}

.confirmation-content {
    max-width: 800px;
    width: 100%;
    padding: var(--spacing-md);
    text-align: center;
    z-index: 2;
    position: relative;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-lg);
    animation: scaleIn 0.6s ease;
}

.success-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
}

.confirmation-title {
    margin-bottom: var(--spacing-md);
    text-transform: none;
    letter-spacing: 4px;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(255, 215, 0, 0.6);
}

.confirmation-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--cream);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    font-style: italic;
}

.membership-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 215, 0, 0.2);
    border: 4px solid var(--gold-rap);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.badge-label {
    font-size: 0.75rem;
    color: var(--cream);
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.badge-tier {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold-rap);
    font-family: var(--font-cursive);
    text-transform: none;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.5);
}

.next-steps {
    background: var(--rap-dark);
    border-top: 3px solid var(--gold-rap);
    border-bottom: 3px solid var(--gold-rap);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.step-card {
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid var(--gold-dark);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-rap);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-number {
    font-family: var(--font-accent);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-rap);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--gold-rap);
    font-family: var(--font-cursive);
}

.step-card p {
    color: var(--cream);
    line-height: 1.7;
}

.membership-benefits {
    background: var(--rap-black);
}

.benefits-list {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.1);
    border-left: 5px solid var(--gold-rap);
    border-radius: var(--radius-md);
    border: 2px solid var(--gold-dark);
    border-left-width: 5px;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 215, 0, 0.2);
}

.benefit-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--gold-rap);
    font-size: 1.2rem;
    font-family: var(--font-cursive);
}

.benefit-item p {
    color: var(--cream);
    margin: 0;
    font-size: 0.95rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Ripple effect for pricing cards */
.pricing-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }

    .pricing-card {
        padding: var(--spacing-md);
    }
}

/* ============================================
   Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--gold-rap);
    outline-offset: 2px;
}

