/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Black & Gold Theme */
    --primary-black: #0a0a0a;
    --rich-black: #1a1a1a;
    --charcoal: #2d2d2d;
    --dark-gray: #404040;
    
    /* Gold Palette */
    --premium-gold: #d4af37;
    --bright-gold: #ffd700;
    --warm-gold: #ffcc00;
    --champagne: #f7e7ce;
    
    /* Core Colors */
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #e5e5e5;
    --medium-gray: #999999;
    
    /* Meme Energy Accents */
    --energy-orange: #ff6b35;
    --vibrant-green: #00ff88;
    --electric-blue: #00d4ff;
    
    /* Legacy mappings for compatibility */
    --fed-blue: var(--primary-black);
    --fed-blue-light: var(--rich-black);
    --fed-blue-dark: var(--primary-black);
    --gold: var(--bright-gold);
    --gold-light: var(--warm-gold);
    --gold-dark: var(--premium-gold);
    --neon-green: var(--vibrant-green);
    --neon-pink: var(--energy-orange);
    --neon-blue: var(--electric-blue);
    --rainbow-red: var(--energy-orange);
    --rainbow-orange: var(--energy-orange);
    --rainbow-yellow: var(--warm-gold);
    
    /* Resistance Colors - Updated */
    --anger-red: var(--energy-orange);
    --truth-gold: var(--premium-gold);
    --resistance-purple: #8b5cf6;
    --revolution-orange: var(--energy-orange);
    
    --black: var(--primary-black);
    
    /* Typography */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--rich-black) 50%, var(--charcoal) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 40px;
    position: relative;
}

/* Add subtle gold shimmer overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Premium gold shimmer animation */
@keyframes goldShimmer {
    0% { 
        background-position: -100% 0;
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        background-position: 100% 0;
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 35px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--premium-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--premium-gold) 0%, var(--bright-gold) 100%);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--premium-gold) 0%, var(--bright-gold) 100%);
    color: var(--primary-black);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    border: 2px solid var(--premium-gold);
    animation: elegantGlow 2s ease infinite;
}

@keyframes elegantGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }
}

@keyframes btnBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--bright-gold) 0%, var(--warm-gold) 100%);
}

@keyframes mega-bounce {
    0%, 100% { transform: translateY(-8px) scale(1.15) rotate(0deg); }
    25% { transform: translateY(-12px) scale(1.2) rotate(1deg); }
    75% { transform: translateY(-12px) scale(1.2) rotate(-1deg); }
}

.btn-secondary {
    background: linear-gradient(45deg, var(--gold), var(--rainbow-orange), var(--rainbow-yellow));
    background-size: 300% 300%;
    color: var(--fed-blue-dark);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    border: 3px solid var(--gold);
    animation: goldShimmer 2s ease infinite, btnFloat 3s ease infinite;
}

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

@keyframes goldBarShimmer {
    0% { 
        background-position: 0% 50%; 
        box-shadow: 
            0 4px 20px rgba(218, 165, 32, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 0 rgba(139, 69, 19, 0.3);
    }
    25% {
        background-position: 50% 0%;
        box-shadow: 
            0 6px 25px rgba(218, 165, 32, 0.7),
            inset 0 3px 0 rgba(255, 255, 255, 0.6),
            inset 0 -2px 0 rgba(139, 69, 19, 0.4);
    }
    50% { 
        background-position: 100% 50%; 
        box-shadow: 
            0 8px 30px rgba(218, 165, 32, 0.8),
            inset 0 4px 0 rgba(255, 255, 255, 0.7),
            inset 0 -3px 0 rgba(139, 69, 19, 0.5);
    }
    75% {
        background-position: 50% 100%;
        box-shadow: 
            0 6px 25px rgba(218, 165, 32, 0.7),
            inset 0 3px 0 rgba(255, 255, 255, 0.6),
            inset 0 -2px 0 rgba(139, 69, 19, 0.4);
    }
    100% { 
        background-position: 0% 50%; 
        box-shadow: 
            0 4px 20px rgba(218, 165, 32, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 0 rgba(139, 69, 19, 0.3);
    }
}

@keyframes btnFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(1deg); }
}

.btn-secondary:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.9), 0 0 80px rgba(255, 136, 68, 0.5);
    animation: goldShimmer 0.8s ease infinite, spin-glow 1s ease infinite;
}

@keyframes spin-glow {
    0% { transform: translateY(-6px) scale(1.1) rotate(0deg); }
    100% { transform: translateY(-6px) scale(1.1) rotate(360deg); }
}

/* Section Titles */
.section-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 900;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.96));
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all var(--transition-medium);
    border-bottom: 2px solid var(--premium-gold);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes navbarGlow {
    0%, 100% { 
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3), 0 0 50px rgba(212, 175, 55, 0.2);
    }
    50% { 
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 70px rgba(212, 175, 55, 0.4);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 95px;
    width: auto;
    border-radius: 50%;
    border: 3px solid var(--gold);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
}

.nav-title-section {
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.98));
    padding: 12px 20px;
    border-radius: 12px;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 30px rgba(212, 175, 55, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.nav-main-title {
    font-family: var(--font-title);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--fed-blue-dark);
    margin: 0;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    padding: 12px 24px;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 25%, #FFD700 50%, #DAA520 75%, #B8860B 100%);
    background-size: 400% 400%;
    border-radius: 8px;
    border: 1px solid #B8860B;
    box-shadow: 
        0 4px 20px rgba(218, 165, 32, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(139, 69, 19, 0.3);
    animation: goldBarShimmer 2.5s ease infinite;
}

.logo-image:hover {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)) drop-shadow(0 0 40px rgba(212, 175, 55, 1)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.8));
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.nav-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.nav-title-section:hover::before {
    left: 100%;
}

.nav-main-title:hover {
    background: linear-gradient(135deg, #2c3e50, #000000, #2c3e50);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 1), 0 0 15px rgba(212, 175, 55, 0.8);
}

.logo-symbol {
    color: var(--gold);
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--rich-black) 30%, var(--charcoal) 70%, var(--premium-gold) 100%);
    background-size: 400% 400%;
    background-position: center center;
    animation: elegantGradient 8s ease infinite;
    z-index: -2;
}

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

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.money-printer-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.money-printer {
    width: 400px;
    height: auto;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

@keyframes printerGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(255, 0, 153, 0.8)) drop-shadow(0 0 60px rgba(0, 153, 255, 0.6)); 
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(255, 0, 153, 1)) drop-shadow(0 0 80px rgba(0, 153, 255, 0.9)) drop-shadow(0 0 100px rgba(0, 255, 136, 0.7)); 
    }
}

.out-of-order-tape {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: linear-gradient(135deg, var(--energy-orange), var(--premium-gold));
    color: var(--primary-black);
    padding: 12px 25px;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 1.4rem;
    border: 2px solid var(--primary-black);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: bounce 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes tapeGlow {
    0%, 100% { 
        box-shadow: 0 0 25px rgba(255, 0, 153, 0.8), 0 0 50px rgba(255, 68, 68, 0.6);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 0, 153, 1), 0 0 80px rgba(255, 68, 68, 0.9);
    }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(-15deg) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.coin-banner {
    font-size: 2rem;
    font-weight: 900;
    color: var(--premium-gold);
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-align: center;
    font-family: var(--font-title);
    border-bottom: 2px solid var(--premium-gold);
    padding-bottom: 1rem;
    animation: premiumGlow 3s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 0.8),
            2px 2px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(212, 175, 55, 1),
            0 0 25px rgba(212, 175, 55, 0.6),
            2px 2px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1.02);
    }
}

.hero-visual-container {
    margin: 1rem 0 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-impact-card {
    background: linear-gradient(135deg, 
        rgba(13, 34, 71, 0.95) 0%,
        rgba(25, 25, 112, 0.9) 50%,
        rgba(13, 34, 71, 0.95) 100%);
    border: 3px solid var(--truth-gold);
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(255, 136, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
    overflow: visible;
    min-height: 600px;
}

.hero-logo-section {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    padding: 10px;
}

.hero-logo {
    width: 140px;
    height: 130px;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
    }
    50% { 
        transform: translateY(-10px) rotate(2deg) scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(255, 215, 0, 0.6));
    }
}

.card-header {
    margin-bottom: 2rem;
}

.impact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--truth-gold), #ffffff, var(--anger-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 136, 0, 0.5);
    animation: titlePulse 4s ease-in-out infinite;
    line-height: 1.1;
}

.impact-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    border: 2px solid;
    transition: all 0.3s ease;
    animation: statGlow 3s ease-in-out infinite;
}

.stat-box.primary {
    border-color: var(--truth-gold);
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

.stat-box.warning {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.stat-box.danger {
    border-color: var(--anger-red);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.solution-banner {
    background: linear-gradient(135deg, 
        rgba(255, 136, 0, 0.15) 0%,
        rgba(107, 70, 193, 0.15) 100%);
    border: 2px solid var(--truth-gold);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    animation: bannerPulse 4s ease-in-out infinite;
}

.solution-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.coin-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.coin-symbol {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--truth-gold);
    text-shadow: 
        0 0 30px var(--truth-gold),
        0 4px 15px rgba(0, 0, 0, 0.8);
    animation: coinShine 3s ease-in-out infinite;
}

.coin-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 100px rgba(255, 136, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: translateY(-8px) scale(1.01);
        box-shadow: 
            0 35px 70px rgba(0, 0, 0, 0.5),
            0 0 120px rgba(255, 136, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

@keyframes titlePulse {
    0%, 100% { 
        text-shadow: 0 4px 20px rgba(255, 136, 0, 0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 4px 30px rgba(255, 136, 0, 0.8);
        transform: scale(1.02);
    }
}

@keyframes statGlow {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.02);
    }
}

@keyframes bannerPulse {
    0%, 100% { 
        border-color: var(--truth-gold);
        box-shadow: 0 0 30px rgba(255, 136, 0, 0.3);
    }
    50% { 
        border-color: rgba(255, 136, 0, 0.8);
        box-shadow: 0 0 40px rgba(255, 136, 0, 0.5);
    }
}

@keyframes coinShine {
    0%, 100% { 
        text-shadow: 
            0 0 30px var(--truth-gold),
            0 4px 15px rgba(0, 0, 0, 0.8);
        transform: scale(1);
    }
    50% { 
        text-shadow: 
            0 0 40px var(--truth-gold),
            0 0 60px rgba(255, 136, 0, 0.6),
            0 4px 20px rgba(0, 0, 0, 0.8);
        transform: scale(1.03);
    }
}

@keyframes billFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg);
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.5),
            0 0 50px rgba(255, 136, 0, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    25% { 
        transform: translateY(-10px) rotateX(2deg);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.6),
            0 0 60px rgba(255, 136, 0, 0.4),
            inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
    50% { 
        transform: translateY(-15px) rotateX(0deg);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.7),
            0 0 70px rgba(255, 136, 0, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
    75% { 
        transform: translateY(-5px) rotateX(-2deg);
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.55),
            0 0 55px rgba(255, 136, 0, 0.35),
            inset 0 0 22px rgba(255, 255, 255, 0.12);
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 204, 0, 0.6);
    animation: textBounce 3s ease infinite;
    display: none; /* Hidden since we're using the bill now */
}

@keyframes textBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.hero-motto {
    font-size: 3rem;
    font-weight: 900;
    color: var(--truth-gold);
    text-shadow: 
        0 0 10px var(--truth-gold),
        0 0 20px var(--truth-gold),
        0 0 30px var(--truth-gold);
    margin: 1.5rem 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: mottoGlow 2s ease-in-out infinite alternate;
    font-family: var(--font-title);
}

@keyframes mottoGlow {
    0% {
        text-shadow: 
            0 0 10px var(--truth-gold),
            0 0 20px var(--truth-gold),
            0 0 30px var(--truth-gold);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 20px var(--truth-gold),
            0 0 30px var(--truth-gold),
            0 0 40px var(--truth-gold),
            0 0 50px var(--truth-gold);
        transform: scale(1.02);
    }
}

.hero-mission {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--anger-red);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    background: rgba(204, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--anger-red);
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Particles */
/* Money falling animation */
.money-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.money-bill {
    position: absolute;
    width: 40px;
    height: 20px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border: 1px solid #155724;
    border-radius: 3px;
    animation: fall-money linear infinite;
    opacity: 0.8;
}

.money-bill::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #155724;
    font-weight: bold;
    font-size: 12px;
}

.money-coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffd700, #ffed4e);
    border: 2px solid #b8860b;
    border-radius: 50%;
    animation: fall-money linear infinite;
    opacity: 0.9;
}

.money-coin::before {
    content: '¢';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #b8860b;
    font-weight: bold;
    font-size: 10px;
}

@keyframes fall-money {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift, 50px)) rotate(360deg);
        opacity: 0;
    }
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: float-particle 10s linear infinite;
    box-shadow: 0 0 10px currentColor;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* About Section - Federal Reserve Style */
.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    color: var(--dark-gray);
}

.fed-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold);
}

.fed-seal {
    margin-right: 2rem;
}

.seal-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
    transition: all 0.3s ease;
}

.fed-title-section {
    text-align: left;
}

.fedup-coin-header {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--truth-gold);
    text-shadow: 
        0 0 10px var(--truth-gold),
        0 0 20px var(--truth-gold),
        0 0 30px var(--truth-gold);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: goldGlow 2s ease-in-out infinite alternate;
}

@keyframes goldGlow {
    0% {
        text-shadow: 
            0 0 10px var(--truth-gold),
            0 0 20px var(--truth-gold),
            0 0 30px var(--truth-gold);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 20px var(--truth-gold),
            0 0 30px var(--truth-gold),
            0 0 40px var(--truth-gold),
            0 0 50px var(--truth-gold);
        transform: scale(1.05);
    }
}

.fed-main-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--fed-blue-dark);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.fed-subtitle {
    font-size: 1.1rem;
    color: var(--fed-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fed-motto {
    font-style: italic;
    color: var(--gold-dark);
    font-size: 1rem;
    font-weight: 500;
}

.fed-mission-statement {
    background: linear-gradient(135deg, var(--primary-black), var(--rich-black));
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 5px solid var(--premium-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--premium-gold);
}

.mission-title {
    color: var(--premium-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.fed-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fed-stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(204, 0, 0, 0.2);
    border: 2px solid var(--anger-red);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fed-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--anger-red), var(--truth-gold), var(--resistance-purple));
}

.fed-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(204, 0, 0, 0.3);
    border-color: var(--truth-gold);
}

.stat-comparison {
    font-size: 0.8rem;
    color: var(--anger-red);
    font-weight: 600;
    margin-top: 0.5rem;
    font-style: italic;
    background: rgba(204, 0, 0, 0.1);
    padding: 0.3rem;
    border-radius: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--fed-blue-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fed-principles {
    margin-bottom: 3rem;
}

.principles-title {
    color: var(--fed-blue-dark);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.principle-card.fed-style {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    animation: none;
}

.principle-card.fed-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    animation: none;
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.principle-card.fed-style h3 {
    color: var(--fed-blue-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.principle-card.fed-style p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.fed-comparison {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.comparison-title {
    color: var(--fed-blue-dark);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.comparison-table {
    display: grid;
    gap: 1px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-item {
    padding: 1rem;
    background: var(--white);
    text-align: center;
    font-weight: 500;
}

.comparison-row.header .comparison-item {
    background: var(--fed-blue-dark);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-item.traditional {
    background: #ffe6e6;
    color: #d63384;
}

.comparison-item.faux {
    background: #e6f7ff;
    color: var(--fed-blue-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fed-header {
        flex-direction: column;
        text-align: center;
    }
    
    .fed-seal {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .fed-title-section {
        text-align: center;
    }
    
    .fed-main-title {
        font-size: 2rem;
    }
    
    /* Enhanced mobile comparison table */
    .comparison-table {
        display: block;
        background: transparent;
    }
    
    .comparison-row {
        display: block;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-row.header {
        margin-bottom: 0.5rem;
    }
    
    .comparison-item {
        display: block;
        padding: 1.2rem;
        margin: 0;
        border-bottom: 1px solid #e0e0e0;
        font-size: 1rem;
        line-height: 1.4;
        text-align: left;
    }
    
    .comparison-item:last-child {
        border-bottom: none;
    }
    
    /* Mobile feature labels */
    .comparison-row:not(.header) .comparison-item:first-child {
        background: var(--fed-blue-dark) !important;
        color: var(--white) !important;
        font-weight: 700;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .comparison-item.traditional {
        background: #ffe6e6;
        color: #d63384;
        position: relative;
        padding-left: 1.5rem;
    }
    
    .comparison-item.traditional:before {
        content: "🏦 Fed: ";
        font-weight: 700;
        color: #b02a37;
    }
    
    .comparison-item.faux {
        background: #e6f7ff;
        color: var(--fed-blue-dark);
        position: relative;
        padding-left: 1.5rem;
    }
    
    .comparison-item.faux:before {
        content: "💰 FedUp: ";
        font-weight: 700;
        color: #1a5490;
    }
}

/* Additional mobile refinements for very small screens */
@media (max-width: 480px) {
    .comparison-item {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .comparison-item.traditional:before,
    .comparison-item.faux:before {
        font-size: 0.9rem;
    }
    
    .comparison-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

/* FedUp Reserve Act Section */
.fedup-act {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.act-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.government-seal-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    opacity: 0.1;
}

.government-seal {
    width: 150px;
    height: auto;
}

.pdf-embed {
    width: 100%;
    height: 600px;
    border: 2px solid var(--fed-blue);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.act-description {
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
    color: var(--dark-gray);
}

/* How to Buy Section */
.how-to-buy {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--fed-blue-dark), var(--fed-blue));
    position: relative;
    overflow: hidden;
}

.how-to-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 153, 255, 0.1), transparent);
    animation: sectionPulse 6s ease infinite;
}

.buy-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, var(--neon-blue), var(--fed-blue-light));
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 153, 255, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    background: linear-gradient(135deg, var(--fed-blue), var(--fed-blue-light));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.step-content p {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.step-content a {
    color: var(--gold);
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.step-content a:hover {
    text-decoration: underline;
    color: var(--gold-light);
}

.contract-address {
    background: var(--charcoal);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: var(--gold);
    color: var(--fed-blue);
    border: none;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.copy-btn:hover {
    background: var(--gold-light);
}

.copy-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

.copy-btn:disabled:hover {
    background: #666;
}

.disclaimer {
    background: var(--gold);
    color: var(--fed-blue-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
    border: 2px solid var(--fed-blue-dark);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Policy Updates Section */
.policy {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--fed-blue-dark), var(--neon-blue));
    position: relative;
    overflow: hidden;
}

.policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 153, 255, 0.2), transparent);
    animation: sectionPulse 8s ease infinite;
}

.bulletin-board {
    background: var(--white);
    border: 3px solid var(--fed-blue);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.bulletin-header {
    background: linear-gradient(135deg, var(--fed-blue), var(--fed-blue-light));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.bulletin-header h3 {
    margin-bottom: 0.5rem;
}

.bulletin-items {
    padding: 2rem;
}

.bulletin-item {
    position: relative;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all var(--transition-medium);
}

.bulletin-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.bulletin-date {
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bulletin-item h4 {
    color: var(--fed-blue);
    margin-bottom: 1rem;
}

.bulletin-item p {
    color: var(--fed-blue-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bulletin-stamp {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--fed-blue);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.8rem;
    transform: rotate(15deg);
    border: 2px solid var(--fed-blue);
}

/* Loan Fraud Section */
.loan-fraud-section {
    background: linear-gradient(135deg, var(--primary-black), var(--rich-black));
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid var(--premium-gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.fraud-title {
    color: var(--bright-gold);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fraud-subtitle {
    color: var(--white);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.fraud-explanation {
    margin-bottom: 3rem;
}

.fraud-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--premium-gold);
}

.step-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--premium-gold);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: var(--white);
    line-height: 1.6;
    font-size: 1rem;
}

.fraud-evidence {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid var(--premium-gold);
}

.fraud-evidence h4 {
    color: var(--bright-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.evidence-list {
    list-style: none;
    padding: 0;
}

.evidence-list li {
    color: var(--white);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.evidence-list li::before {
    content: "🔍";
    position: absolute;
    left: 0;
    top: 0;
}

.evidence-list strong {
    color: var(--premium-gold);
}

.fraud-conclusion {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--premium-gold);
}

.fraud-conclusion h4 {
    color: var(--bright-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.fraud-conclusion p {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.fraud-conclusion strong {
    color: var(--premium-gold);
}

@media (max-width: 768px) {
    .fraud-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .fraud-title {
        font-size: 1.8rem;
    }
    
    .fraud-subtitle {
        font-size: 1.2rem;
    }
}

/* Treasury Section */
.treasury {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gold), var(--rainbow-orange), var(--neon-green));
    background-size: 400% 400%;
    animation: mega-gradient 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.treasury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.treasury .container {
    position: relative;
    z-index: 2;
}

.treasury-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-style: italic;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.treasury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.treasury-item {
    background: linear-gradient(145deg, var(--white), var(--light-gray));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transition: all 0.3s ease;
    border: 3px solid var(--gold);
    animation: treasuryFloat 4s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes treasuryFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

.treasury-item:hover {
    transform: translateY(-15px) scale(1.05) rotate(3deg);
    box-shadow: 0 0 50px rgba(212, 175, 55, 1), 0 0 100px rgba(255, 204, 0, 0.6);
    animation: treasuryWiggle 0.6s ease infinite;
}

@keyframes treasuryWiggle {
    0%, 100% { transform: translateY(-15px) scale(1.05) rotate(3deg); }
    25% { transform: translateY(-18px) scale(1.08) rotate(1deg); }
    75% { transform: translateY(-18px) scale(1.08) rotate(5deg); }
}

.treasury-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.treasury-item h3 {
    color: var(--fed-blue-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.treasury-item p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.treasury-value {
    background: var(--gold);
    color: var(--fed-blue-dark);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--fed-blue-dark);
}

.treasury-total {
    text-align: center;
    background: linear-gradient(145deg, var(--fed-blue-dark), var(--fed-blue));
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
}

.treasury-total h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.treasury-total p {
    font-style: italic;
    color: var(--light-gray);
}

/* Federal Meme Archive Section */
.memes {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #2c3e50, #34495e, #4a4a4a);
    position: relative;
    overflow: hidden;
}

/* Archive introduction styling */
.meme-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.vault-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.declassified-stamp {
    display: inline-block;
    background: var(--anger-red);
    color: var(--white);
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1rem;
    border: 3px solid var(--white);
    transform: rotate(-8deg);
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
    letter-spacing: 2px;
}

.memes .container {
    position: relative;
    z-index: 2;
}

.memes .section-title {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    font-weight: 900;
    transform: none !important;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.meme-item.classified {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid var(--dark-gray);
    margin-bottom: 2rem;
}



.meme-item.classified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: repeating-linear-gradient(
        45deg,
        #ff0000,
        #ff0000 10px,
        #ffffff 10px,
        #ffffff 20px
    );
    z-index: 2;
}

.meme-item.classified:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--truth-gold);
}

.meme-item img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.meme-overlay {
    padding: 1.5rem;
    background: var(--white);
    color: var(--dark-gray);
    position: relative;
}

.classification-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--anger-red);
    color: var(--white);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    border-radius: 3px;
}

.meme-overlay h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--fed-blue-dark);
    font-weight: 700;
    line-height: 1.3;
}

.meme-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.meme-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

.meme-stats span {
    background: var(--light-gray);
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    color: var(--dark-gray);
}

.meme-footer {
    margin-top: 4rem;
}

.educational-notice {
    background: var(--white);
    border: 2px solid var(--truth-gold);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.1);
}

.educational-notice h4 {
    color: var(--truth-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.educational-notice p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.meme-submit {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(45deg, var(--neon-green), var(--gold), var(--neon-pink));
    background-size: 300% 300%;
    animation: mega-gradient 5s ease infinite;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.resistance-content {
    text-align: center;
}

.resistance-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.resistance-info p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.action-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-fast);
}

.action-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.action-item i {
    font-size: 2.5rem;
    color: var(--fed-blue);
    margin-bottom: 1rem;
}

.action-item h4 {
    color: var(--fed-blue);
    margin-bottom: 0.5rem;
}

.action-item p {
    color: var(--fed-blue-dark);
    font-size: 0.9rem;
    text-shadow: none;
}

.educational-notice {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    box-shadow: var(--shadow-medium);
    border-left: 5px solid var(--truth-gold);
}

.educational-notice p {
    color: var(--fed-blue-dark);
    font-size: 1rem;
    text-shadow: none;
    margin: 0;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--fed-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--fed-blue);
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.social-link:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: 50px;
    margin-right: 0.75rem;
    border-radius: 10px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;
    filter: contrast(1.2) brightness(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--fed-blue-light);
    padding-top: 1rem;
    text-align: center;
    color: var(--medium-gray);
}

.treasury-truth {
    color: var(--anger-red);
    font-weight: 600;
    font-style: italic;
    background: rgba(204, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--anger-red);
    margin-top: 1rem;
}

/* Truth Section */
.truth {
    background: linear-gradient(135deg, var(--fed-blue-dark), var(--resistance-purple), var(--anger-red));
    color: var(--white);
    padding: var(--section-padding);
}

.truth-container {
    max-width: 1000px;
    margin: 0 auto;
}

.truth-header {
    text-align: center;
    margin-bottom: 3rem;
}

.truth-header h3 {
    font-size: 2rem;
    color: var(--truth-gold);
    margin-bottom: 1rem;
}

.truth-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.truth-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
}

.truth-column:first-child h4 {
    background: var(--neon-green);
    color: var(--fed-blue-dark);
}

.truth-column:last-child h4 {
    background: var(--anger-red);
    color: var(--white);
}

.truth-list {
    list-style: none;
    padding: 0;
}

.truth-list li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.superiority li {
    background: rgba(0, 255, 136, 0.1);
    border-left: 4px solid var(--neon-green);
}

.failure li {
    background: rgba(204, 0, 0, 0.1);
    border-left: 4px solid var(--anger-red);
}

.truth-conclusion {
    text-align: center;
}

.emperor-quote {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid var(--truth-gold);
    margin-bottom: 2rem;
    font-style: italic;
}

.emperor-quote p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.emperor-quote cite {
    color: var(--truth-gold);
    font-weight: 600;
}

.truth-final p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.truth-final strong {
    color: var(--truth-gold);
}

/* Small Debt Clock in Treasury Section */
.debt-clock {
    background: linear-gradient(135deg, var(--anger-red), #990000);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 3px solid var(--truth-gold);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4), 0 0 20px rgba(255, 136, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.debt-clock::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 136, 0, 0.1), transparent);
    animation: debtGlow 3s ease-in-out infinite;
}

@keyframes debtGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.debt-clock h4 {
    color: var(--white);
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.debt-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 2;
}

.debt-label {
    font-size: 1rem;
    color: var(--light-gray);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.debt-amount {
    color: var(--truth-gold);
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: debtTick 1s ease-in-out infinite;
    transition: all 0.3s ease;
}

.debt-amount.updating {
    animation: debtUpdate 0.5s ease-out;
    transform: scale(1.1);
    color: #ffff00;
}

@keyframes debtTick {
    0%, 90% { 
        opacity: 1; 
        transform: scale(1);
    }
    95% { 
        opacity: 0.8; 
        transform: scale(1.05);
        text-shadow: 2px 2px 8px rgba(255, 136, 0, 0.8);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
    }
}

@keyframes debtUpdate {
    0% { 
        transform: scale(1);
        color: var(--truth-gold);
    }
    50% { 
        transform: scale(1.15);
        color: #ffff00;
        text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
    }
    100% { 
        transform: scale(1.1);
        color: #ffff00;
    }
}

.debt-note {
    font-size: 0.9rem;
    color: var(--light-gray);
    text-align: center;
    margin: 1.5rem 0 0 0;
    font-style: italic;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--fed-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-heavy);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-main-title {
        font-size: 1rem;
    }

    .nav-title-section {
        padding: 8px 14px;
    }

    .logo-image {
        height: 50px;
        width: 50px;
    }

    .nav-container {
        height: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .meme-grid {
        grid-template-columns: 1fr;
    }

    .money-printer {
        width: 250px;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .contract-address {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-main-title {
        font-size: 0.8rem;
    }

    .nav-title-section {
        padding: 6px 10px;
    }

    .logo-image {
        height: 40px;
        width: 40px;
    }

    .nav-container {
        height: 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .step {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Buy Now Button - Fixed Position */
.buy-now-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--premium-gold), var(--bright-gold));
    background-size: 200% 200%;
    border: 2px solid var(--premium-gold);
    border-radius: 12px;
    padding: 15px 25px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: elegantPulse 3s ease-in-out infinite;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.buy-now-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, var(--bright-gold), var(--warm-gold));
}

.buy-now-btn:hover::before {
    opacity: 1;
    left: 100%;
    top: 100%;
}

.buy-now-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.buy-now-btn .btn-text {
    position: relative;
    z-index: 2;
}

.buy-now-btn .btn-icon {
    font-size: 1.2rem;
    animation: coinSpin 2s linear infinite;
    position: relative;
    z-index: 2;
}

/* Buy Now Button Animations */
@keyframes elegantPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(212, 175, 55, 0.4),
            0 4px 15px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(212, 175, 55, 0.6),
            0 6px 20px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

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

@keyframes coinSpin {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Mobile responsiveness for buy button */
@media (max-width: 768px) {
    .buy-now-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .buy-now-btn .btn-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .buy-now-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Premium Trust and Engagement Elements */
.trust-badge {
    background: linear-gradient(135deg, var(--primary-black), var(--charcoal));
    border: 2px solid var(--premium-gold);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    color: var(--white);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
}

.trust-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--premium-gold), transparent);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.premium-section {
    background: linear-gradient(135deg, var(--rich-black), var(--primary-black));
    border: 1px solid var(--premium-gold);
    border-radius: 16px;
    padding: 50px;
    margin: 50px 0;
    position: relative;
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.elegance-card {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(45, 45, 45, 0.9) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 35px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.elegance-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--premium-gold);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4), 
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.premium-title {
    font-family: var(--font-title);
    font-weight: 900;
    color: var(--premium-gold);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.premium-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--premium-gold) 0%, 
        var(--bright-gold) 50%, 
        var(--premium-gold) 100%);
    border-radius: 2px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        transform: scaleX(0.9);
    }
    100% { 
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
        transform: scaleX(1);
    }
}

.interactive-stat {
    background: linear-gradient(135deg, var(--charcoal), var(--rich-black));
    border: 1px solid var(--premium-gold);
    border-radius: 8px;
    padding: 20px;
    margin: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.interactive-stat:hover {
    transform: scale(1.05);
    border-color: var(--bright-gold);
    background: linear-gradient(135deg, var(--rich-black), var(--charcoal));
}

.premium-cta {
    background: linear-gradient(135deg, var(--primary-black), var(--charcoal), var(--premium-gold));
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

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