/* ===================================
   CROT HQ - Cyberpunk Stylesheet
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap');

:root {
    --neon-green: #00ff41;
    --electric-blue: #00d4ff;
    --cyber-blue: #0af;
    --text-blue: #4dd0e1;
    --dark-bg: #000;
    --card-bg: #0a0a0a;
    --border-color: #00ff4150;
    --glow-green: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 30px #00ff41;
    --glow-blue: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
    
    /* Bling/Luxury Colors */
    --gold: #ffd700;
    --gold-light: #ffed4e;
    --gold-dark: #b8860b;
    --platinum: #e5e4e2;
    --chrome: #c0c0c0;
    --glow-gold: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700;
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #b8860b 100%);
    --gradient-platinum: linear-gradient(135deg, #e5e4e2 0%, #ffffff 50%, #c0c0c0 100%);
    --gradient-premium: linear-gradient(135deg, #ffd700 0%, #00ff41 50%, #00d4ff 100%);
}

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

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--dark-bg);
    color: var(--text-blue);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Premium Shimmer Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.05) 45%,
        rgba(255, 215, 0, 0.1) 50%,
        rgba(255, 215, 0, 0.05) 55%,
        transparent 100%);
    z-index: 9998;
    pointer-events: none;
    animation: shimmer-sweep 15s infinite;
}

@keyframes shimmer-sweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Cyberpunk Background Effects */
.matrix-rain-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 65, 0.03) 0px,
        rgba(0, 255, 65, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 9999;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

/* ===================================
   NES ICON STYLES
   =================================== */

/* NES Icon Base Class */
.nes-icon {
    width: 64px;
    height: 64px;
    display: inline-block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    transition: all 0.3s ease;
}

/* Glow Effect */
.nes-icon {
    filter: drop-shadow(0 0 8px var(--icon-glow-color));
}

/* Hover Animation */
.nes-icon:hover {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 0 16px var(--icon-glow-color));
}

/* Color Variants */
.nes-icon.green {
    --icon-glow-color: #00ff41;
}

.nes-icon.blue {
    --icon-glow-color: #00d4ff;
}

.nes-icon.gold {
    --icon-glow-color: #ffd700;
}

/* Pulse Animation */
@keyframes pulse {
    0%,
    100% {
        filter: drop-shadow(0 0 8px var(--icon-glow-color));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 16px var(--icon-glow-color));
        transform: scale(1.05);
    }
}

.nes-icon.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Flicker Animation (for lightning/electricity) */
@keyframes flicker {
    0%,
    100% {
        opacity: 1;
    }

    45%,
    55% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.nes-icon.flicker {
    animation: flicker 3s linear infinite;
}

/* Spin Animation (for loading/processing) */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nes-icon.spin {
    animation: spin 2s linear infinite;
}

/* Responsive Sizes */
@media (max-width: 768px) {
    .nes-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .nes-icon {
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   END NES ICON STYLES
   =================================== */

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* ===================================
   FLOATING ACTION BUTTONS (FABs)
   =================================== */

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    pointer-events: auto;
}

.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 10px rgba(0, 255, 65, 0.1);
    position: relative;
    overflow: visible;
    display: none;
    flex-direction: column;
}

.fab.fab-support {
    border-color: var(--neon-green);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4), inset 0 0 10px rgba(0, 255, 65, 0.15);
}

.fab.fab-beta {
    border-color: var(--electric-blue);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 255, 65, 0.1) 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), inset 0 0 10px rgba(0, 212, 255, 0.15);
}

.fab-icon {
    font-size: 1.8rem;
    display: block;
}

.fab-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    white-space: nowrap;
    display: none;
    background: rgba(0, 0, 0, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid currentColor;
    box-shadow: 0 0 20px currentColor;
    z-index: 10;
}

/* Show labels on hover */
.fab:hover .fab-label {
    display: block;
}

/* Hover effects */
.fab:hover {
    transform: scale(1.15) translateY(-5px);
}

.fab.fab-support:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.7), inset 0 0 20px rgba(0, 255, 65, 0.3);
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.fab.fab-beta:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 255, 65, 0.2) 100%);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.7), inset 0 0 20px rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Active state when scrolled past header */
.fab.visible {
    display: flex;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .fab {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .fab-icon {
        font-size: 1.5rem;
    }
    
    .fab-label {
        font-size: 0.7rem;
        right: 65px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .fab-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .fab-icon {
        font-size: 1.3rem;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* ===================================
   SUBWAY NAVIGATION SYSTEM
   =================================== */

.subway-nav {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
    padding: 30px 20px;
    margin: 0 -20px 60px -20px;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 255, 65, 0.3);
    transition: display 0.3s ease;
}

.subway-line {
    position: absolute;
    top: calc(50% - 14.5px); /* Fine-tune alignment to exact node center */
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--neon-green) 10%,
        var(--electric-blue) 50%,
        var(--neon-green) 90%,
        transparent 100%);
    box-shadow: 0 0 10px var(--neon-green);
    z-index: 1;
}

.subway-stations {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Changed to center for proper vertical alignment */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.station {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.station-node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.95); /* Solid background so line doesn't show through */
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.station-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-green);
    transform: translate(-50%, -50%);
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
}

.station:hover .station-node {
    transform: scale(1.3);
    box-shadow: 0 0 25px var(--neon-green), 0 0 40px var(--neon-green);
}

.station:hover .station-node::before {
    opacity: 1;
}

.station.active .station-node {
    background: var(--gold); /* Solid filled circle */
    border-color: var(--gold);
    box-shadow: var(--glow-gold), 0 0 25px var(--gold);
    animation: pulse-node 2s infinite;
}

.station.active .station-node::before {
    opacity: 0; /* Hide inner dot since whole circle is filled */
    background: var(--gold);
    animation: pulse-inner 2s infinite;
}

@keyframes pulse-node {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--glow-gold), 0 0 25px var(--gold);
    }
    50% {
        transform: scale(1.2);
        box-shadow: var(--glow-gold), 0 0 35px var(--gold), 0 0 50px var(--gold);
    }
}

@keyframes pulse-inner {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.station-label {
    margin-top: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-blue);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.station:hover .station-label {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    transform: translateY(-3px);
}

.station.active .station-label {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
    font-size: 0.85rem;
}

/* Responsive subway nav */
@media (max-width: 1200px) {
    .station-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 968px) {
    .subway-nav {
        padding: 20px 10px;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .subway-stations {
        min-width: 800px;
        padding: 0 20px;
    }
    
    .station-node {
        width: 16px;
        height: 16px;
    }
    
    .station-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 600px) {
    .subway-nav {
        margin: 0 -10px 40px -10px;
    }
    
    .subway-stations {
        min-width: 700px;
    }
    
    .station-node {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }
    
    .station-label {
        font-size: 0.55rem;
        margin-top: 10px;
    }
}

/* Header/Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    border-bottom: 3px solid;
    border-image: var(--gradient-premium) 1;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3), 0 2px 30px rgba(0, 255, 65, 0.2);
    margin-bottom: 40px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.03) 0%, rgba(0, 255, 65, 0.05) 50%, transparent 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--neon-green) 50%, var(--gold) 80%, transparent);
    box-shadow: 0 0 10px var(--gold);
}

.glitch-wrapper {
    display: inline-block;
    position: relative;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
    position: relative;
    animation: flicker 3s infinite, gradient-shift 6s ease infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes gradient-shift {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)) hue-rotate(0deg); }
    50% { filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.7)) hue-rotate(90deg); }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: var(--glow-green);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

.tagline {
    font-size: 1.2rem;
    background: linear-gradient(90deg, var(--electric-blue), var(--gold-light), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    animation: subtle-glow 4s ease-in-out infinite;
}

/* CROT Slogan - Featured Prominently */
.crot-slogan {
    margin: 40px 0 30px;
    text-align: center;
}

.slogan-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green),
        0 0 60px var(--neon-green),
        0 0 80px var(--electric-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: feature-glow 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite, feature-glow 3s ease-in-out infinite;
}

@keyframes feature-glow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 30px var(--neon-green));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 50px var(--electric-blue));
    }
}

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

.status-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--neon-green);
}

.status-indicator {
    animation: pulse-indicator 2s infinite;
    color: var(--gold-light);
    font-weight: 700;
    text-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
}

@keyframes pulse-indicator {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.neon-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 10px rgba(0, 255, 65, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 15px rgba(0, 255, 65, 0.5)); }
}

.circuit-line {
    height: 2px;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 10%,
        var(--neon-green) 30%, 
        var(--electric-blue) 50%,
        var(--neon-green) 70%,
        var(--gold) 90%,
        transparent 100%);
    box-shadow: var(--glow-gold), var(--glow-green);
    animation: circuit-pulse 3s ease-in-out infinite;
}

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

/* Open Source Announcement Banner */
.open-source-banner {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15), rgba(0, 212, 255, 0.15));
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.1);
    animation: oss-glow 3s ease-in-out infinite;
}

@keyframes oss-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 65, 0.5), inset 0 0 30px rgba(0, 255, 65, 0.2);
    }
}

.oss-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-green);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green);
    animation: title-pulse 2s ease-in-out infinite;
}

@keyframes title-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.oss-statement {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 15px 0;
    text-shadow: 0 0 15px var(--gold);
}

.oss-license {
    font-size: 1rem;
    color: var(--electric-blue);
    opacity: 0.9;
}

/* Beta Program Section - PROMINENT */
.beta-program {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(0, 255, 65, 0.1) 50%, rgba(0, 212, 255, 0.1) 100%);
    border: 3px solid;
    border-image: var(--gradient-premium) 1;
    border-radius: 10px;
    box-shadow: var(--glow-gold), var(--glow-green), inset 0 0 50px rgba(255, 215, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.beta-program::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--neon-green), var(--electric-blue), var(--gold));
    border-radius: 10px;
    z-index: -1;
    opacity: 0.3;
    animation: border-flow 3s linear infinite;
}

.beta-program::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-radial 4s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes border-flow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.beta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.beta-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.beta-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.bullet {
    color: var(--neon-green);
    font-size: 1.2rem;
}

.cta-button {
    background: var(--gradient-premium);
    color: #000;
    border: 2px solid var(--gold);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    margin-top: 30px;
    letter-spacing: 0.1em;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--glow-gold), 0 5px 30px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold), 0 5px 60px rgba(255, 215, 0, 0.8), 0 10px 80px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-light);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 5px 30px rgba(0, 255, 65, 0.4);
    }
    50% {
        box-shadow: 0 5px 50px rgba(0, 255, 65, 0.8);
    }
}

.hologram-frame {
    background: rgba(0, 20, 20, 0.8);
    border: 2px solid var(--electric-blue);
    border-radius: 10px;
    padding: 30px;
    box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.2);
    position: relative;
}

.hologram-frame::before,
.hologram-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-green);
}

.hologram-frame::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.hologram-frame::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.code-text {
    font-family: 'Share Tech Mono', monospace;
    color: var(--electric-blue);
    margin: 12px 0;
    font-size: 0.95rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* ===================================
   CHARACTER DASHBOARDS SECTION
   =================================== */

.characters-section {
    padding: 60px 20px;
    margin-bottom: 40px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-blue);
    margin: 20px 0 40px 0;
    opacity: 0.9;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    perspective: 1000px;
}

/* Flip Card Container */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 500px;
    perspective: 1000px;
    cursor: pointer;
}

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

.flip-card:hover .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: 15px;
    overflow: hidden;
}

.flip-card-front {
    background: #000;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flip-card-front img.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.flip-card-back {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
    border: 2px solid var(--gold);
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(0, 255, 65, 0.2);
}

/* Legacy character-card styles for the back of cards */
.character-card {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.character-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent 30%);
    animation: rotate-shine 6s linear infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.character-card:hover::after {
    opacity: 1;
}

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

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

.character-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold), 0 0 30px rgba(255, 215, 0, 0.4), 0 5px 40px rgba(0, 255, 65, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.character-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 10px rgba(0, 255, 65, 0.2));
}

.character-card h3,
.flip-card-back h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--neon-green);
}

.character-role {
    color: var(--electric-blue);
    font-size: 1rem;
    margin-bottom: 15px;
    font-style: italic;
}

.character-desc {
    color: var(--text-blue);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.character-abilities {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.ability {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--neon-green);
}

/* Launchpad Preview on Character Cards */
.launchpad-preview {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.launchpad-preview h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.launchpad-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.launchpad-categories .category {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.7rem;
    color: var(--gold);
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.launchpad-categories .category:hover {
    background: rgba(255, 215, 0, 0.25);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ===================================
   TERMINAL SHOWCASE SECTION
   =================================== */

.terminal-showcase {
    padding: 60px 20px;
    margin-bottom: 40px;
}

.terminal-demo {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    box-shadow: var(--glow-green), 0 20px 60px rgba(0, 255, 65, 0.2);
    overflow: hidden;
    font-family: 'Share Tech Mono', monospace;
}

.terminal-header {
    background: rgba(0, 255, 65, 0.1);
    border-bottom: 1px solid var(--neon-green);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    color: var(--neon-green);
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-green);
}

.terminal-controls {
    color: var(--neon-green);
    font-size: 1rem;
    letter-spacing: 8px;
}

.terminal-body {
    padding: 20px;
    min-height: 300px;
}

.terminal-line {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.prompt {
    color: var(--electric-blue);
    font-weight: 700;
    text-shadow: 0 0 5px var(--electric-blue);
}

.command {
    color: var(--gold-light);
    font-weight: 600;
}

.terminal-line.output {
    padding-left: 20px;
}

.matrix-text {
    color: var(--neon-green);
    animation: flicker-text 2s infinite;
}

.success-text {
    color: var(--neon-green);
}

.info-text {
    color: var(--text-blue);
}

.cursor-blink {
    color: var(--neon-green);
    animation: blink 1s infinite;
}

@keyframes flicker-text {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.7; }
}

/* ===================================
   SCREENSHOTS GALLERY SECTION
   =================================== */

.screenshots-section {
    padding: 60px 20px;
    margin-bottom: 40px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.screenshot-item {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.screenshot-item:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold), var(--glow-green), 0 10px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.preview-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    display: block;
}

.screenshot-caption {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1rem;
    margin-top: 15px;
    text-align: center;
    text-transform: uppercase;
}

.screenshot-card {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.screenshot-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold), var(--glow-green), 0 10px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.screenshot-frame {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    margin-bottom: 15px;
    background: #000;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.screenshot-card p {
    color: var(--text-blue);
    font-size: 0.9rem;
}

/* ===================================
   OFFLINE HACKING SECTION
   =================================== */

.offline-section {
    margin: 60px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    box-shadow: var(--glow-green), inset 0 0 50px rgba(0, 255, 65, 0.05);
    position: relative;
    overflow: hidden;
}

.offline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.offline-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: var(--glow-green);
}

.offline-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-blue);
}

.feature-highlight {
    background: rgba(0, 255, 65, 0.05);
    border-left: 4px solid var(--neon-green);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.feature-highlight h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    padding: 15px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.steps-list li:last-child {
    border-bottom: none;
}

.step-number {
    background: var(--gradient-premium);
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--glow-gold);
}

.offline-benefits {
    margin-top: 30px;
}

.offline-benefits h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--electric-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--electric-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

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

.code-block {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--glow-green), 0 20px 60px rgba(0, 255, 65, 0.2);
    font-family: 'Share Tech Mono', monospace;
}

.code-header {
    background: rgba(0, 255, 65, 0.1);
    border-bottom: 1px solid var(--neon-green);
    padding: 12px 20px;
    color: var(--neon-green);
    font-size: 0.9rem;
    font-weight: 700;
}

.code-content {
    padding: 20px;
}

.code-line {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line .prompt {
    color: var(--electric-blue);
    font-weight: 700;
}

.code-line .cmd {
    color: var(--gold-light);
}

.code-line.output {
    color: var(--text-blue);
    padding-left: 10px;
}

.code-line .success {
    color: var(--neon-green);
    font-weight: 700;
}

/* Responsive for offline section */
@media (max-width: 968px) {
    .offline-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ===================================
   CYBERPUNK THEMES SECTION
   =================================== */

.themes-section {
    padding: 60px 20px;
    margin-bottom: 40px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.theme-card {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
}

.matrix-theme:hover {
    border-color: var(--neon-green);
    box-shadow: var(--glow-green), 0 10px 30px rgba(0, 255, 65, 0.4);
}

.cyber-theme:hover {
    border-color: #ff1493;
    box-shadow: 0 0 20px #ff1493, 0 10px 30px rgba(255, 20, 147, 0.4);
}

.ocean-theme:hover {
    border-color: var(--electric-blue);
    box-shadow: var(--glow-blue), 0 10px 30px rgba(0, 212, 255, 0.4);
}

.stealth-theme:hover {
    border-color: #808080;
    box-shadow: 0 0 20px #808080, 0 10px 30px rgba(128, 128, 128, 0.4);
}

.theme-preview {
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.theme-sample {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
}

.theme-sample::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: theme-shimmer 3s infinite;
}

@keyframes theme-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.matrix-sample {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 255, 65, 0.2));
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
}

.cyber-sample {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 0, 0, 0.2));
    color: #ff1493;
    text-shadow: 0 0 10px #ff1493, 0 0 20px #ff1493;
}

.ocean-sample {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 128, 255, 0.2));
    color: var(--electric-blue);
    text-shadow: 0 0 10px var(--electric-blue), 0 0 20px var(--electric-blue);
}

.stealth-sample {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1), rgba(192, 192, 192, 0.2));
    color: #c0c0c0;
    text-shadow: 0 0 10px #c0c0c0, 0 0 20px #c0c0c0;
}

.sample-text {
    animation: pulse-text 2s ease-in-out infinite;
}

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

.theme-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.theme-card p {
    color: var(--text-blue);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features-section {
    padding: 40px 20px;
    margin-bottom: 40px;
}

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

.feature-item {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold), 0 0 20px rgba(255, 215, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

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

.feature-item h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-blue);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Links Section */
.links-section {
    margin: 60px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.link-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.link-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--neon-green);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px var(--neon-green)) drop-shadow(0 0 5px var(--gold));
    transition: filter 0.3s ease;
}

.link-card:hover .card-icon svg {
    filter: drop-shadow(0 0 15px var(--gold)) drop-shadow(0 0 20px var(--neon-green)) drop-shadow(0 0 25px var(--electric-blue));
}

.link-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-green);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.link-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.link-status {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 65, 0.2);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--neon-green);
    text-transform: uppercase;
}

/* Tutorials Section */
.tutorials-section {
    margin: 60px 0;
}

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

.tutorial-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold), var(--glow-blue), 0 10px 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-8px) scale(1.02);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 65, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 2px solid var(--border-color);
}

.play-icon {
    font-size: 4rem;
    color: var(--electric-blue);
    text-shadow: var(--glow-blue);
    margin-bottom: 15px;
}

.video-placeholder p {
    color: var(--electric-blue);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.tutorial-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    padding: 20px;
    font-size: 1.2rem;
}

.coming-soon {
    padding: 0 20px 20px;
    color: var(--text-blue);
    font-style: italic;
    opacity: 0.7;
}

/* Footer */
.footer {
    margin-top: 80px;
    padding: 40px 20px;
    border-top: 3px solid;
    border-image: var(--gradient-premium) 1;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.03) 100%);
    box-shadow: 0 -2px 20px rgba(255, 215, 0, 0.2);
}

.terminal-line {
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-green);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.prompt {
    color: var(--electric-blue);
}

.cursor {
    animation: blink 1s infinite;
}

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

.footer p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===================================
   IMAGE STYLING
   =================================== */

/* Hero Banner */
.hero-banner {
    margin-bottom: 30px;
    position: relative;
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid;
    border-image: var(--gradient-premium) 1;
    box-shadow: var(--glow-gold), var(--glow-green), 0 10px 40px rgba(255, 215, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

/* Featured Motorcycle Image */
.featured-visual {
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.motorcycle-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    border: 3px solid var(--electric-blue);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2);
    animation: motorcycle-glow 4s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.motorcycle-image:hover {
    transform: scale(1.03);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.8),
        0 0 60px rgba(0, 212, 255, 0.6),
        0 0 90px rgba(0, 212, 255, 0.4);
}

@keyframes motorcycle-glow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(0, 212, 255, 0.4),
            0 0 60px rgba(0, 212, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(0, 255, 65, 0.6),
            0 0 60px rgba(0, 255, 65, 0.4),
            0 0 90px rgba(0, 255, 65, 0.2);
    }
}

/* Beta Card Image */
.beta-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--electric-blue);
    box-shadow: var(--glow-blue);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.beta-card-image:hover {
    transform: scale(1.05);
}

/* Decorative Images in Links Section */
.section-visuals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.decorative-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--cyber-blue);
    opacity: 0.7;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.decorative-image:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.left-visual {
    animation: pulse-glow 3s ease-in-out infinite;
}

.right-visual {
    animation: pulse-glow 3s ease-in-out infinite 1.5s;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.8); }
}

/* ===================================
   PREMIUM BADGES & VIP ELEMENTS
   =================================== */

.premium-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--gradient-gold);
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 20px;
    box-shadow: var(--glow-gold), inset 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite, shimmer-badge 2s infinite;
}

@keyframes shimmer-badge {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.vip-corner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: #000;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: var(--glow-gold), 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 10;
    animation: float 2s ease-in-out infinite;
    transform-origin: center;
}

.elite-badge {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--platinum) 100%);
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.4);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), inset 0 2px 15px rgba(255, 255, 255, 0.6);
        transform: scale(1.05);
    }
}

.premium-feature {
    background: linear-gradient(90deg, var(--gold-light), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.rarity-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 15px;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.rarity-badge.gold {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--glow-gold), 0 2px 15px rgba(255, 215, 0, 0.6);
    animation: float 2s ease-in-out infinite;
}

.rarity-badge.platinum {
    background: var(--gradient-platinum);
    color: #000;
    box-shadow: 0 0 15px rgba(229, 228, 226, 0.6), 0 2px 15px rgba(192, 192, 192, 0.4);
    animation: float 2s ease-in-out infinite 0.5s;
}

.rarity-badge.premium {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
    color: #000;
    box-shadow: var(--glow-blue), 0 2px 15px rgba(0, 212, 255, 0.5);
    animation: float 2s ease-in-out infinite 1s;
}

/* Coming Soon Badge for Locked Characters */
.coming-soon-badge {
    position: absolute;
    top: 50px;
    right: 10px;
    padding: 6px 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 50%, #ff6f00 100%);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.6), 0 2px 15px rgba(255, 152, 0, 0.4);
    z-index: 5;
    animation: pulse-lock 2s ease-in-out infinite;
}

@keyframes pulse-lock {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 152, 0, 0.6), 0 2px 15px rgba(255, 152, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0  0 20px rgba(255, 152, 0, 0.8), 0 2px 25px rgba(255, 152, 0, 0.6);
    }
}

/* Beta Link Styling */
.beta-link {
    display: inline-block;
    margin-left: 5px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.beta-link:hover {
    color: var(--gold-light);
    text-shadow: var(--glow-gold);
    transform: scale(1.05);
}

.premium-footer-badge {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 25px;
    background: var(--gradient-premium);
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 25px;
    box-shadow: var(--glow-gold), 0 5px 25px rgba(255, 215, 0, 0.4);
    animation: shimmer-badge 2s infinite;
}

/* Enhanced sparkle particles effect */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.beta-program .hologram-frame::before {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 3s infinite, float 2s ease-in-out infinite;
}

/* ===================================
   ENHANCED LINK CARDS WITH BLING
   =================================== */
.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1) rotate(-3deg);
}

.footer-visual {
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-visual:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .beta-content {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .tutorials-grid {
        grid-template-columns: 1fr;
    }
    
    .characters-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .flip-card {
        height: 450px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .section-visuals {
        justify-content: center;
    }
    
    .decorative-image {
        max-width: 150px;
    }
    
    .footer-brand {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 10px;
    }
    
    .motorcycle-image {
        max-width: 95%;
        border-width: 2px;
    }
    
    .beta-program {
        padding: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .status-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flip-card {
        height: 400px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .flip-card-back {
        padding: 20px;
    }
    
    .character-icon {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .character-icon {
        font-size: 3rem;
    }
    
    .decorative-image {
        max-width: 120px;
    }
    
    .footer-logo, .footer-visual {
        max-width: 120px;
    }
}

/* Legal Disclaimer Section */
.legal-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-top: 2px solid var(--neon-green);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 3px solid var(--gold);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 0, 0, 0.1);
}

.disclaimer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--gold);
    animation: warning-pulse 2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { 
        color: var(--gold);
        text-shadow: 0 0 20px var(--gold);
    }
    50% { 
        color: #ff4400;
        text-shadow: 0 0 30px #ff4400, 0 0 40px #ff4400;
    }
}

.disclaimer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.disclaimer-text p {
    margin-bottom: 20px;
}

.disclaimer-text strong {
    color: var(--gold);
    font-weight: 700;
}

.warning-text {
    color: #ff4400;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 5px;
    border: 2px solid #ff4400;
    text-shadow: 0 0 10px #ff4400;
}

.disclaimer-text h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1.3rem;
    margin: 30px 0 15px;
    text-transform: uppercase;
}

.legal-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 255, 65, 0.3);
}

.legal-details h4 {
    color: var(--electric-blue);
    font-size: 1.1rem;
    margin-top: 25px;
}

.legal-details p {
    font-size: 0.95rem;
    opacity: 0.85;
}
/* ===================================
   BETA SIGNUP MODAL STYLES
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 20px 20px;
    overflow-y: scroll;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 60px 40px 40px 40px;
    max-width: 700px;
    width: 90%;
    position: relative;
    margin: 0 auto;
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.3),
        0 0 60px rgba(0, 255, 65, 0.2),
        inset 0 0 30px rgba(0, 255, 65, 0.05);
    animation: slideUp 0.4s ease;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    font-weight: bold;
    color: var(--neon-green);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 20px var(--electric-blue);
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-green);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: var(--glow-green);
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--electric-blue);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group small {
    display: block;
    color: var(--text-blue);
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.7;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 20, 40, 0.5);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    color: var(--neon-green);
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    background: rgba(0, 30, 50, 0.7);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: var(--text-blue);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
    background: rgba(0, 255, 65, 0.05);
}

.checkbox-label:hover {
    background: rgba(0, 255, 65, 0.15);
    color: var(--neon-green);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--neon-green);
}

.form-status {
    display: none;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: bold;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status.success {
    background: rgba(0, 255, 65, 0.2);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
}

.form-status.error {
    background: rgba(255, 0, 65, 0.2);
    border: 2px solid #ff0041;
    color: #ff0041;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.4) 0%, rgba(0, 212, 255, 0.4) 100%);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-button .button-glow {
    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;
}

.submit-button:hover:not(:disabled) .button-glow {
    left: 100%;
}

/* Modal Scrollbar Styling */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--electric-blue);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 700px) {
    .modal-content {
        max-height: 95vh;
        padding: 40px 30px 30px 30px;
    }
}

@media (max-height: 600px) {
    .modal-content {
        max-height: 98vh;
        padding: 35px 25px 25px 25px;
    }
}
/* ===================================
   CONFIRMATION DIALOG STYLES
   =================================== */

.confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    animation: fadeIn 0.3s ease;
    transition: opacity 0.3s ease;
}

.confirmation-dialog {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border: 3px solid var(--neon-green);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 
        0 0 40px rgba(0, 255, 65, 0.5),
        0 0 80px rgba(0, 255, 65, 0.3),
        inset 0 0 40px rgba(0, 255, 65, 0.1);
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.confirmation-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease;
}

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

.confirmation-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    margin-bottom: 30px;
    letter-spacing: 3px;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green), 0 0 30px var(--neon-green);
    }
    to {
        text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green), 0 0 40px var(--neon-green), 0 0 50px var(--neon-green);
    }
}

.confirmation-details {
    margin: 30px 0;
    text-align: left;
}

.confirmation-message {
    font-size: 1.3rem;
    color: var(--electric-blue);
    text-align: center;
    margin-bottom: 20px;
}

.confirmation-message strong {
    color: var(--neon-green);
    font-size: 1.4rem;
}

.confirmation-email {
    text-align: center;
    color: var(--text-blue);
    font-size: 1rem;
    margin-bottom: 30px;
}

.email-highlight {
    color: var(--neon-green);
    font-weight: bold;
    text-decoration: underline;
}

.confirmation-next-steps {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.confirmation-next-steps h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--electric-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.confirmation-next-steps ul {
    list-style: none;
    padding: 0;
}

.confirmation-next-steps li {
    color: var(--text-blue);
    font-size: 1rem;
    margin: 10px 0;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.confirmation-next-steps li:hover {
    color: var(--neon-green);
    transform: translateX(5px);
}

.discord-invite-section {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.discord-invite-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #5865f2 0%, #404eed 100%);
    border: 2px solid #5865f2;
    border-radius: 10px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.discord-invite-button:hover {
    background: linear-gradient(135deg, #404eed 0%, #5865f2 100%);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.8);
    transform: translateY(-3px);
}

.confirmation-close {
    margin-top: 30px;
    padding: 15px 50px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirmation-close:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.5) 0%, rgba(0, 212, 255, 0.5) 100%);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    transform: translateY(-3px);
}

/* ===================================
   SUPPORT SECTION - Payment Systems
   =================================== */

.support-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-top: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--electric-blue);
}

.support-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-blue);
    margin: 20px 0 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-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;
    pointer-events: none;
}

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

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

.github-sponsor {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 10px rgba(0, 255, 65, 0.1);
}

.github-sponsor:hover {
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.6), inset 0 0 20px rgba(0, 255, 65, 0.2);
}

.kofi-sponsor {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.kofi-sponsor:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6), inset 0 0 20px rgba(0, 212, 255, 0.2);
}

.patreon-sponsor {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), inset 0 0 10px rgba(255, 215, 0, 0.1);
}

.patreon-sponsor:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.github-sponsor h3 {
    color: #00ff41;
}

.kofi-sponsor h3 {
    color: #00d4ff;
}

.patreon-sponsor h3 {
    color: #ffd700;
}

.badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    padding: 5px 10px;
    border: 1px solid currentColor;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.github-sponsor .badge {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.2);
}

.kofi-sponsor .badge {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.2);
}

.patreon-sponsor .badge {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
}

.card-content {
    padding: 20px 0;
}

.card-content .description {
    color: var(--text-blue);
    margin-bottom: 20px;
    font-size: 1rem;
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li {
    color: var(--text-blue);
    margin: 10px 0;
    padding-left: 0;
    font-size: 0.95rem;
}

.github-sponsor .features li {
    color: rgba(0, 255, 65, 0.8);
}

.kofi-sponsor .features li {
    color: rgba(0, 212, 255, 0.8);
}

.patreon-sponsor .features li {
    color: rgba(255, 215, 0, 0.8);
}

.pricing {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 0;
    margin: 20px 0;
    text-align: center;
}

.pricing .tier {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing .amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.github-sponsor .pricing .amount {
    color: #00ff41;
}

.kofi-sponsor .pricing .amount {
    color: #00d4ff;
}

.patreon-sponsor .pricing .amount {
    color: #ffd700;
}

.pricing .period {
    font-size: 0.85rem;
    color: var(--text-blue);
}

.sponsor-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.github-btn {
    color: #00ff41;
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

.github-btn:hover {
    background: rgba(0, 255, 65, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.kofi-btn {
    color: #00d4ff;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.kofi-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.patreon-btn {
    color: #ffd700;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.patreon-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.support-info {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid var(--neon-green);
    border-radius: 0;
}

.support-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--neon-green);
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
}

.support-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.breakdown-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 20px;
    text-align: center;
    border-radius: 0;
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: rgba(0, 255, 65, 0.6);
}

.breakdown-item .percentage {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.breakdown-item .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-blue);
}

.pro-tier-teaser {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 0;
}

.pro-tier-teaser h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.pro-tier-teaser > p {
    text-align: center;
    color: var(--text-blue);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.pro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pro-feature {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 20px;
    text-align: center;
    border-radius: 0;
    transition: all 0.3s ease;
}

.pro-feature:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.pro-feature .icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.pro-feature h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pro-feature p {
    font-size: 0.9rem;
    color: var(--text-blue);
    line-height: 1.4;
}

.pro-pricing {
    text-align: center;
    color: var(--text-blue);
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: 20px;
}

.pro-pricing strong {
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
}
/* ===================================
   NES Icon Styling - Phase 2.5
   =================================== */

.icon-img {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    filter: drop-shadow(0 0 8px var(--neon-green));
    transition: all 0.3s ease;
}

.feature-icon .icon-img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 15px var(--neon-green));
}

.feature-icon .icon-img:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 25px var(--neon-green)) drop-shadow(0 0 40px var(--electric-blue));
}

.benefit-icon .icon-img,
.character-icon .icon-img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 12px currentColor);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.ability .icon-img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    filter: drop-shadow(0 0 5px currentColor);
}

.fab-icon .icon-img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 10px currentColor);
}

.fab:hover .fab-icon .icon-img {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 20px currentColor) drop-shadow(0 0 30px currentColor);
}

/* Section Title Icons */
.neon-title .icon-img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 15px var(--neon-green));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 15px var(--neon-green));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 25px var(--neon-green)) drop-shadow(0 0 35px var(--electric-blue));
        transform: scale(1.05);
    }
}

/* Modal Icons */
.modal-title .icon-img {
    width: 28px;
    height: 28px;
    animation: iconSpin 4s linear infinite;
}

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

/* Card Icons */
.card-icon .icon-img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px currentColor);
}

/* Pro Feature Icons */
.pro-feature .icon .icon-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 12px var(--gold));
}

.pro-feature:hover .icon .icon-img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px var(--gold)) drop-shadow(0 0 30px var(--neon-green));
}

/* Icon Glow Animation */
@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 20px currentColor) drop-shadow(0 0 30px currentColor);
    }
}

/* Responsive Icon Sizes */
@media (max-width: 768px) {
    .feature-icon .icon-img {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon .icon-img,
    .character-icon .icon-img {
        width: 36px;
        height: 36px;
    }
    
    .neon-title .icon-img {
        width: 28px;
        height: 28px;
    }
}

/* ==================== MUSIC PLAYER SECTION ==================== */
.music-section {
    padding: 4em 2em;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 20, 10, 0.9) 100%);
    position: relative;
}

.music-player-container {
    max-width: 900px;
    margin: 3em auto;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 30, 15, 0.9));
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    padding: 2em;
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.2);
}

/* Album Artwork */
.player-artwork {
    text-align: center;
    margin-bottom: 2em;
}

.artwork-display {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5em;
}

.vinyl-record {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #1a1a1a 0%, #000 60%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    animation: spin 3s linear infinite paused;
}

.vinyl-record.playing {
    animation-play-state: running;
}

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

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #0f0 20%, #0a0 40%, #050 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.vinyl-groove {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid rgba(0, 255, 65, 0.1);
    border-radius: 50%;
}

.now-playing-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5em;
    color: var(--neon-green);
    margin: 0 0 0.3em 0;
    text-shadow: 0 0 10px var(--neon-green);
}

.now-playing-info p {
    color: #888;
    margin: 0;
}

/* Player Controls */
.player-controls {
    margin-bottom: 2em;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.5em;
}

.time-display {
    font-family: 'Courier New', monospace;
    color: var(--neon-green);
    font-size: 0.9em;
    min-width: 45px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--neon-green);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--neon-green);
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    opacity: 0;
    transition: opacity 0.2s;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

/* Control Buttons */
.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin-bottom: 1.5em;
}

.control-btn {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--neon-green);
}

.control-btn:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 65, 0.15);
}

.play-btn svg {
    width: 32px;
    height: 32px;
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 1em;
    justify-content: center;
}

.volume-icon {
    width: 24px;
    height: 24px;
    color: var(--neon-green);
}

.volume-slider {
    width: 120px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 3px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--neon-green);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-green);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--neon-green);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px var(--neon-green);
}

/* Playlist */
.playlist-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 1.5em;
    background: rgba(0, 255, 65, 0.1);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.playlist-header h4 {
    margin: 0;
    font-family: 'Orbitron', monospace;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.playlist-icon {
    width: 20px;
    height: 20px;
}

.track-count {
    color: #888;
    font-size: 0.9em;
}

.playlist-tracks {
    max-height: 400px;
    overflow-y: auto;
}

.playlist-track {
    display: flex;
    align-items: center;
    padding: 1em 1.5em;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.playlist-track:hover {
    background: rgba(0, 255, 65, 0.1);
}

.playlist-track.active {
    background: rgba(0, 255, 65, 0.15);
    border-left: 3px solid var(--neon-green);
}

.playlist-track.active .track-name {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.track-num {
    font-family: 'Orbitron', monospace;
    color: #666;
    font-size: 0.9em;
    min-width: 30px;
}

.playlist-track.active .track-num {
    color: var(--neon-green);
}

.track-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-name {
    font-family: 'Courier New', monospace;
    color: #ccc;
}

.track-time {
    color: #888;
    font-size: 0.85em;
    font-family: 'Courier New', monospace;
}

.music-footer {
    text-align: center;
    margin-top: 3em;
    padding: 2em;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

/* Responsive Design for Music Player */
@media (max-width: 768px) {
    .music-player-container {
        padding: 1.5em;
    }

    .vinyl-record {
        width: 150px;
        height: 150px;
    }

    .vinyl-center {
        width: 50px;
        height: 50px;
    }

    .now-playing-info h3 {
        font-size: 1.2em;
    }

    .control-buttons {
        gap: 1.5em;
    }

    .control-btn {
        width: 45px;
        height: 45px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .playlist-tracks {
        max-height: 300px;
    }

    .playlist-track {
        padding: 0.8em 1em;
    }
}

@media (max-width: 480px) {
    .music-section {
        padding: 3em 1em;
    }

    .music-player-container {
        padding: 1em;
    }

    .vinyl-record {
        width: 120px;
        height: 120px;
    }

    .now-playing-info h3 {
        font-size: 1em;
    }

    .progress-bar-container {
        gap: 0.5em;
    }

    .time-display {
        font-size: 0.75em;
        min-width: 35px;
    }

    .control-buttons {
        gap: 1em;
    }

    .volume-slider {
        width: 80px;
    }

    .playlist-header {
        padding: 0.8em 1em;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
    }

    .track-name {
        font-size: 0.9em;
    }
}

/* ==================== FLOATING MUSIC WIDGET ==================== */
.floating-music-widget {
    position: fixed;
    bottom: 180px;
    right: 30px;
    z-index: 9999;
}

.floating-music-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff41 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.6),
        0 0 40px rgba(0, 255, 65, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    border: 2px solid var(--neon-green);
}

.floating-music-button svg {
    filter: drop-shadow(0 0 3px #000) drop-shadow(0 0 8px rgba(0, 255, 65, 0.5));
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.floating-music-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.8),
        0 0 60px rgba(0, 255, 65, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.6);
}

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

.mini-music-controller {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: rgba(10, 10, 10, 0.98);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.4),
        0 0 40px rgba(0, 255, 65, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.floating-music-widget:hover .mini-music-controller {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-track-info {
    margin-bottom: 12px;
    text-align: center;
}

.mini-track-name {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-track-artist {
    font-size: 11px;
    color: var(--text-blue);
    opacity: 0.8;
}

.mini-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mini-control-btn {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mini-control-btn:hover {
    background: var(--neon-green);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.mini-control-btn:active {
    transform: scale(0.95);
}

#mini-play-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-width: 3px;
}

.mini-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.mini-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-music-widget {
        bottom: 154px;
        right: 20px;
    }

    .floating-music-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .mini-music-controller {
        width: 240px;
        padding: 12px;
        bottom: 60px;
        right: -10px;
    }

    .mini-track-name {
        font-size: 12px;
    }

    .mini-control-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    #mini-play-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}