/* ========================================
   SANTA RALLY - RETARD/BRAINROT CSS
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&family=Press+Start+2P&display=swap');

/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    --color-primary: #ff0080;
    --color-secondary: #00ff88;
    --color-accent: #ffff00;
    --color-bg: #0a0a0a;
    --color-card: #1a1a2e;
    --color-text: #ffffff;
    --color-neon-pink: #ff006e;
    --color-neon-cyan: #00ffff;
    --color-neon-green: #39ff14;
    --color-neon-purple: #bf00ff;
    --color-gold: #ffd700;
}

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

body {
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    position: relative;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */

.snow-container,
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snow {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-neon-cyan);
    box-shadow: 0 0 10px var(--color-neon-cyan);
    animation: twinkle 2s ease-in-out infinite;
}

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

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

.header {
    position: relative;
    z-index: 100;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-neon-pink) 0%, var(--color-neon-purple) 100%);
    border-bottom: 5px solid var(--color-neon-green);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.glitch-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: var(--color-text);
    text-shadow: 
        3px 3px 0 var(--color-neon-cyan),
        -3px -3px 0 var(--color-neon-pink);
    animation: glitch 1s infinite;
    position: relative;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    25% {
        transform: translate(-2px, 2px);
    }
    50% {
        transform: translate(2px, -2px);
    }
    75% {
        transform: translate(-2px, -2px);
    }
}

.ticker {
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 0 20px var(--color-gold);
    animation: pulse 2s ease-in-out infinite;
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 3px solid var(--color-neon-green);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--color-neon-green);
    color: var(--color-bg);
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 0 20px var(--color-neon-green);
}

.nav-link.pulse {
    animation: pulse 1.5s ease-in-out infinite;
    background: var(--color-neon-pink);
    border-color: var(--color-neon-pink);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 0, 128, 0.2) 0%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.santa-hero {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px var(--color-neon-pink));
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.rainbow-text {
    background: linear-gradient(90deg, 
        var(--color-neon-pink), 
        var(--color-neon-cyan), 
        var(--color-neon-green), 
        var(--color-gold),
        var(--color-neon-purple)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-shift 3s linear infinite;
}

@keyframes rainbow-shift {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--color-neon-cyan);
    text-shadow: 0 0 10px var(--color-neon-cyan);
}

/* ========================================
   CONTRACT BOX
   ======================================== */

.contract-box {
    background: rgba(26, 26, 46, 0.9);
    border: 3px solid var(--color-neon-green);
    border-radius: 15px;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.contract-label {
    font-size: 0.9rem;
    color: var(--color-neon-green);
    margin-bottom: 10px;
    font-weight: bold;
}

.contract-address {
    background: var(--color-bg);
    padding: 15px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--color-neon-cyan);
    word-break: break-all;
    margin-bottom: 15px;
    border: 2px solid var(--color-neon-cyan);
}

.copy-btn {
    background: var(--color-neon-green);
    color: var(--color-bg);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comic Neue', cursive;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--color-neon-green);
}

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

/* ========================================
   CTA BUTTONS
   ======================================== */

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Comic Neue', cursive;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-neon-pink), var(--color-neon-purple));
    color: var(--color-text);
    border: 3px solid var(--color-text);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-neon-cyan));
    color: var(--color-bg);
    border: 3px solid var(--color-bg);
}

.btn-terminal {
    background: linear-gradient(135deg, var(--color-gold), #ff8c00);
    color: var(--color-bg);
    border: 3px solid var(--color-bg);
    animation: pulse 2s ease-in-out infinite, glow-terminal 2s ease-in-out infinite;
}

@keyframes glow-terminal {
    0%, 100% {
        box-shadow: 0 0 20px var(--color-gold), 0 0 40px var(--color-gold);
    }
    50% {
        box-shadow: 0 0 30px var(--color-gold), 0 0 60px var(--color-gold), 0 0 80px var(--color-gold);
    }
}

.btn:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.5);
}

.spinning-border {
    position: relative;
    overflow: hidden;
}

.spinning-border::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: conic-gradient(from 0deg, transparent, var(--color-neon-cyan), transparent);
    animation: spin 3s linear infinite;
    z-index: -1;
}

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

/* ========================================
   STATS
   ======================================== */

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(26, 26, 46, 0.8);
    border: 3px solid var(--color-neon-cyan);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-neon-cyan);
    text-transform: uppercase;
}

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

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

/* ========================================
   SECTIONS
   ======================================== */

.section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
}

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

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    line-height: 1.4;
}

.wiggle {
    animation: wiggle 1s ease-in-out infinite;
}

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

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(191, 0, 255, 0.1) 100%);
}

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

.about-text {
    color: var(--color-text);
}

.text-large {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.text-medium {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight {
    color: var(--color-neon-green);
    font-weight: bold;
    text-shadow: 0 0 10px var(--color-neon-green);
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    border: 5px solid var(--color-neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.highlight-pink {
    color: var(--color-neon-pink);
    font-weight: bold;
    text-shadow: 0 0 10px var(--color-neon-pink);
}

/* ========================================
   MARKET MAKER BOT SECTION
   ======================================== */

.mm-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
}

.mm-intro {
    text-align: center;
    margin-bottom: 50px;
}

.mm-intro p {
    font-size: 1.5rem;
    color: var(--color-neon-cyan);
    font-weight: bold;
}

.mm-subtitle {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: normal !important;
    margin-top: 10px;
}

/* Wallet Flow Section */
.wallet-flow-section {
    background: rgba(26, 26, 46, 0.9);
    border: 3px solid var(--color-neon-purple);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 0 40px rgba(191, 0, 255, 0.3);
}

.flow-title {
    font-size: 2rem;
    color: var(--color-neon-purple);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(191, 0, 255, 0.5);
}

.wallet-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.wallet-card {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--color-neon-cyan);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.wallet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.dev-wallet {
    border-color: var(--color-neon-pink);
}

.dev-wallet:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.mm-wallet {
    border-color: var(--color-neon-green);
}

.mm-wallet:hover {
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.4);
}

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

.wallet-card h4 {
    font-size: 1.3rem;
    color: var(--color-neon-cyan);
    margin-bottom: 10px;
}

.wallet-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.wallet-address-demo {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--color-neon-green);
}

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.arrow-step {
    background: var(--color-neon-purple);
    color: var(--color-bg);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

.arrow-line {
    font-size: 2rem;
    color: var(--color-neon-purple);
    font-weight: bold;
}

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

.flow-benefit {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--color-neon-cyan);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.flow-benefit:hover {
    border-color: var(--color-neon-pink);
    transform: translateY(-3px);
}

.benefit-emoji {
    font-size: 1.5rem;
    margin-right: 10px;
}

.flow-benefit strong {
    color: var(--color-neon-green);
}

/* Responsive Wallet Flow */
@media (max-width: 768px) {
    .wallet-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flow-arrow {
        flex-direction: row;
        justify-content: center;
    }
    
    .arrow-line {
        transform: rotate(90deg);
    }
}

/* Terminal Highlight Box */
.terminal-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 3px solid var(--color-gold);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    animation: terminal-pulse 3s ease-in-out infinite;
}

@keyframes terminal-pulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.3);
    }
}

.terminal-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: terminal-shine 4s linear infinite;
}

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

.terminal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.terminal-box h3 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.terminal-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.terminal-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 50px;
    background: var(--color-gold);
    color: var(--color-bg);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.terminal-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
    background: #ff8c00;
}

.link-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.terminal-link:hover .link-arrow {
    transform: translateX(5px);
}

.bot-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.bot-step {
    background: rgba(26, 26, 46, 0.9);
    border: 3px solid var(--color-neon-green);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.bot-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.4);
}

.buy-step {
    border-color: var(--color-neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.buy-step:hover {
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.5);
}

.sell-step {
    border-color: #ff3366;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.sell-step:hover {
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.5);
}

.speed-step {
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.speed-step:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
}

.loop-step {
    border-color: var(--color-neon-purple);
    box-shadow: 0 0 20px rgba(191, 0, 255, 0.3);
}

.loop-step:hover {
    box-shadow: 0 10px 40px rgba(191, 0, 255, 0.5);
}

.step-number {
    display: inline-block;
    background: var(--color-neon-pink);
    color: var(--color-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 3rem;
    text-align: center;
    margin: 20px 0;
}

.bot-step h3 {
    font-size: 1.5rem;
    color: var(--color-neon-green);
    margin-bottom: 20px;
    text-align: center;
}

.bot-step ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bot-step li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-step li:last-child {
    border-bottom: none;
}

.bot-step strong {
    color: var(--color-neon-cyan);
    font-weight: bold;
}

.bot-benefits {
    background: rgba(26, 26, 46, 0.9);
    border: 3px solid var(--color-neon-pink);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
}

.bot-benefits h3 {
    font-size: 2rem;
    color: var(--color-neon-green);
    margin-bottom: 30px;
    text-align: center;
}

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

.benefit-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--color-neon-cyan);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--color-neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--color-neon-green);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.gallery-section {
    background: var(--color-bg);
    padding: 80px 20px;
}

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

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--color-neon-cyan);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 30px var(--color-neon-cyan);
    border-color: var(--color-neon-pink);
}

/* ========================================
   JOIN SECTION
   ======================================== */

.join-section {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
    text-align: center;
}

.join-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--color-neon-cyan);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: var(--color-card);
    border: 3px solid var(--color-neon-green);
    border-radius: 15px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--color-neon-green);
    color: var(--color-bg);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--color-neon-green);
}

.social-icon {
    font-size: 2rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-card);
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid var(--color-neon-pink);
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.small-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-img {
    width: 100px;
    height: auto;
}

.bouncing {
    animation: bounce 2s ease-in-out infinite;
}

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

/* ========================================
   MUSIC PLAYER
   ======================================== */

.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.music-toggle {
    background: linear-gradient(135deg, var(--color-neon-pink), var(--color-neon-purple));
    color: var(--color-text);
    border: 3px solid var(--color-neon-cyan);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.4);
    font-family: 'Comic Neue', cursive;
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.6);
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-toggle.playing {
    animation: music-pulse 1.5s ease-in-out infinite;
}

@keyframes music-pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 0, 128, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 0, 128, 0.8), 0 0 60px rgba(0, 255, 255, 0.4);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .glitch-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        text-align: center;
    }
}