/* ========================================
   🚀 SUPER COOL CRYPTO INTERACTIVE DESIGN
   ======================================== */

/* CSS Custom Properties for Mobile */
:root {
    --vh: 1vh;
}

/* Core Body & Layout Enhancements */
body {
    margin: 0;
    font-family: 'Exo 2', 'Orbitron', 'Rajdhani', sans-serif;
    background-color: #0a0a0a;
    color: #188ccf;
    cursor: url('../assets/base-icon.png') 16 16, auto;
    overflow-x: hidden;
    perspective: 1000px;
}

/* ========================================
   🚀 CRYPTO SPLASH SCREEN STYLING
   ======================================== */

/* Main Splash Screen Container */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* Mobile viewport fix */
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1s ease-out, visibility 1s ease-out;
    /* Prevent scrolling and ensure viewport containment */
    overscroll-behavior: none;
    -webkit-overflow-scrolling: none;
}

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

/* Splash Overlay for Effects */
.splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.8) 30%,
        rgba(0, 0, 0, 0.9) 70%,
        rgba(255, 0, 255, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Splash Content Container */
.splash-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Video Styling */
#splashVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* Mobile viewport fix */
    max-width: 100vw;
    max-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100); /* Mobile viewport fix */
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7) contrast(1.2);
    /* Ensure video stays within viewport bounds */
    object-position: center center;
    /* Mobile optimization */
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* Hardware acceleration for mobile */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    /* Mobile video optimization */
    will-change: transform;
    transform: translate3d(-50%, -50%, 0);
}

/* Splash Logo */
.splash-logo {
    position: absolute;
    top: clamp(10vh, 20%, 15vh);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: logoGlow 2s ease-in-out infinite alternate;
    /* Ensure logo stays within safe viewport area */
    width: 90vw;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.splash-logo-img {
    max-width: 100%;
    width: clamp(220px, 80vw, 400px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)); }
    100% { filter: drop-shadow(0 0 50px rgba(0, 255, 255, 1)) drop-shadow(0 0 80px rgba(255, 0, 255, 0.6)); }
}

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

/* Loading Section */
.splash-loading {
    position: absolute;
    bottom: clamp(15vh, 25%, 20vh);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    width: clamp(300px, 80vw, 500px);
    max-width: 90vw;
    padding: 0 10px;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; text-shadow: 0 0 30px rgba(0, 255, 255, 1); }
}

/* Loading Bar */
.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0.8) 0%,
        rgba(0, 200, 255, 1) 25%,
        rgba(255, 255, 255, 1) 50%,
        rgba(0, 200, 255, 1) 75%,
        rgba(0, 255, 255, 0.8) 100%);
    border-radius: 10px;
    animation: loadingProgress 8s ease-out forwards;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

@keyframes loadingProgress {
    0% { width: 0%; }
    10% { width: 15%; }
    30% { width: 40%; }
    60% { width: 70%; }
    90% { width: 95%; }
    100% { width: 100%; }
}

.loading-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    animation: subtextGlow 3s ease-in-out infinite;
}

@keyframes subtextGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(255, 0, 255, 0.4); }
}

/* Skip Button */
.splash-skip {
    position: absolute;
    bottom: clamp(5vh, 10%, 8vh);
    right: clamp(10px, 5vw, 50px);
    z-index: 4;
    /* Ensure button stays within safe area */
    padding: 10px;
}

.skip-btn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid rgba(0, 255, 255, 0.5);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skip-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.4));
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.skip-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.6);
}

/* Splash Particles Effect */
.splash-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 0, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 0, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: particlesFloat 20s linear infinite;
    opacity: 0.6;
}

@keyframes particlesFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-200px, -150px) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile video optimizations */
    #splashVideo {
        width: 100vw;
        height: 100vh;
        /* Force full coverage on mobile */
        min-width: 100vw;
        min-height: 100vh;
        /* Ensure proper positioning on mobile */
        transform: translate3d(-50%, -50%, 0) scale(1.1);
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1.1);
        /* Mobile-specific object fit */
        object-fit: cover;
        object-position: center center;
        /* Enhanced mobile performance */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
        /* iOS Safari specific fixes */
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    
    /* iOS Safari viewport height fix */
    @supports (-webkit-appearance: none) {
        #splashVideo {
            height: calc(var(--vh, 1vh) * 100);
            min-height: calc(var(--vh, 1vh) * 100);
        }
    }
    
    /* Enhanced mobile video container */
    .splash-screen {
        /* Ensure full coverage on mobile */
        width: 100vw;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        overflow: hidden;
        /* Force hardware acceleration */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .splash-logo {
        top: clamp(8vh, 15%, 12vh);
        width: 95vw;
    }
    
    .splash-logo-img {
        width: clamp(200px, 70vw, 280px);
    }
    
    .loading-text {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .splash-loading {
        bottom: clamp(12vh, 20%, 18vh);
        width: clamp(280px, 90vw, 400px);
        padding: 0 15px;
    }
    
    .splash-skip {
        bottom: clamp(3vh, 5%, 6vh);
        right: clamp(8px, 3vw, 20px);
    }
    
    .skip-btn {
        padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
        font-size: clamp(0.7rem, 3vw, 0.8rem);
    }
}

@media (max-width: 480px) {
    /* Enhanced mobile video positioning */
    #splashVideo {
        /* More aggressive scaling for small screens */
        transform: translate3d(-50%, -50%, 0) scale(1.2);
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1.2);
        /* Ensure full coverage on small screens */
        width: 120vw;
        height: 120vh;
        min-width: 120vw;
        min-height: 120vh;
        /* Improve rendering performance */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .splash-logo {
        top: clamp(5vh, 12%, 10vh);
    }
    
    .splash-logo-img {
        width: clamp(180px, 65vw, 220px);
    }
    
    .loading-text {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        letter-spacing: 1px;
    }
    
    .splash-loading {
        bottom: clamp(10vh, 15%, 16vh);
        width: clamp(260px, 95vw, 350px);
        padding: 0 10px;
    }
    
    .splash-skip {
        bottom: clamp(2vh, 4%, 5vh);
        right: clamp(5px, 2vw, 15px);
    }
    
    .skip-btn {
        padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
        font-size: clamp(0.6rem, 2.5vw, 0.7rem);
    }
}

/* Ultra small screens and landscape mobile */
@media (max-height: 500px) {
    /* Landscape mobile video adjustments */
    #splashVideo {
        transform: translate3d(-50%, -50%, 0) scale(1.3);
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1.3);
        width: 130vw;
        height: 130vh;
    }
    
    .splash-logo {
        top: 5vh;
    }
    
    .splash-logo-img {
        width: clamp(120px, 40vw, 180px);
    }
    
    .splash-loading {
        bottom: 8vh;
    }
    
    .loading-text {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    .splash-skip {
        bottom: 2vh;
        right: 2vw;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-appearance: none) and (not (tab-size: 4)) {
    #splashVideo {
        /* iOS Safari specific positioning */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: none;
        -webkit-transform: none;
        object-fit: cover;
        object-position: center center;
    }
}

/* Additional mobile browser compatibility */
@media screen and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) {
    /* iPhone X and similar */
    #splashVideo {
        height: 100vh;
        height: -webkit-fill-available;
        object-fit: cover;
    }
}

/* Hide main content during splash */
body.splash-active {
    overflow: hidden;
}

body.splash-active header,
body.splash-active main {
    display: none;
}

/* ========================================
   🔊 SOUND PROMPTS FOR SPLASH SCREEN
   ======================================== */

/* Sound Prompt for Muted Fallback */
.sound-prompt {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    cursor: pointer;
    animation: soundPromptPulse 2s ease-in-out infinite;
}

.sound-prompt-content {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.3));
    border: 2px solid rgba(255, 193, 7, 0.6);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3);
}

.sound-prompt:hover .sound-prompt-content {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.4), rgba(255, 152, 0, 0.5));
    border-color: rgba(255, 193, 7, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.5);
}

.sound-prompt-content i {
    font-size: 1.2rem;
    color: #ffc107;
    animation: volumeIcon 1.5s ease-in-out infinite;
}

@keyframes soundPromptPulse {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

@keyframes volumeIcon {
    0%, 100% { color: #ffc107; }
    50% { color: #ff9800; }
}

/* Click-to-Play Prompt */
.play-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
    animation: playPromptBounce 2s ease-in-out infinite;
}

.play-prompt-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.3));
    border: 3px solid rgba(0, 255, 255, 0.6);
    padding: 30px 40px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    color: #fff;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4);
}

.play-prompt:hover .play-prompt-content {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.5));
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.6);
}

.play-prompt-content i {
    font-size: 3rem;
    color: #00ffff;
    animation: playIcon 2s ease-in-out infinite;
}

.play-prompt-content span {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

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

@keyframes playIcon {
    0%, 100% { color: #00ffff; transform: scale(1); }
    50% { color: #ff00ff; transform: scale(1.2); }
}

/* Responsive Design for Prompts */
@media (max-width: 768px) {
    .sound-prompt-content {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .play-prompt-content {
        padding: 25px 30px;
    }
    
    .play-prompt-content i {
        font-size: 2.5rem;
    }
    
    .play-prompt-content span {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .sound-prompt {
        top: 10%;
    }
    
    .sound-prompt-content {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .play-prompt-content {
        padding: 20px 25px;
    }
    
    .play-prompt-content i {
        font-size: 2rem;
    }
    
    .play-prompt-content span {
        font-size: 0.9rem;
    }
}

/* ========================================
   📱 MOBILE-SPECIFIC SPLASH PROMPTS
   ======================================== */

/* Mobile Sound Prompt */
.mobile-sound-prompt {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    cursor: pointer;
    animation: soundPromptPulse 2s ease-in-out infinite;
}

.mobile-sound-prompt .sound-prompt-content {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid rgba(0, 255, 255, 0.4);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    /* Mobile touch optimization */
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-sound-prompt:active .sound-prompt-content {
    transform: scale(0.95);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
}

/* Mobile Play Prompt */
.mobile-play-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    cursor: pointer;
    animation: playPromptBounce 2s ease-in-out infinite;
}

.mobile-play-prompt .play-prompt-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25), rgba(255, 0, 255, 0.25));
    border: 3px solid rgba(0, 255, 255, 0.5);
    padding: 25px 35px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    color: #fff;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
    /* Mobile optimizations */
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    min-width: 150px;
    min-height: 80px;
}

.mobile-play-prompt:active .play-prompt-content {
    transform: scale(0.95);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.35), rgba(255, 0, 255, 0.35));
    border-color: rgba(255, 255, 255, 0.7);
}

.mobile-play-prompt .play-prompt-content i {
    font-size: 2.5rem;
    color: #00ffff;
    animation: playIcon 2s ease-in-out infinite;
}

.mobile-play-prompt .play-prompt-content span {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Mobile responsive adjustments for prompts */
@media (max-width: 768px) {
    .mobile-sound-prompt {
        top: 15%;
    }
    
    .mobile-sound-prompt .sound-prompt-content {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .mobile-play-prompt .play-prompt-content {
        padding: 20px 30px;
        min-width: 120px;
        min-height: 70px;
    }
    
    .mobile-play-prompt .play-prompt-content i {
        font-size: 2rem;
    }
    
    .mobile-play-prompt .play-prompt-content span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mobile-sound-prompt {
        top: 12%;
    }
    
    .mobile-sound-prompt .sound-prompt-content {
        padding: 8px 14px;
        font-size: 0.75rem;
        border-radius: 20px;
    }
    
    .mobile-play-prompt .play-prompt-content {
        padding: 16px 24px;
        min-width: 100px;
        min-height: 60px;
        border-radius: 30px;
    }
    
    .mobile-play-prompt .play-prompt-content i {
        font-size: 1.8rem;
    }
    
    .mobile-play-prompt .play-prompt-content span {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

/* Enhanced touch feedback */
@media (hover: none) and (pointer: coarse) {
    .mobile-sound-prompt .sound-prompt-content,
    .mobile-play-prompt .play-prompt-content {
        transition: all 0.2s ease;
    }
    
    .mobile-sound-prompt:active .sound-prompt-content {
        transform: scale(0.9);
    }
    
    .mobile-play-prompt:active .play-prompt-content {
        transform: scale(0.9);
    }
}

/* ========================================
   🌟 SUPER COOL CRYPTO SCROLLBAR STYLING
   ======================================== */

/* Custom Scrollbar for Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(0, 20, 40, 0.8) 50%, 
        rgba(10, 0, 30, 0.9) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        rgba(0, 255, 255, 0.8) 0%, 
        rgba(0, 200, 255, 0.9) 25%,
        rgba(0, 150, 255, 1) 50%,
        rgba(0, 200, 255, 0.9) 75%,
        rgba(0, 255, 255, 0.8) 100%);
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.5),
        inset 0 0 5px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        rgba(0, 255, 255, 1) 0%, 
        rgba(255, 0, 255, 0.9) 25%,
        rgba(255, 255, 0, 1) 50%,
        rgba(255, 0, 255, 0.9) 75%,
        rgba(0, 255, 255, 1) 100%);
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(255, 0, 255, 0.6),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, 
        rgba(255, 255, 0, 1) 0%, 
        rgba(255, 0, 255, 1) 50%,
        rgba(0, 255, 255, 1) 100%);
    box-shadow: 
        0 0 35px rgba(255, 255, 0, 1),
        0 0 50px rgba(255, 0, 255, 0.8),
        inset 0 0 10px rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

::-webkit-scrollbar-corner {
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.3), 
        rgba(255, 0, 255, 0.3));
    border-radius: 10px;
}

/* Scrollbar Animation Effects */
@keyframes scrollbarPulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.8), 0 0 35px rgba(255, 0, 255, 0.4); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
}

::-webkit-scrollbar-thumb {
    animation: scrollbarPulse 3s ease-in-out infinite;
}

/* Firefox Scrollbar Styling */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 255, 0.8) rgba(10, 10, 10, 0.9);
}

/* Enhanced scrollbar for specific containers */
.crypto-card-container,
.nft-gallery-main,
.content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 255, 0.9) rgba(0, 20, 40, 0.8);
}

/* Mobile touch scrollbar enhancement */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 12px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, 
            rgba(0, 255, 255, 0.9) 0%, 
            rgba(0, 200, 255, 1) 50%,
            rgba(0, 255, 255, 0.9) 100%);
        border-radius: 8px;
        border: 1px solid rgba(0, 255, 255, 0.4);
    }
}

/* Interactive scrollbar indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%,
        rgba(0, 255, 255, 0.8) var(--scroll-progress, 0%),
        rgba(0, 255, 255, 0) var(--scroll-progress, 0%));
    z-index: 9999;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Enhanced scrollbar with velocity effects */
::-webkit-scrollbar-thumb {
    animation: scrollbarPulse 3s ease-in-out infinite;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Dynamic scrollbar intensity based on scroll velocity */
:root {
    --scroll-intensity: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        rgba(0, 255, 255, 1) 0%, 
        rgba(255, 0, 255, 0.9) 25%,
        rgba(255, 255, 0, 1) 50%,
        rgba(255, 0, 255, 0.9) 75%,
        rgba(0, 255, 255, 1) 100%);
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(255, 0, 255, 0.6),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Scroll to top button styling */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.8), rgba(255, 0, 255, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.9), rgba(255, 0, 255, 0.9));
    box-shadow: 0 8px 30px rgba(255, 255, 0, 0.5);
    transform: scale(1.1);
}

.scroll-to-top-btn:active {
    transform: scale(1.2);
    box-shadow: 0 10px 40px rgba(255, 255, 0, 0.7);
}

/* Enhanced scroll animations */
@keyframes scrollbarGlow {
    0% { 
        filter: hue-rotate(0deg) brightness(1);
    }
    25% { 
        filter: hue-rotate(90deg) brightness(1.2);
    }
    50% { 
        filter: hue-rotate(180deg) brightness(1.4);
    }
    75% { 
        filter: hue-rotate(270deg) brightness(1.2);
    }
    100% { 
        filter: hue-rotate(360deg) brightness(1);
    }
}

::-webkit-scrollbar-thumb:active {
    animation: scrollbarGlow 0.5s ease-in-out;
}

/* Smooth scrollbar track animations */
::-webkit-scrollbar-track:hover {
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(0, 40, 80, 0.85) 50%, 
        rgba(20, 0, 60, 0.95) 100%);
    box-shadow: inset 0 0 15px rgba(0, 255, 255, 0.2);
}

/* Mobile scrollbar enhancements */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .scroll-indicator {
        height: 3px;
    }
}

/* Ultra-responsive scrollbar for small screens */
@media (max-width: 480px) {
    ::-webkit-scrollbar {
        width: 10px;
    }
    
    .scroll-to-top-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ========================================
   🎯 ADVANCED CARD CONTAINERIZATION
   ======================================== */

/* Universal Card Container System */
.crypto-card-container {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.95), 
        rgba(0, 20, 40, 0.9), 
        rgba(10, 0, 30, 0.95));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px;
    margin: 25px auto;
    max-width: 1400px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(0, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 50px rgba(0, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.crypto-card-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.2) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 215, 0, 0.2) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.crypto-card-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #00ffff, #ff00ff, #ffff00, #00ff80, #8000ff, #ff0080, #00ffff);
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 4s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crypto-card-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 80px rgba(0, 255, 255, 0.15);
}

.crypto-card-container:hover::before {
    opacity: 1;
}

.crypto-card-container:hover::after {
    opacity: 1;
}

/* ========================================
   🌟 HOLOGRAPHIC EFFECT CARDS
   ======================================== */

.holo-card {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.9), 
        rgba(0, 30, 60, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.holo-card::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.5s ease;
}

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

.holo-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 15px 40px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
}

/* ========================================
   💎 FLOATING INTERACTIVE CARDS
   ======================================== */

.floating-card {
    background: radial-gradient(circle at center, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(0, 0, 0, 0.9) 70%);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    animation: floatCard 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-card:hover {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.3),
        0 0 100px rgba(255, 215, 0, 0.1);
}

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

/* ========================================
   ⚡ ENERGY PULSE CONTAINERS
   ======================================== */

.energy-container {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.2) 0%, 
        rgba(0, 0, 0, 0.9) 50%, 
        rgba(255, 20, 147, 0.2) 100%);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.energy-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        rgba(0, 255, 255, 0.1),
        rgba(255, 0, 255, 0.1),
        rgba(255, 255, 0, 0.1),
        rgba(0, 255, 255, 0.1)
    );
    z-index: -1;
}

.energy-container::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 23px;
    z-index: -1;
}

/* Energy rotate animation removed - no longer used */

/* ========================================
   🔥 SECTION-SPECIFIC ENHANCEMENTS
   ======================================== */

/* Hero Section - Matrix Style */
#hero {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 20, 40, 0.9) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 215, 0, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 215, 0, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
    animation: matrixMove 20s linear infinite;
}

@keyframes matrixMove {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px; }
}

/* Hero Metrics - Quantum Cards */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.metric {
    background: linear-gradient(145deg, 
        rgba(0, 255, 255, 0.1), 
        rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.metric::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.metric:hover::before {
    width: 200%;
    height: 200%;
}

.metric:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 255, 255, 0.3),
        0 0 60px rgba(255, 215, 0, 0.2);
}

/* ========================================
   🎮 INTERACTIVE FEATURE CARDS
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.9), 
        rgba(0, 30, 60, 0.8));
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transform-style: preserve-3d;
}

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

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

.feature-card:hover {
    transform: translateY(-12px) rotateX(10deg) rotateY(5deg);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 25px 60px rgba(0, 255, 255, 0.4),
        0 0 100px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

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

/* ========================================
   💰 TOKENOMICS HOLOGRAPHIC DISPLAY
   ======================================== */

.crypto-tokenomics {
    background: linear-gradient(135deg, 
        rgba(0, 50, 100, 0.2) 0%, 
        rgba(0, 0, 0, 0.95) 50%, 
        rgba(0, 100, 50, 0.2) 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.crypto-tokenomics::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #00ffff, #0080ff, #8000ff, #ff0080, #ff8000, #ffff00, #00ffff);
    background-size: 400% 400%;
    border-radius: 28px;
    z-index: -1;
    animation: rainbowBorder 6s ease infinite;
}

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

.tokenomics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.tokenomics-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tokenomics-item {
    background: linear-gradient(145deg, 
        rgba(0, 255, 255, 0.1), 
        rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tokenomics-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0.2), 
        rgba(255, 215, 0, 0.2));
    transition: width 0.4s ease;
}

.tokenomics-item:hover::before {
    width: 100%;
}

.tokenomics-item:hover {
    transform: translateX(10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

/* ========================================
   🛣️ ROADMAP TIMELINE ENHANCEMENT
   ======================================== */

.crypto-roadmap {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.95) 50%, 
        rgba(255, 140, 0, 0.1) 100%);
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.roadmap-timeline {
    position: relative;
    padding-left: 50px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(255, 215, 0, 0.8) 0%,
        rgba(0, 255, 255, 0.8) 50%,
        rgba(255, 215, 0, 0.8) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.roadmap-phase {
    background: linear-gradient(145deg, 
        rgba(255, 215, 0, 0.1), 
        rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.roadmap-phase::before {
    content: '';
    position: absolute;
    left: -75px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700, #ffA500);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    border: 3px solid rgba(0, 0, 0, 0.8);
}

.roadmap-phase:hover {
    transform: translateX(15px) scale(1.02);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(0, 255, 255, 0.2);
}

.roadmap-phase.completed::before {
    background: linear-gradient(45deg, #00ff00, #00ff80);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    animation: completedPulse 2s ease-in-out infinite;
}

.roadmap-phase.active::before {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    animation: activePulse 1.5s ease-in-out infinite;
}

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

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

/* ========================================
   🚀 GETTING STARTED STEP CARDS
   ======================================== */

.crypto-onboarding {
    background: linear-gradient(135deg, 
        rgba(0, 255, 128, 0.1) 0%, 
        rgba(0, 0, 0, 0.95) 50%, 
        rgba(128, 255, 0, 0.1) 100%);
    border: 3px solid rgba(0, 255, 128, 0.3);
    border-radius: 25px;
    padding: 40px;
}

.onboarding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.step {
    background: linear-gradient(145deg, 
        rgba(0, 255, 128, 0.1), 
        rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(0, 255, 128, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(0, 255, 128, 0.8), 
        rgba(128, 255, 0, 0.8));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(128, 255, 0, 0.6);
    box-shadow: 
        0 20px 50px rgba(0, 255, 128, 0.3),
        0 0 80px rgba(128, 255, 0, 0.2);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff80, #80ff00);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-size: 1.2em;
    color: #000;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.5);
    animation: stepPulse 3s ease-in-out infinite;
}

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

/* ========================================
   🌐 COMMUNITY ENGAGEMENT CARDS
   ======================================== */

.crypto-community {
    background: linear-gradient(135deg, 
        rgba(255, 0, 255, 0.1) 0%, 
        rgba(0, 0, 0, 0.95) 50%, 
        rgba(138, 43, 226, 0.1) 100%);
    border: 3px solid rgba(255, 0, 255, 0.3);
    border-radius: 25px;
    padding: 40px;
}

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

.stat {
    background: linear-gradient(145deg, 
        rgba(255, 0, 255, 0.1), 
        rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.2) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.stat:hover::before {
    width: 150%;
    height: 150%;
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 
        0 15px 40px rgba(255, 0, 255, 0.3),
        0 0 60px rgba(138, 43, 226, 0.2);
}

/* ========================================
   👤 SCOTT MCINTOSHI SECTION ENHANCEMENTS
   ======================================== */

/* Scott Command Center - Overall container */
.scott-command-center {
    margin-top: 70px !important;
}

/* Scott Showcase - Main floating card layout */
.scott-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
        "avatar info"
        "avatar contact";
    gap: 30px;
    align-items: start;
    padding: 35px;
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.95), 
        rgba(0, 30, 60, 0.9), 
        rgba(10, 0, 30, 0.95));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Scott Avatar Container */
.scott-avatar-container {
    grid-area: avatar;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.scott-gif-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    padding: 3px;
}

.scott-avatar {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9em;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    color: #00ff00;
    font-weight: bold;
    font-size: 0.8em;
}

/* Scott Info Section */
.scott-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
}

.scott-title {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.scott-subtitle {
    font-size: 1.1em;
    color: #188ccf;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

.scott-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.stat-item {
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1), 
        rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.stat-value {
    display: block;
    font-size: 1.3em;
    font-weight: bold;
    color: #00ffff;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.8em;
    color: #188ccf;
    opacity: 0.8;
}

/* Contact Mission Control Section */
.contact-mission-control {
    grid-area: contact;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.15), 
        rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 10px;
}

.mission-header {
    text-align: center;
    margin-bottom: 25px;
}

.mission-title {
    font-size: 1.3em;
    font-weight: bold;
    margin: 0 0 10px 0;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-desc {
    font-size: 0.95em;
    color: #188ccf;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
    justify-content: center;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
    border-color: rgba(255, 20, 147, 0.5);
}

.contact-button .btn-icon {
    font-size: 1.2em;
}

.contact-button .btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.contact-button .btn-main {
    font-size: 1em;
    font-weight: bold;
}

.contact-button .btn-sub {
    font-size: 0.8em;
    opacity: 0.9;
}

.contact-alternatives {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.alt-method {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8em;
    color: #188ccf;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.alt-method:hover {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.05);
}

.alt-icon {
    font-size: 1em;
}

/* Responsive adjustments for Scott section */
@media (max-width: 768px) {
    .scott-showcase {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "avatar"
            "info"
            "contact";
        gap: 25px;
        padding: 25px;
        text-align: center;
    }
    
    .scott-avatar-container {
        min-width: auto;
        align-self: center;
    }
    
    .scott-avatar {
        width: 150px;
        height: 150px;
    }
    
    .scott-info {
        padding-right: 0;
        text-align: center;
    }
    
    .scott-title {
        text-align: center;
        font-size: 1.7em;
    }
    
    .scott-stats {
        justify-content: center;
    }
    
    .contact-alternatives {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   🚀 LAUNCH ACTION SECTION SPACING FIXES
   ======================================== */

/* Launch Action Section - Specific spacing and layout */
.launch-action-section {
    margin: 50px auto 60px auto !important; /* Increased top and bottom margins */
    padding: 40px 30px 45px 30px !important; /* Extra bottom padding */
}

/* Launch Invitation Section */
.launch-invitation {
    margin-bottom: 35px; /* Space between invitation and button */
    text-align: center;
}

.launch-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

.launch-subtitle {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #188ccf;
    opacity: 0.9;
}

.launch-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.launch-badge {
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.2), 
        rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 8px 16px;
    font-size: 0.9em;
    color: #00ffff;
    transition: all 0.3s ease;
}

.launch-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Payment Button Container - Specific spacing */
.payment-button-container {
    text-align: center;
    padding-top: 25px; /* Extra space above button */
    margin-bottom: 20px; /* Space below button */
}

/* Scott Command Center - Ensure proper spacing after launch section */
.scott-command-center {
    margin-top: 70px !important; /* Extra space above Scott section */
}

/* Cosmic Text Animation */
@keyframes textShimmer {
    0%, 100% { 
        background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% { 
        background: linear-gradient(45deg, #ffff00, #00ffff, #ff00ff);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

/* Responsive spacing adjustments */
@media (max-width: 768px) {
    .launch-action-section {
        margin: 40px auto 50px auto !important;
        padding: 30px 20px 35px 20px !important;
    }
    
    .launch-features {
        gap: 10px;
    }
    
    .scott-command-center {
        margin-top: 50px !important;
    }
}

/* ========================================
   🎯 MISSING CSS CLASSES - PORTFOLIO & SLIDESHOW
   ======================================== */

/* Portfolio Header Section */
.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: matrixMove 15s linear infinite;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95), 
        rgba(0, 30, 60, 0.9), 
        rgba(0, 0, 0, 0.95));
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 30px;
    margin: 30px 0;
    overflow: hidden;
}

.slideshow-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #00ffff, #ff00ff, #ffff00, #00ff80, #8000ff, #ff0080, #00ffff);
    background-size: 400% 400%;
    border-radius: 28px;
    z-index: -1;
    animation: borderGlow 6s ease infinite;
}

/* Portfolio Indicators */
.portfolio-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1), 
        rgba(0, 0, 0, 0.7));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.indicator-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.indicator:hover {
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

.indicator.active {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.indicator.active .indicator-dot {
    background: rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.indicator-label {
    font-size: 0.8em;
    color: #188ccf;
    font-weight: bold;
    text-align: center;
}

.indicator.active .indicator-label {
    color: #ffd700;
}

/* Success Metrics Section */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(0, 255, 128, 0.1) 100%);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.success-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 0, 0.05) 10px,
        rgba(0, 255, 0, 0.05) 20px
    );
    animation: successScan 8s linear infinite;
}

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

.success-metric {
    background: linear-gradient(145deg, 
        rgba(0, 255, 0, 0.1), 
        rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.success-metric:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(0, 255, 128, 0.6);
    box-shadow: 
        0 15px 40px rgba(0, 255, 0, 0.3),
        0 0 60px rgba(0, 255, 128, 0.2);
}

.success-metric .metric-number {
    font-size: 2.5em;
    font-weight: bold;
    background: linear-gradient(45deg, #00ff00, #00ff80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.success-metric .metric-label {
    font-size: 1em;
    color: #188ccf;
    font-weight: bold;
}

/* Cosmic Button Zone */
.cosmic-button-zone {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.2) 0%, 
        rgba(0, 0, 0, 0.9) 50%, 
        rgba(255, 20, 147, 0.2) 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    overflow: hidden;
}

.cosmic-button-zone::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #8a2be2, #ff1493, #ff6347, #ffd700, #00ffff, #8a2be2);
    background-size: 300% 300%;
    border-radius: 28px;
    z-index: -1;
    animation: cosmicPulse 4s ease infinite;
}

@keyframes cosmicPulse {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(180deg);
    }
}

.cosmic-button-zone::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    border-radius: 50%;
    animation: cosmicRipple 3s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

@keyframes cosmicRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* ===== HEADER STYLES ===== */

header {
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.header-logo {
    max-width: 900px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 20px;
}

header h1 {
    margin: 10px 0 0 0;
    font-size: 1.5em;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive header logo */
@media (max-width: 968px) {
    .header-logo {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .header-logo {
        padding: 0 20px;
    }
    
    header h1 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .header-logo {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 1em;
        margin-top: 8px;
    }
    
    header {
        padding: 15px 0;
    }
}

/* ===== ENHANCED FOOTER STYLES ===== */

.enhanced-footer {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(13, 13, 32, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    border-top: 2px solid #00ffff;
    position: relative;
    padding: 40px 0 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00ffff 20%, 
        #ffd700 50%, 
        #ff00ff 80%, 
        transparent 100%);
    animation: borderFlow 3s ease-in-out infinite;
}

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

/* Footer Matrix Background */
.footer-matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    animation: matrixShift 8s ease-in-out infinite;
}

@keyframes matrixShift {
    0%, 100% { transform: translateX(0) scale(1); }
    33% { transform: translateX(-10px) scale(1.02); }
    66% { transform: translateX(10px) scale(0.98); }
}

/* Footer Particles */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-particles::before,
.footer-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 6px #00ffff;
    animation: floatParticle 6s ease-in-out infinite;
}

.footer-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.footer-particles::after {
    top: 60%;
    right: 15%;
    background: #ffd700;
    box-shadow: 0 0 6px #ffd700;
    animation-delay: 3s;
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0) scale(0.8);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Footer Glow Effects */
.footer-glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at 10% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Market Ticker */
.footer-market-ticker {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.footer-market-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: tickerScan 3s ease-in-out infinite;
}

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

.ticker-scroll {
    display: flex;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
}

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

.ticker-item {
    color: #ffffff;
    margin-right: 40px;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ticker-symbol {
    color: #ffd700;
    font-weight: 600;
}

.ticker-price {
    color: #00ff88;
}

.ticker-change.positive {
    color: #00ff88;
}

.ticker-change.negative {
    color: #ff4444;
}

/* Social Hub */
.footer-social-hub {
    margin-bottom: 30px;
}

.social-title {
    text-align: center;
    margin-bottom: 25px;
}

.social-title h3 {
    color: #00ffff;
    font-size: 1.3em;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.social-title h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.social-title p {
    color: #cccccc;
    font-size: 0.9em;
    margin-top: 10px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-items: center;
}

.social-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 200px;
    display: block;
}

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

.social-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

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

.social-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.social-icon-wrapper img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    filter: brightness(0.9) saturate(1.2);
}

.social-card:hover .social-icon-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.live-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: white;
    font-size: 0.7em;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
    }
}

.social-info {
    position: relative;
}

.social-info .platform {
    color: #ffffff;
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.social-info .followers {
    color: #00ffff;
    font-size: 0.8em;
    font-weight: 400;
}

/* Quick Actions */
.footer-quick-actions {
    margin-bottom: 30px;
}

.footer-quick-actions h3 {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-action-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-action-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.quick-action-item:hover::before {
    width: 100%;
    height: 100%;
}

.quick-action-item:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
}

.action-icon {
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.quick-action-item:hover .action-icon {
    transform: scale(1.1);
    text-shadow: 0 0 10px #ffd700;
}

.action-text {
    color: #ffffff;
    font-size: 0.9em;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Tech Grid */
.footer-tech-grid {
    margin-bottom: 30px;
}

.footer-tech-grid h3 {
    color: #ff00ff;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.tech-badge {
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tech-badge.premium {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.tech-badge.security {
    border-color: rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.05);
}

.tech-badge.community {
    border-color: rgba(255, 0, 255, 0.3);
    background: rgba(255, 0, 255, 0.05);
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 0, 255, 0.15);
}

.tech-badge.premium:hover {
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.15);
}

.tech-badge.security:hover {
    box-shadow: 0 6px 12px rgba(0, 255, 0, 0.15);
}

.tech-badge.community:hover {
    box-shadow: 0 6px 12px rgba(255, 0, 255, 0.15);
}

.badge-icon {
    font-size: 1.3em;
    margin-bottom: 6px;
    color: #ff00ff;
}

.tech-badge.premium .badge-icon {
    color: #ffd700;
}

.tech-badge.security .badge-icon {
    color: #00ff00;
}

.tech-badge.community .badge-icon {
    color: #ff00ff;
}

.badge-text {
    color: #ffffff;
    font-size: 0.85em;
    font-weight: 500;
}

/* Network Status */
.footer-network-status {
    margin-bottom: 30px;
    text-align: center;
}

.footer-network-status h3 {
    color: #00ff88;
    font-size: 1.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 25px;
    padding: 10px 20px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

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

.status-text {
    color: #00ff88;
    font-size: 0.9em;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    padding: 20px 0;
}

.copyright-main {
    margin-bottom: 15px;
}

.copyright-main p {
    color: #cccccc;
    font-size: 0.85em;
    margin: 5px 0;
    text-align: center;
}

.footer-disclaimer {
    margin-top: 10px;
}

.footer-disclaimer p {
    color: #888888;
    font-size: 0.75em;
    text-align: center;
    font-style: italic;
}

.bsa-link {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bsa-link:hover {
    color: #ffd700;
    text-shadow: 0 0 5px currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enhanced-footer {
        padding: 30px 0 15px;
    }
    
    .footer-market-ticker {
        margin-bottom: 20px;
    }
    
    .ticker-scroll {
        animation-duration: 15s;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .social-card {
        padding: 16px;
        max-width: 170px;
    }
    
    .social-icon-wrapper img {
        width: 28px;
        height: 28px;
    }
    
    .live-counter {
        font-size: 0.65em;
        padding: 1px 5px;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .tech-badges {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .tech-badge {
        padding: 10px;
    }
    
    .social-title h3,
    .footer-quick-actions h3,
    .footer-tech-grid h3 {
        font-size: 1.1em;
    }
    
    .footer-network-status h3 {
        font-size: 1em;
    }
    
    .status-container {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .enhanced-footer {
        padding: 20px 0 10px;
    }
    
    .footer-market-ticker {
        padding: 12px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .social-card {
        padding: 14px;
        max-width: none;
    }
    
    .social-icon-wrapper img {
        width: 24px;
        height: 24px;
    }
    
    .live-counter {
        font-size: 0.6em;
        padding: 1px 4px;
        top: -6px;
        right: -6px;
    }
    
    .social-info .platform {
        font-size: 0.85em;
    }
    
    .social-info .followers {
        font-size: 0.75em;
    }
    
    .quick-action-item {
        padding: 12px;
    }
    
    .action-icon {
        font-size: 1.3em;
    }
    
    .tech-badges {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .copyright-main p {
        font-size: 0.8em;
    }
    
    .footer-disclaimer p {
        font-size: 0.7em;
    }
}

/* Additional Animation Effects */
@keyframes cosmicGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    }
}

.enhanced-footer .social-card:hover,
.enhanced-footer .quick-action-item:hover,
.enhanced-footer .tech-badge:hover {
    animation: cosmicGlow 2s ease-in-out infinite;
}

/* Hover state enhancements */
.footer-market-ticker:hover {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.08);
}

/* Viewport containment and overflow prevention */
.splash-screen * {
    box-sizing: border-box;
}

/* Ensure body doesn't overflow during splash */
body.splash-active {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
}

/* Prevent horizontal scroll */
.splash-screen,
.splash-content,
.splash-overlay {
    max-width: 100vw;
    max-height: 100vh;
}
