/*
Theme Name: AU79 Digital Gold
Description: A smart, funny, and creative theme for AU79 - the digital gold token that's flipping the gold market
Version: 3.0 - Story-Driven Revolution
Author: AU79 Team
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000;
    overflow-x: hidden;
    position: relative;
}

/* Gentle Background Gold Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 215, 0, 0.15), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 215, 0, 0.25), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.1), transparent),
        radial-gradient(3px 3px at 160px 30px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(255, 215, 0, 0.15), transparent),
        radial-gradient(2px 2px at 250px 90px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 300px 40px, rgba(255, 215, 0, 0.1), transparent),
        radial-gradient(2px 2px at 80px 120px, rgba(255, 215, 0, 0.18), transparent),
        radial-gradient(1px 1px at 180px 140px, rgba(255, 215, 0, 0.12), transparent),
        radial-gradient(3px 3px at 50px 160px, rgba(255, 215, 0, 0.22), transparent),
        radial-gradient(1px 1px at 320px 100px, rgba(255, 215, 0, 0.14), transparent);
    background-repeat: repeat;
    background-size: 350px 200px;
    animation: gentleFloat 60s linear infinite;
    pointer-events: none;
    z-index: -1;
}

/* Additional floating coins layer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(4px 4px at 60px 50px, rgba(255, 165, 0, 0.3), transparent),
        radial-gradient(3px 3px at 120px 90px, rgba(255, 215, 0, 0.25), transparent),
        radial-gradient(2px 2px at 220px 120px, rgba(255, 165, 0, 0.2), transparent),
        radial-gradient(3px 3px at 280px 70px, rgba(255, 215, 0, 0.28), transparent),
        radial-gradient(2px 2px at 150px 150px, rgba(255, 165, 0, 0.18), transparent),
        radial-gradient(4px 4px at 30px 110px, rgba(255, 215, 0, 0.32), transparent);
    background-repeat: repeat;
    background-size: 400px 250px;
    animation: gentleFloat 80s linear infinite reverse;
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
}

@keyframes gentleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(0px) translateX(0px); }
    75% { transform: translateY(10px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.loading-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.loading-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

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

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.loading-text h1 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.loading-text p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 2rem;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-atoms {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.atom {
    width: 12px;
    height: 12px;
    background: #FFD700;
    border-radius: 50%;
    animation: atomBounce 1.5s ease-in-out infinite;
}

.atom:nth-child(2) { animation-delay: 0.3s; }
.atom:nth-child(3) { animation-delay: 0.6s; }

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    text-decoration: none;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: #FFD700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle.active {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: linear-gradient(90deg, #FF6B6B, #FFD700);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: linear-gradient(90deg, #FF6B6B, #FFD700);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
    padding-top: 120px; /* Add space for header */
    background: #000000; /* Full black background */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin-top: -60px; /* Pull content up a bit */
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 8rem); /* Reduced max size */
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGlow 3s ease-in-out infinite, floatText 6s ease-in-out infinite;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
    padding: 1.5rem 0; /* Reduced padding */
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
    z-index: 10; /* Ensure it's above everything */
}

.hero h1::before {
    content: '';
    position: absolute;
    top: -50px; /* Extend beyond text bounds */
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
    border-radius: 50%;
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

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

.hero .subtitle {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: fadeInUp 1s ease-out 0.5s both, goldShimmer 3s ease-in-out infinite;
}

.hero .subtitle-secondary {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #FFA500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero .tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #ccc;
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Interactive Gold Flip */
.gold-flip-container {
    margin: 3rem 0;
    text-align: center;
}

.flip-card {
    background-color: transparent;
    width: 350px;
    height: 500px; /* Increased height significantly */
    margin: 0 auto 2rem;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 1.8rem 1.5rem; /* Better padding distribution */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Start from top */
    overflow: hidden; /* Prevent text overflow */
    gap: 1rem; /* Space between elements */
}

.flip-card-front {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(184, 134, 11, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.flip-card-back {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1), rgba(0, 200, 100, 0.1));
    border: 2px solid rgba(0, 255, 127, 0.3);
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
}

.gold-side, .au79-side {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.gold-icon, .au79-icon {
    font-size: 3.5rem; /* Slightly smaller */
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.gold-side h3, .au79-side h3 {
    font-size: 1.6rem; /* Slightly smaller */
    margin-bottom: 1rem;
    color: #FFD700;
    text-align: center;
}

.au79-side h3 {
    color: #00FF7F;
}

.price-display {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    text-align: center;
}

.price-display.digital {
    border-color: rgba(0, 255, 127, 0.2);
}

.price-label {
    display: block;
    font-size: 0.85rem; /* Smaller */
    color: #ccc;
    margin-bottom: 0.3rem;
}

.price-value {
    display: block;
    font-size: 1.8rem; /* Smaller */
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.digital-price {
    color: #00FF7F;
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
    animation: digitalGlow 2s ease-in-out infinite alternate;
}

@keyframes digitalGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

.limitations, .advantages {
    text-align: left;
    width: 100%;
    max-width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.limitation, .advantage {
    font-size: 0.8rem; /* Smaller font */
    margin: 0.3rem 0;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    word-wrap: break-word;
    line-height: 1.2; /* Tighter line height */
    overflow: hidden;
    text-overflow: ellipsis;
}

.limitation {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.advantage {
    color: #00FF7F;
    background: rgba(0, 255, 127, 0.1);
}

.flip-trigger {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.flip-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.flip-trigger::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: left 0.5s;
}

.flip-trigger:hover::before {
    left: 100%;
}

.flip-icon {
    margin-left: 0.5rem;
    font-size: 1.4rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Evolution Showcase Styles */
.evolution-showcase {
    margin: 4rem 0;
    text-align: center;
}

.evolution-showcase h3 {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.evolution-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.evolution-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-point {
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    z-index: 2;
}

.timeline-point:hover {
    transform: scale(1.1);
}

.timeline-point.active .era-marker {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

.era-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.era-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFD700;
}

.era-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.era-label {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

.timeline-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    margin: 0 1rem;
    position: relative;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    border-radius: 2px;
}

.era-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.era-info h4 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.era-features {
    display: grid;
    gap: 0.8rem;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.feature-label {
    font-weight: 600;
    color: #ccc;
}

.feature-value {
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.feature-value.future {
    color: #00FF7F;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.feature-value.past {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.feature-value.present {
    color: #4dabf7;
    text-shadow: 0 0 10px rgba(77, 171, 247, 0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .evolution-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-line {
        width: 2px;
        height: 30px;
        margin: 0;
        background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    }
    
    .timeline-line::before {
        top: 0;
        left: -1px;
        right: -1px;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    }
    
    .era-marker {
        width: 70px;
        height: 70px;
    }
    
    .era-icon {
        font-size: 1.3rem;
    }
    
    .evolution-container {
        padding: 1.5rem;
    }
}

/* Screen Shake Animation */
@keyframes screenShake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px) translateY(1px); }
    20% { transform: translateX(2px) translateY(-1px); }
    30% { transform: translateX(-1px) translateY(2px); }
    40% { transform: translateX(1px) translateY(-2px); }
    50% { transform: translateX(-2px) translateY(1px); }
    60% { transform: translateX(2px) translateY(-1px); }
    70% { transform: translateX(-1px) translateY(2px); }
    80% { transform: translateX(1px) translateY(-2px); }
    90% { transform: translateX(-1px) translateY(1px); }
}

/* Transformation Panel Styles */
.transformation-panel {
    margin: 4rem 0;
    text-align: center;
}

.transformation-panel h3 {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.transform-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.old-world, .new-world {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    min-width: 300px;
    max-width: 350px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.new-world {
    border-color: rgba(0, 255, 127, 0.3);
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1), rgba(0, 255, 127, 0.05));
    transform: scale(0.8);
    opacity: 0;
}

.new-world.visible {
    transform: scale(1);
    opacity: 1;
}

.world-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.old-world h4, .new-world h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.new-world h4 {
    color: #00FF7F;
}

.world-stats {
    text-align: left;
}

.stat-item {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.transform-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.transform-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

.transform-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.transform-btn.transformed {
    background: linear-gradient(45deg, #00FF7F, #00CED1);
}

.transform-arrow {
    margin-left: 0.5rem;
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hidden {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .transform-display {
        flex-direction: column;
        gap: 2rem;
    }
    
    .old-world, .new-world {
        min-width: 280px;
        max-width: 320px;
    }
    
    .transformation-panel h3 {
        font-size: 1.8rem;
    }
}

/* Mobile adjustments for flip cards */
@media (max-width: 768px) {
    .flip-card {
        width: 300px;
        height: 480px; /* Increased for mobile */
    }
    
    .flip-card-front, .flip-card-back {
        padding: 1.5rem 1.2rem;
    }
    
    .limitation, .advantage {
        font-size: 0.75rem; /* Even smaller on mobile */
        padding: 0.3rem 0.5rem;
        margin: 0.25rem 0;
        line-height: 1.1;
    }
    
    .gold-side h3, .au79-side h3 {
        font-size: 1.4rem;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .gold-icon, .au79-icon {
        font-size: 3rem;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: #ccc;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-button.secondary:hover {
    background: #FFD700;
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #FFD700;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    transform: rotate(45deg);
}

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

/* Banner Section - Full Width Image */
.banner-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Experience Section - Glassmorphic */
.experience-section {
    position: relative;
    padding: 6rem 0;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.experience-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

/* Sliding Ribbon */
.sliding-ribbon {
    position: absolute;
    top: 20%;
    left: -20%;
    right: -20%;
    height: 120px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    transform: rotate(-15deg);
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.ribbon-text {
    display: flex;
    align-items: center;
    height: 100%;
    animation: slideText 10s linear infinite;
    white-space: nowrap;
}

.ribbon-text span {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin: 0 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: glassShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

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

.glass-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGlow 3s ease-in-out infinite;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.glass-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #fff;
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
}

.glass-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.glass-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.glass-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.glass-feature .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.glass-feature span:last-child {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.glass-cta {
    margin-top: 2rem;
}

.glass-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.glass-button:hover::before {
    left: 100%;
}

.glass-button:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Section Canvas Styles */
.section-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #FFD700);
    margin: 0 auto;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    transform: rotate(45deg);
}

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

/* Section Styles */
.section {
    position: relative;
    min-height: 80vh; /* Reduced from 100vh */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0; /* Reduced from 5rem */
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-bg canvas {
    width: 100%;
    height: 100%;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem); /* Reduced size */
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem; /* Reduced from 3rem */
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem; /* Reduced from 1.5rem */
    text-align: center;
    margin-bottom: 2rem; /* Reduced from 3rem */
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Story Flow Elements */
.story-flow, .solution-story, .revolution-story {
    margin: 4rem 0;
}

.story-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.story-block h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.story-block p {
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-block strong {
    color: #FFD700;
    font-weight: 700;
}

.story-block em {
    color: #FFA500;
    font-style: italic;
}

/* Narrative Section - Universal Language */
.narrative-section {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    padding: 6rem 0;
    position: relative;
}

.narrative-section .section-title {
    color: #FFD700;
    text-align: center;
    margin-bottom: 3rem;
}

.narrative-story {
    max-width: 1000px;
    margin: 0 auto;
}

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

.universal-fact {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.universal-fact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

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

.universal-fact h4 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.universal-fact p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

.scarcity-showcase {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.periodic-element {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.element-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    animation: elementGlow 3s ease-in-out infinite alternate;
}

@keyframes elementGlow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.element-box .element-number {
    font-size: 1.2rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.element-box .element-symbol {
    font-size: 3rem;
    color: #FFD700;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.element-box .element-name {
    font-size: 1rem;
    color: #ccc;
}

.scarcity-text h4 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.scarcity-text p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Problem Section */
.problem-section {
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
}

.problem-section .section-title {
    color: #ff6b6b;
}

.crisis-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    padding: 3rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.money-destruction {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.money-printer {
    text-align: center;
}

.printer-body {
    width: 100px;
    height: 80px;
    background: linear-gradient(145deg, #333, #555);
    border-radius: 10px;
    position: relative;
    animation: printMoney 2s infinite;
    margin-bottom: 1rem;
}

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

.money-stack {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 3px;
}

.money-bills {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 15px;
    background: #4CAF50;
    border-radius: 3px;
    animation: floatBills 3s infinite;
}

@keyframes floatBills {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.destruction-arrow {
    font-size: 3rem;
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

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

.your-wallet {
    text-align: center;
    position: relative;
}

.wallet-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-loss {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    animation: lossShake 1s infinite;
}

@keyframes lossShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* Revelation Section */
.revelation-section {
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
}

.revelation-section .section-title {
    color: #9b59b6;
}

.revelation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: center;
}

.atomic-transformation {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.transformation-arrow {
    font-size: 3rem;
    color: #9b59b6;
    animation: transformPulse 2s infinite;
}

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

.digital-element .element-card {
    background: linear-gradient(145deg, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.4));
    border-color: #9b59b6;
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3);
}

.gold-conversion {
    margin-top: 4rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.gold-conversion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gold-conversion h3 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.gold-conversion h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 2px;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.conversion-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.physical-gold, .digital-gold {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.physical-gold::before, .digital-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.physical-gold:hover, .digital-gold:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.gold-bar {
    width: 150px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FFD700 60%, #FFA500 100%);
    border-radius: 12px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    animation: goldPulse 4s ease-in-out infinite;
}

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

.bar-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.conversion-process {
    flex: 0 0 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 1rem;
}

.conversion-beam {
    width: 180px;
    height: 8px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: beamPulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.7; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.8); }
}

/* Mobile Menu Animations */
@keyframes menuSlideIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

@keyframes menuSlideOut {
    from {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
}

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

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

@keyframes floatingParticles {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(0px) translateX(0px); }
    75% { transform: translateY(15px) translateX(-10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.conversion-beam::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: beamFlow 2s ease-in-out infinite;
}

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

.conversion-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.particle:nth-child(1) { 
    animation-delay: 0s; 
    top: 20px; 
    left: 20px; 
}
.particle:nth-child(2) { 
    animation-delay: 0.6s; 
    top: 60px; 
    left: 80px; 
}
.particle:nth-child(3) { 
    animation-delay: 1.2s; 
    top: 40px; 
    left: 100px; 
}
.particle:nth-child(4) { 
    animation-delay: 1.8s; 
    top: 10px; 
    left: 90px; 
}
.particle:nth-child(5) { 
    animation-delay: 2.4s; 
    top: 80px; 
    left: 30px; 
}
.particle:nth-child(6) { 
    animation-delay: 0.3s; 
    top: 70px; 
    left: 60px; 
}

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0px) scale(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-40px) scale(1.5); 
    }
}

.digital-coin {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FFD700 60%, #FFA500 100%);
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    animation: coinSpin 6s linear infinite, coinGlow 4s ease-in-out infinite;
}

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

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

.coin-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.3); }
}

.gold-properties, .digital-properties {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.property {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    font-weight: 500;
    color: #ccc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.digital-properties .property {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.property:hover {
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

/* Solution Section */
.solution-section {
    background: radial-gradient(circle at center, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
}

.solution-section .section-title {
    color: #00d4aa;
}

.solution-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin: 4rem 0;
    align-items: center;
}

.comparison-item {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.comparison-item.old {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.comparison-item.new {
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
}

.comparison-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-point {
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.comparison-point.negative {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.comparison-point.positive {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
}

.vs-divider {
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: vsGlow 2s ease-in-out infinite alternate;
    justify-self: center;
}

@keyframes vsGlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Revolution Section */
.revolution-section {
    background: radial-gradient(circle at center, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
}

.revolution-section .section-title {
    color: #f39c12;
}

.tokenomics-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
}

.tokenomics-facts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fact {
    text-align: center;
    padding: 1rem;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.fact-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #f39c12;
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
}

.fact-label {
    font-size: 1rem;
    color: #ccc;
}

.final-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.final-cta h3 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.final-cta p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* About Section */
.about-section {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.about-section .section-title {
    color: #FFD700;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.content-text p {
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.periodic-table {
    perspective: 1000px;
}

.element-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: #FFD700;
    transform: rotateY(15deg) rotateX(5deg);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.element-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.element-number {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.element-symbol {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.element-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.element-mass {
    font-size: 1rem;
    font-weight: 300;
}

/* Features Section */
.features-section {
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
}

.features-section .section-title {
    color: #00d4aa;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin: 4rem 0 !important;
    position: relative !important;
    z-index: 10 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card {
    background: rgba(0, 212, 170, 0.05) !important;
    border: 1px solid rgba(0, 212, 170, 0.2) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #20e3b2);
    border-radius: 20px 20px 0 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4aa;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Tokenomics Section */
.tokenomics-section {
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
}

.tokenomics-section .section-title {
    color: #9b59b6;
}

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

.tokenomics-card {
    background: rgba(155, 89, 182, 0.05);
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.2);
}

.tokenomics-number {
    font-size: 3rem;
    font-weight: 900;
    color: #9b59b6;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.8);
}

.tokenomics-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.tokenomics-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap-section {
    background: radial-gradient(circle at center, rgba(255, 99, 132, 0.1) 0%, transparent 50%);
}

.roadmap-section .section-title {
    color: #e74c3c;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e74c3c, transparent);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin: 3rem 0;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(231, 76, 60, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.2);
    width: 45%;
    animation: fadeInUp 0.6s ease-out;
}

.roadmap-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.roadmap-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e74c3c;
    border: 3px solid #000;
    z-index: 2;
}

.roadmap-item:nth-child(odd)::before {
    right: -60px;
}

.roadmap-item:nth-child(even)::before {
    left: -60px;
}

.roadmap-quarter {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
}

.roadmap-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.roadmap-item p {
    color: #ccc;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFA500;
}

.footer-text {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 0 1rem;
        height: 100vh; /* Full height */
        display: flex;
        align-items: center;
        justify-content: center; /* Center content */
        padding-top: 140px; /* Increased top padding for mobile */
    }
    
    .hero-content {
        padding-top: 60px; /* Reduced since we have hero padding */
        margin-top: -40px; /* Adjust positioning */
    }
    
    .hero h1 {
        font-size: 2.8rem; /* Ensure visibility */
        padding: 1rem 0; /* Good padding for visibility */
        line-height: 1.0; /* Tighter line height */
        margin-bottom: 0.8rem; /* Good spacing */
        z-index: 20; /* High z-index for visibility */
    }
    
    .hero .subtitle {
        font-size: 1rem; /* Smaller subtitle */
        margin-bottom: 1rem;
        z-index: 19;
    }
    
    .hero .tagline {
        font-size: 0.85rem; /* Smaller tagline */
        margin-bottom: 1.5rem;
        line-height: 1.3;
        z-index: 18;
    }
    
    .gold-flip-container {
        margin: 2rem 0;
    }
    
    .hero-stats {
        flex-direction: row; /* Make horizontal */
        justify-content: space-between;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: nowrap;
    }
    
    .stat {
        min-width: auto;
        width: 32%; /* Three equal columns */
        max-width: none;
        margin: 0;
        padding: 0.7rem 0.3rem; /* Smaller padding */
    }
    
    .stat-number {
        font-size: 1.4rem; /* Smaller stat numbers */
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem; /* Smaller stat labels */
        line-height: 1.2;
    }
    
    .welcome-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .hero {
        height: 85vh; /* Even smaller height for very small screens */
    }
    
    .hero h1 {
        font-size: 2.5rem; /* Even smaller for tiny screens */
        padding: 0.5rem 0;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero .tagline {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .stat {
        padding: 0.8rem;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Continue with other styles */
@media (max-width: 768px) {
    .glassmorphic-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .banner-section {
        height: 60vh;
    }
    
    .rotating-banner {
        height: 40px;
    }
    
    .left-banner {
        top: 15%;
        transform: rotate(-3deg);
    }
    
    .right-banner {
        bottom: 15%;
        transform: rotate(3deg);
    }
    
    .moving-text {
        font-size: 1rem;
    }
    
    .banner-overlay {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.2), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.2), transparent),
            radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.3), transparent);
        background-repeat: repeat;
        background-size: 200px 100px;
        animation: floatingParticles 20s linear infinite;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .nav-menu.active {
        display: flex;
        opacity: 1;
        animation: menuSlideIn 0.5s ease-out forwards;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    .nav-menu a {
        font-size: 1.8rem;
        color: #fff;
        text-decoration: none;
        padding: 1rem 2rem;
        transition: all 0.3s ease;
        transform: translateY(50px);
        opacity: 0;
        position: relative;
        border-radius: 15px;
        background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.1));
        border: 1px solid transparent;
        backdrop-filter: blur(10px);
        overflow: hidden;
    }
    
    .nav-menu.active a {
        animation: linkSlideUp 0.6s ease-out forwards;
    }
    
    .nav-menu.active a:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active a:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active a:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active a:nth-child(4) { animation-delay: 0.4s; }
    
    .nav-menu a:hover {
        transform: translateY(0) scale(1.05);
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
        border: 1px solid rgba(255, 215, 0, 0.3);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
        border-radius: 15px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu a:hover::before {
        opacity: 1;
        animation: shimmer 1.5s infinite;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
    }
    
    .roadmap-item::before {
        left: -10px !important;
    }
    
    .roadmap-timeline::before {
        left: 0;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .solution-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .revelation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .conversion-visual {
        flex-direction: column;
        gap: 2rem;
    }
    
    .conversion-process {
        transform: rotate(90deg);
    }
    
    .tokenomics-visual {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .atomic-transformation {
        gap: 2rem;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
}

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

/* Performance optimizations */
.section-bg canvas {
    will-change: transform;
}

.hero h1 {
    will-change: transform;
}

.cta-button {
    will-change: transform;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero h1 {
        text-shadow: none;
    }
    
    .section-title {
        text-shadow: none;
    }
    
    .feature-card,
    .tokenomics-card,
    .roadmap-item {
        border-width: 2px;
    }
}

/* Problem Section */
.problem-section {
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
}

.problem-section .section-title {
    color: #ff6b6b;
}

.problem-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.money-printer {
    text-align: center;
}

.printer-body {
    width: 100px;
    height: 80px;
    background: linear-gradient(145deg, #333, #555);
    border-radius: 10px;
    position: relative;
    animation: printMoney 2s infinite;
}

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

.money-stack {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 3px;
}

.money-bills {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 15px;
    background: #4CAF50;
    border-radius: 3px;
    animation: floatBills 3s infinite;
}

@keyframes floatBills {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.inflation-arrow {
    font-size: 3rem;
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

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

.purchasing-power {
    text-align: center;
}

.power-bar {
    width: 200px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 107, 107, 0.5);
}

.power-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ff4757);
    width: 30%;
    animation: shrinkPower 4s ease-in-out infinite alternate;
}

@keyframes shrinkPower {
    0% { width: 100%; }
    100% { width: 20%; }
}

.purchasing-power span {
    color: #ff6b6b;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    background: radial-gradient(circle at center, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
}

.solution-section .section-title {
    color: #00d4aa;
}

.solution-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.transformation {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.old-gold, .new-gold {
    text-align: center;
}

.gold-bar {
    width: 120px;
    height: 80px;
    background: linear-gradient(145deg, #FFD700, #FFA500);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.digital-coin {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #00d4aa, #00a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
    animation: coinSpin 4s linear infinite;
}

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

.transform-arrow {
    font-size: 3rem;
    color: #00d4aa;
    animation: transformPulse 2s infinite;
}

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

/* Tokenomics Section */
.tokenomics-section {
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
}

.tokenomics-section .section-title {
    color: #9b59b6;
}

.tokenomics-visual {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.supply-chart {
    position: relative;
}

.chart-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(#9b59b6 0deg, #8e44ad 120deg, #663399 240deg, #9b59b6 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chartRotate 20s linear infinite;
}

@keyframes chartRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chart-center {
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #9b59b6;
}

.supply-number {
    font-size: 3rem;
    font-weight: 900;
    color: #9b59b6;
    text-shadow: 0 0 30px rgba(155, 89, 182, 0.8);
}

.supply-label {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Roadmap Section */
.roadmap-section {
    background: radial-gradient(circle at center, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
}

.roadmap-section .section-title {
    color: #f39c12;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #f39c12, #e67e22);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 2rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 2rem;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #f39c12;
    border-radius: 50%;
    border: 4px solid #000;
    z-index: 2;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(243, 156, 18, 0.4); }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(243, 156, 18, 0.2);
    backdrop-filter: blur(10px);
}

.timeline-content h3 {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.timeline-progress::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 4px;
    width: var(--progress, 0%);
    animation: progressFill 2s ease-in-out;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: var(--progress, 0%); }
}

/* Feature Cards */
.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    position: relative !important;
    z-index: 10 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card {
    padding: 2rem !important;
    border-radius: 20px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.glass-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.problem-card {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    backdrop-filter: blur(10px);
}

.solution-card {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    backdrop-filter: blur(10px);
}

.tokenomics-card {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.2);
    backdrop-filter: blur(10px);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Atomic Number Highlight */
.atomic-number {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: atomicGlow 3s ease-in-out infinite alternate;
}

@keyframes atomicGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 6rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        padding: 1rem;
        text-align: center;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* Glassmorphic responsive styles */
@media (max-width: 768px) {
    .glass-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .glass-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .glass-feature {
        min-width: auto;
        width: 100%;
    }
    
    .glass-title {
        font-size: 2.5rem;
    }
    
    .glass-subtitle {
        font-size: 1.2rem;
    }
    
    .experience-section {
        height: 90vh;
    }
}

/* How to Buy Section - Simplified */
.how-to-buy-section {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#how-to-buy-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.how-to-buy-section .content-wrapper {
    position: relative;
    z-index: 2;
}

.how-to-buy-section .section-title {
    color: #FFD700;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: auto;
    min-height: 250px;
    opacity: 1 !important;
    visibility: visible !important;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.step-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-content h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.step-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.step-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-block;
}

.step-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.step-button.primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.step-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.step-button.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

.step-info {
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.step-info small {
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
}

.contract-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contract-info small {
    color: #999;
    font-size: 0.8rem;
}

#contract-address {
    color: #FFD700;
    font-family: monospace;
    font-weight: 600;
}

.buy-help {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.buy-help h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.buy-help p {
    color: #ccc;
    margin-bottom: 2rem;
}

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

.help-button {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.help-button:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Interactive Step Guides */
.step-guide {
    margin-top: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s ease;
    opacity: 0;
}

.step-guide.active {
    max-height: 1000px;
    opacity: 1;
    padding: 2rem;
}

.guide-content {
    color: #ccc;
}

.guide-content h4 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.guide-step:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.guide-number {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.guide-text {
    flex: 1;
}

.guide-text p {
    color: #FFD700;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.guide-text small {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Guide Tabs */
.guide-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.guide-tab {
    background: none;
    border: none;
    color: #ccc;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.guide-tab.active {
    color: #FFD700;
    border-bottom-color: #FFD700;
}

.guide-tab:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.guide-tab-content {
    display: none;
}

.guide-tab-content.active {
    display: block;
}

/* Exchange Options */
.exchange-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exchange-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.exchange-option:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.exchange-icon {
    font-size: 1.8rem;
    width: 50px;
    text-align: center;
}

.exchange-info {
    flex: 1;
}

.exchange-info h5 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.exchange-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.exchange-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.exchange-link:hover {
    background: rgba(255, 215, 0, 0.2);
    text-decoration: none;
}

/* Demo Screens */
.guide-demo {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.demo-screen {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.demo-browser {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.browser-bar {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots::before {
    content: '● ● ●';
    color: #FFD700;
    font-size: 1rem;
}

.browser-url {
    color: #ccc;
    font-size: 1rem;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    flex: 1;
    text-align: center;
}

.browser-content {
    padding: 2rem;
    text-align: center;
}

.phantom-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.browser-content h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.demo-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Phantom Demo */
.demo-phantom {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 2rem;
    max-width: 350px;
    margin: 0 auto;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.phantom-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.phantom-logo-small {
    font-size: 2rem;
}

.phantom-header span {
    color: #FFD700;
    font-weight: 600;
    font-size: 1.3rem;
}

.phantom-balance {
    text-align: center;
    margin-bottom: 2rem;
}

.phantom-balance h4 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.phantom-balance p {
    color: #ccc;
    font-size: 1.1rem;
}

.phantom-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.phantom-btn {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.phantom-btn.active {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.5);
}

.phantom-address {
    text-align: center;
}

.phantom-address small {
    color: #999;
    font-size: 0.9rem;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-top: 1rem;
}

.address-box span {
    color: #FFD700;
    font-family: monospace;
    flex: 1;
    font-size: 1.1rem;
}

.copy-demo {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.copy-demo:hover {
    background: rgba(255, 215, 0, 0.2);
}

.jupiter-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Responsive Design for Guides */
@media (max-width: 768px) {
    .guide-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .guide-tab {
        padding: 0.8rem 1rem;
        border-bottom: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .guide-tab.active {
        background: rgba(255, 215, 0, 0.1);
    }
    
    .exchange-option {
        flex-direction: column;
        text-align: center;
    }
    
    .demo-phantom {
        max-width: 280px;
    }
    
    .buy-steps {
        grid-template-columns: 1fr;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .help-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        min-height: 180px; /* Shorter cards */
        padding: 1.5rem;
    }
    
    /* Problem and Solution Section Mobile Styles */
    .section-title {
        font-size: 2rem !important; /* Smaller section titles */
        margin-bottom: 2rem !important;
    }
    
    .story-block h3 {
        font-size: 1.3rem !important; /* Smaller "Element 79 meets blockchain" style headings */
        margin-bottom: 1rem !important;
    }
    
    .story-block p {
        font-size: 0.9rem !important; /* Smaller paragraph text */
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .problem-cards,
    .solution-comparison {
        gap: 1rem !important;
    }
    
    .feature-card,
    .problem-card,
    .comparison-item {
        padding: 1.2rem !important; /* Shorter boxes with less padding */
        min-height: auto !important;
    }
    
    .feature-card h3,
    .problem-card h3,
    .comparison-item h4 {
        font-size: 1.1rem !important; /* Smaller headings in cards */
        margin-bottom: 0.8rem !important;
    }
    
    .feature-card p,
    .problem-card p,
    .comparison-list {
        font-size: 0.85rem !important; /* Smaller text in cards */
        line-height: 1.4 !important;
    }
    
    .comparison-point {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Problem visual adjustments */
    .crisis-visual {
        padding: 1.5rem 0.8rem !important;
        margin: 2rem 0 !important;
    }
    
    .money-destruction {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.5rem !important;
        max-width: 100% !important;
        margin: 1.5rem 0 !important;
        padding: 0.5rem !important;
    }
    
    .money-printer,
    .destruction-arrow,
    .your-wallet {
        flex: 1 !important;
        text-align: center !important;
    }
    
    .money-printer {
        max-width: 30% !important;
    }
    
    .printer-body {
        width: 60px !important;
        height: 50px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .money-printer span {
        font-size: 0.7rem !important;
        display: block !important;
    }
    
    .destruction-arrow {
        flex: 0 0 20% !important;
        font-size: 1.5rem !important;
        margin: 0 !important;
    }
    
    .your-wallet {
        max-width: 30% !important;
        position: relative !important;
    }
    
    .wallet-icon {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .value-loss {
        font-size: 0.9rem !important;
        padding: 0.3rem !important;
        top: -5px !important;
        right: 10% !important;
    }
    
    .your-wallet span {
        font-size: 0.7rem !important;
        display: block !important;
    }
    
    .atomic-transformation {
        margin: 1.5rem 0 !important;
        padding: 1rem !important;
    }
    
    .money-printer span,
    .your-wallet span,
    .element-name,
    .element-mass {
        font-size: 0.8rem !important;
    }
    
    /* Solution section adjustments */
    .periodic-table,
    .digital-element {
        margin: 1rem 0 !important;
    }
    
    .element-card {
        padding: 0.8rem !important;
    }
    
    .element-number {
        font-size: 0.9rem !important;
    }
    
    .element-symbol {
        font-size: 1.5rem !important;
    }
    
    .element-name,
    .element-mass {
        font-size: 0.7rem !important;
    }
    
    /* Final CTA Mobile Styles - "The Choice is Yours" section */
    .final-cta {
        margin-top: 2rem !important;
        padding: 1.5rem !important;
    }
    
    .final-cta h3 {
        font-size: 1.8rem !important; /* Much smaller heading */
        margin-bottom: 0.8rem !important;
    }
    
    .final-cta p {
        font-size: 0.95rem !important; /* Smaller paragraph text */
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .cta-buttons {
        gap: 1rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cta-buttons .cta-button {
        font-size: 0.9rem !important;
        padding: 0.8rem 1.5rem !important;
        width: 100% !important;
        max-width: 250px !important;
        text-align: center !important;
    }
    
    /* Gold Flip Mobile Styles */
    .flip-card {
        width: 280px !important;
        height: 350px !important;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 1.5rem !important;
    }
    
    .gold-icon, .au79-icon {
        font-size: 3rem !important;
    }
    
    .gold-side h3, .au79-side h3 {
        font-size: 1.4rem !important;
    }
    
    .price-value {
        font-size: 1.5rem !important;
    }
    
    .flip-trigger {
        font-size: 1rem !important;
        padding: 0.8rem 1.5rem !important;
    }
    
    /* Narrative Section Mobile */
    .universal-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .universal-fact {
        padding: 1.5rem !important;
    }
    
    .fact-icon {
        font-size: 2.5rem !important;
    }
    
    .universal-fact h4 {
        font-size: 1.3rem !important;
    }
    
    .universal-fact p {
        font-size: 0.9rem !important;
    }
    
    .scarcity-showcase {
        padding: 2rem !important;
    }
    
    .periodic-element {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .element-box {
        min-width: auto !important;
        width: 120px !important;
        padding: 1.5rem !important;
    }
    
    .element-box .element-symbol {
        font-size: 2.5rem !important;
    }
    
    .scarcity-text h4 {
        font-size: 1.5rem !important;
    }
    
    .scarcity-text p {
        font-size: 1rem !important;
    }
}

.cta-button.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-button.tertiary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFD700;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #FFA500;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Responsive Design for How to Buy Section */
@media (max-width: 768px) {
    .buy-steps {
        grid-template-columns: 1fr;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .help-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Step Detail Modal */
.step-modal-container {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    max-height: 80vh;
    overflow-y: auto;
}

.step-modal-title {
    color: #FFD700;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-modal-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.step-modal-steps {
    margin-bottom: 2rem;
}

.modal-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.modal-step:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.modal-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.modal-step-content h3 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.modal-step-content p {
    color: #ccc;
    line-height: 1.6;
}

.step-modal-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.modal-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-tab.active {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.5);
}

.modal-tab:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
}

.modal-tab-content {
    display: none;
}

.modal-tab-content.active {
    display: block;
}

.step-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contract-display {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
}

.contract-display h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contract-copy {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 10px;
}

.contract-copy span {
    color: #FFD700;
    font-family: monospace;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.3);
}

/* Responsive Design for Step Modal */
@media (max-width: 768px) {
    .step-modal-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .step-modal-title {
        font-size: 1.5rem;
    }
    
    .modal-step {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-step-number {
        margin: 0 auto 1rem;
    }
    
    .step-modal-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-tab {
        width: 100%;
        max-width: 200px;
    }
    
    .step-modal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contract-copy {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating Action Button (FAB) */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    /* Extended hover area */
    padding: 20px;
    margin: -20px;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.fab-main .fab-icon {
    transition: all 0.3s ease;
}

.fab-main .fab-text {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-main:hover .fab-icon {
    transform: translateY(-20px);
    opacity: 0;
}

.fab-main:hover .fab-text {
    opacity: 1;
    transform: translateY(0);
}

.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    /* Extended hover area */
    padding: 20px;
    margin: -20px;
}

.fab-container:hover .fab-menu,
.fab-menu:hover,
.fab-container.active .fab-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-container:hover .fab-main,
.fab-container.active .fab-main {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6);
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    color: #FFD700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    /* Extended hover area */
    position: relative;
}

.fab-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
}

.fab-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateX(-5px);
}

.fab-item-icon {
    font-size: 1.2rem;
}

.fab-item-text {
    font-size: 0.85rem;
}

/* Inline CTAs */
.inline-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.inline-cta .cta-button {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
}

/* Quick Buy Modal */
.quick-buy-container {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    max-height: 80vh;
    overflow-y: auto;
}

.quick-buy-title {
    color: #FFD700;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quick-buy-subtitle {
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.quick-buy-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.buy-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.buy-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.buy-option-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.buy-option h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.buy-option p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.buy-option-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.buy-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.quick-buy-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.contract-display {
    margin-bottom: 1.5rem;
}

.contract-display h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contract-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

#quick-contract-address {
    color: #FFD700;
    font-family: monospace;
    font-size: 0.9rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.2);
}

.quick-buy-steps h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.quick-buy-steps ol {
    color: #ccc;
    padding-left: 1.5rem;
}

.quick-buy-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.quick-buy-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

/* Mobile responsive for FAB */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .fab-main .fab-text {
        font-size: 0.7rem;
    }
    
    .fab-item {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .inline-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .inline-cta .cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .quick-buy-options {
        grid-template-columns: 1fr;
    }
    
    .quick-buy-container {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* Era Information Styles */
.era-info {
    text-align: center;
    padding: 1rem;
}

.era-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.era-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 300px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.feature-label {
    font-weight: 600;
    color: var(--text-light);
}

.feature-value {
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.feature-value.past {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: #FFF8DC;
}

.feature-value.present {
    background: linear-gradient(135deg, #4169E1, #6495ED);
    color: #F0F8FF;
}

.feature-value.future {
    background: linear-gradient(135deg, var(--accent-color), #32CD32);
    color: #000;
    font-weight: 600;
    text-shadow: none;
}

/* Mobile Responsive for Era Features */
@media (max-width: 768px) {
    .era-features {
        gap: 0.3rem;
    }
    
    .feature-row {
        padding: 0.3rem;
        font-size: 0.9rem;
    }
    
    .feature-value {
        font-size: 0.8rem;
        padding: 0.1rem 0.3rem;
    }
}

/* Screen Shake Animation */
@keyframes screenShake {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-2px, -1px) rotate(-0.5deg); }
    20% { transform: translate(2px, 1px) rotate(0.5deg); }
    30% { transform: translate(-1px, 2px) rotate(-0.5deg); }
    40% { transform: translate(1px, -1px) rotate(0.5deg); }
    50% { transform: translate(-2px, 1px) rotate(-0.5deg); }
    60% { transform: translate(2px, -2px) rotate(0.5deg); }
    70% { transform: translate(-1px, -1px) rotate(-0.5deg); }
    80% { transform: translate(1px, 2px) rotate(0.5deg); }
    90% { transform: translate(-2px, -1px) rotate(-0.5deg); }
}
