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

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #00ffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated Neon Grid Background */
.neon-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, transparent 24%, rgba(0, 255, 255, 0.05) 25%, rgba(0, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.05) 75%, rgba(0, 255, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 0, 255, 0.05) 25%, rgba(255, 0, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 0, 255, 0.05) 75%, rgba(255, 0, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

.neon-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 4s ease-in-out infinite alternate;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

/* Header Styles - Digital Billboard */
header {
    text-align: center;
    padding: 60px 20px 40px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 255, 255, 0.05) 100%);
    border-bottom: 3px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.2) 0%, transparent 50%);
    animation: headerGlow 8s ease-in-out infinite alternate;
}

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

/* Digital Billboard - Compact Rectangle Red/Yellow/Gold */
.digital-billboard {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.billboard-frame {
    position: relative;
    background: linear-gradient(135deg, #000000, #1a0000);
    border: 3px solid #ff0000;
    border-radius: 10px;
    padding: 25px 50px;
    box-shadow:
        0 0 30px rgba(255, 0, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4),
        inset 0 0 40px rgba(255, 0, 0, 0.1);
    animation: billboardPulse 4s ease-in-out infinite;
}

@keyframes billboardPulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(255, 0, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.4),
            inset 0 0 40px rgba(255, 0, 0, 0.1);
    }
    50% {
        box-shadow:
            0 0 50px rgba(255, 0, 0, 0.8),
            0 0 100px rgba(255, 215, 0, 0.6),
            inset 0 0 60px rgba(255, 0, 0, 0.2);
    }
}

/* Billboard Lights */
.billboard-lights {
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        #ff0000 0px,
        #ff0000 15px,
        #ffff00 15px,
        #ffff00 30px,
        #ffd700 30px,
        #ffd700 45px
    );
    animation: lightsMove 2s linear infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.top-lights {
    top: -1px;
    border-radius: 10px 10px 0 0;
}

.bottom-lights {
    bottom: -1px;
    border-radius: 0 0 10px 10px;
}

@keyframes lightsMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 45px 0;
    }
}

/* Billboard Content */
.billboard-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.billboard-title {
    display: flex;
    align-items: center;
    gap: 30px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: inline-block;
    font-size: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: titleFlicker 3s ease-in-out infinite;
}

.title-line-1 {
    color: #ff0000;
    text-shadow:
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000,
        0 3px 8px rgba(0, 0, 0, 0.8);
    animation-delay: 0s;
}

.title-line-2 {
    color: #ffff00;
    text-shadow:
        0 0 10px #ffff00,
        0 0 20px #ffff00,
        0 0 30px #ffff00,
        0 3px 8px rgba(0, 0, 0, 0.8);
    animation-delay: 0.2s;
}

.title-line-3 {
    color: #ffd700;
    text-shadow:
        0 0 10px #ffd700,
        0 0 20px #ffd700,
        0 0 30px #ffd700,
        0 3px 8px rgba(0, 0, 0, 0.8);
    animation-delay: 0.4s;
}

@keyframes titleFlicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.98;
        transform: scale(1.01);
    }
}

.billboard-tagline {
    font-size: 1rem;
    color: #ffd700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow:
        0 0 15px rgba(255, 215, 0, 1),
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 45px rgba(255, 215, 0, 1),
        0 0 60px rgba(255, 255, 0, 0.6);
    animation: taglinePulse 2s ease-in-out infinite;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Arial', sans-serif;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 8px;
    border: 2px solid #ffd700;
    white-space: nowrap;
}

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

.billboard-decorations {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
}

.deco-star,
.deco-bolt {
    animation: decoSpin 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px currentColor);
}

.deco-star {
    animation-delay: 0s;
    color: #ffd700;
}

.deco-bolt {
    animation-delay: 0.5s;
    color: #ff0000;
}

@keyframes decoSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.15);
    }
}

/* Responsive Billboard */
@media (max-width: 768px) {
    header {
        padding: 30px 15px 25px 15px;
    }

    .billboard-frame {
        padding: 15px 25px;
    }

    .billboard-content {
        flex-direction: column;
        gap: 15px;
    }

    .billboard-title {
        flex-direction: column;
        gap: 5px;
    }

    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .billboard-tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
        position: static;
        margin-top: 10px;
    }

    .billboard-decorations {
        gap: 10px;
        font-size: 1.3rem;
    }
}

.flicker {
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #ff00ff;
    }
    20%, 24%, 55% {
        opacity: 0.4;
        text-shadow: none;
    }
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #ff00ff,
            0 0 70px #ff00ff;
    }
    50% {
        text-shadow: 
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #00ffff,
            0 0 50px #ff00ff,
            0 0 80px #ff00ff,
            0 0 90px #ff00ff;
    }
}

.tagline {
    font-size: 1.2rem;
    color: #ff00ff;
    letter-spacing: 5px;
    margin-top: 10px;
    text-shadow: 0 0 10px #ff00ff;
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    flex-wrap: wrap;
}

/* Promotional Announcements - ENHANCED USER-FRIENDLY VERSION */
.promo-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
    z-index: 10;
}

.promo-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.95), rgba(0, 255, 255, 0.95));
    border: 3px solid #00ffff;
    clip-path: polygon(0% 15%, 15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
    padding: 20px 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
    box-shadow:
        0 0 40px rgba(0, 255, 255, 0.6),
        0 0 80px rgba(255, 0, 255, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    animation: promoGlow 3s ease-in-out infinite, bannerFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-banner:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow:
        0 0 60px rgba(0, 255, 255, 0.9),
        0 0 120px rgba(255, 0, 255, 0.7),
        inset 0 0 60px rgba(255, 255, 255, 0.2);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff, #ff00ff);
    clip-path: polygon(0% 15%, 15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

@keyframes bannerFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-5px) rotateX(1deg) rotateY(-0.5deg);
    }
    50% {
        transform: translateY(-10px) rotateX(0deg) rotateY(0deg);
    }
    75% {
        transform: translateY(-5px) rotateX(-1deg) rotateY(0.5deg);
    }
}

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

.promo-top {
    margin-bottom: 20px;
}

@keyframes promoGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 50px rgba(255, 0, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.7), 0 0 70px rgba(255, 0, 255, 0.5);
    }
}

.promo-text {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.promo-badge {
    display: inline-block;
    background: #000;
    color: #00ffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 15px;
    border: 1px solid #00ffff;
    animation: badgePulse 2s ease-in-out infinite;
}

.promo-click-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00ff00, #00ffff);
    color: #000;
    padding: 15px 30px;
    border: 3px solid #00ff00;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 25px rgba(0, 255, 0, 0.6),
        0 0 50px rgba(0, 255, 255, 0.4);
    margin-left: 25px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.promo-click-btn:hover::before {
    width: 400px;
    height: 400px;
}

.promo-click-btn:hover {
    background: linear-gradient(135deg, #00ffff, #00ff00);
    box-shadow:
        0 0 40px rgba(0, 255, 0, 0.9),
        0 0 80px rgba(0, 255, 255, 0.7);
    transform: translateY(-3px) scale(1.05);
    border-color: #00ffff;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    }
}

/* ============================================
   BOOMIN' SIDE GUIs - EPIC NEON ENHANCEMENTS
   ============================================ */

/* BOOMIN' floating containers */
.promo-floating {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    animation: floatUpDownEpic 4s ease-in-out infinite;
    cursor: pointer;
}

.promo-left {
    left: 15px;
}

.promo-right {
    right: 15px;
}

@keyframes floatUpDownEpic {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    25% {
        transform: translateY(-55%) scale(1.05);
    }
    50% {
        transform: translateY(-50%) scale(1.08);
    }
    75% {
        transform: translateY(-45%) scale(1.05);
    }
}

/* EPIC BOOMIN' promo cards */
.promo-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.15));
    border: 4px solid #00ffff;
    border-radius: 0px;
    padding: 30px 25px;
    text-align: center;
    box-shadow:
        0 0 40px rgba(0, 255, 255, 0.8),
        0 0 80px rgba(255, 0, 255, 0.5),
        0 15px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    max-width: 220px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.2) 0%, transparent 80%);
    animation: cardGlowEpic 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes cardGlowEpic {
    0% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05) rotate(5deg);
    }
}

/* Removed CLICK ME prompt */

@keyframes clickPromptEpic {
    0%, 100% {
        opacity: 0.9;
        transform: translateX(-50%) translateY(0) scale(1);
        text-shadow:
            0 0 10px rgba(255, 255, 0, 1),
            0 0 20px rgba(255, 255, 0, 0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1.02);
        text-shadow:
            0 0 12px rgba(255, 255, 0, 1.2),
            0 0 25px rgba(255, 255, 0, 1);
    }
}

/* BOOMIN' hover effects - REDUCED SCALE FOR TEXT READABILITY */
.promo-card:hover {
    transform: scale(1.15) translateY(-15px) rotateY(2deg);
    box-shadow:
        0 0 80px rgba(0, 255, 255, 1.2),
        0 0 120px rgba(255, 0, 255, 0.9),
        0 0 160px rgba(255, 255, 0, 0.7),
        0 25px 60px rgba(0, 0, 0, 0.5);
    border-color: #ff00ff;
    border-width: 5px;
    animation: superGlowEpic 0.8s ease-in-out;
}

@keyframes superGlowEpic {
    0% {
        box-shadow:
            0 0 80px rgba(0, 255, 255, 1.2),
            0 0 120px rgba(255, 0, 255, 0.9);
    }
    50% {
        box-shadow:
            0 0 120px rgba(0, 255, 255, 1.8),
            0 0 180px rgba(255, 0, 255, 1.4),
            0 0 240px rgba(255, 255, 0, 1.2);
    }
    100% {
        box-shadow:
            0 0 80px rgba(0, 255, 255, 1.2),
            0 0 120px rgba(255, 0, 255, 0.9);
    }
}

.promo-card:active {
    transform: scale(1.15) translateY(-15px);
}

/* EPIC BOOMIN' icons */
.promo-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    animation: iconBounceEpic 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px currentColor);
    text-shadow:
        0 0 15px currentColor,
        0 0 30px currentColor;
}

@keyframes iconBounceEpic {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(-8deg) scale(1.1);
    }
    50% {
        transform: translateY(0) rotate(0deg) scale(1.2);
    }
    75% {
        transform: translateY(-10px) rotate(8deg) scale(1.1);
    }
}

/* BOOMIN' titles with neon explosion */
.promo-title {
    color: #00ffff;
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    text-shadow:
        0 0 15px rgba(0, 255, 255, 1.5),
        0 0 30px rgba(0, 255, 255, 1.2),
        0 0 45px rgba(0, 255, 255, 1),
        0 0 60px rgba(255, 0, 255, 0.8);
    font-family: 'Courier New', monospace;
    line-height: 1.3;
    letter-spacing: 2px;
    animation: titleGlowEpic 2.5s ease-in-out infinite alternate;
}

@keyframes titleGlowEpic {
    0% {
        text-shadow:
            0 0 15px rgba(0, 255, 255, 1.5),
            0 0 30px rgba(0, 255, 255, 1.2),
            0 0 45px rgba(0, 255, 255, 1),
            0 0 60px rgba(255, 0, 255, 0.8);
    }
    100% {
        text-shadow:
            0 0 20px rgba(255, 0, 255, 1.5),
            0 0 40px rgba(255, 0, 255, 1.2),
            0 0 60px rgba(255, 0, 255, 1),
            0 0 80px rgba(0, 255, 255, 0.8);
    }
}

/* Different colors for different GUIs */
.promo-left .promo-title {
    color: #ff6b35;
    text-shadow:
        0 0 15px rgba(255, 107, 53, 1.5),
        0 0 30px rgba(255, 107, 53, 1.2),
        0 0 45px rgba(255, 107, 53, 1),
        0 0 60px rgba(255, 193, 7, 0.8);
}

.promo-left .promo-offer {
    color: #ff6b35;
    text-shadow:
        0 0 15px rgba(255, 107, 53, 1.5),
        0 0 30px rgba(255, 107, 53, 1.2),
        0 0 45px rgba(255, 193, 7, 0.8);
}

.promo-right .promo-title {
    color: #4caf50;
    text-shadow:
        0 0 15px rgba(76, 175, 80, 1.5),
        0 0 30px rgba(76, 175, 80, 1.2),
        0 0 45px rgba(76, 175, 80, 1),
        0 0 60px rgba(129, 199, 132, 0.8);
}

.promo-right .promo-offer {
    color: #4caf50;
    text-shadow:
        0 0 15px rgba(76, 175, 80, 1.5),
        0 0 30px rgba(76, 175, 80, 1.2),
        0 0 45px rgba(129, 199, 132, 0.8);
}

/* BOOMIN' offers with neon style */
.promo-offer {
    color: #ff00ff;
    font-size: 1rem;
    display: block;
    text-shadow:
        0 0 15px rgba(255, 0, 255, 1.5),
        0 0 30px rgba(255, 0, 255, 1.2),
        0 0 45px rgba(255, 255, 0, 0.8);
    font-family: 'Courier New', monospace;
    line-height: 1.4;
    margin-bottom: 20px;
    animation: offerGlow 3s ease-in-out infinite alternate;
}

@keyframes offerGlow {
    0% {
        text-shadow:
            0 0 15px rgba(255, 0, 255, 1.5),
            0 0 30px rgba(255, 0, 255, 1.2);
    }
    100% {
        text-shadow:
            0 0 20px rgba(255, 255, 0, 1.5),
            0 0 40px rgba(255, 255, 0, 1.2);
    }
}

/* EPIC pulse effect on hover */
.promo-card:hover .promo-icon {
    animation: iconPulseHoverEpic 0.6s ease-in-out infinite;
}

@keyframes iconPulseHoverEpic {
    0%, 100% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 30px currentColor);
    }
    50% {
        transform: scale(1.5);
        filter: drop-shadow(0 0 50px currentColor);
    }
}

/* Responsive adjustments for promos - IMPROVED */
@media (max-width: 1200px) {
    .promo-floating {
        top: auto;
        bottom: 20px;
        transform: none;
    }
    
    .promo-left {
        left: 10px;
    }
    
    .promo-right {
        right: 10px;
    }
    
    .promo-card {
        max-width: 160px;
        min-width: 140px;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .promo-floating {
        position: relative;
        display: inline-block;
        margin: 10px 5px;
        bottom: auto;
    }

    .promo-left, .promo-right {
        left: auto;
        right: auto;
    }

    .promo-card {
        max-width: 160px;
        min-width: 150px;
        padding: 20px 15px;
    }

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

    .promo-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .promo-offer {
        font-size: 0.75rem;
    }

    .promo-text {
        font-size: 1.1rem;
    }

    .promo-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .promo-card::after {
        font-size: 0.65rem;
    }
}

/* Better screen fit for larger screens */
@media (min-width: 1400px) {
    .promo-floating {
        top: 45%;
    }

    .promo-card {
        max-width: 220px;
        padding: 28px 22px;
    }

    .promo-icon {
        font-size: 2.8rem;
    }

    .promo-title {
        font-size: 1.2rem;
    }

    .promo-offer {
        font-size: 0.95rem;
    }
}

.nav-btn {
    background: transparent;
    border: 2px solid #00ffff;
    padding: 15px 30px;
    color: #00ffff;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.nav-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        inset 0 0 10px #00ffff;
    transform: scale(1.05);
}

.neon-text {
    position: relative;
    z-index: 1;
}

/* Payment Section */
.payment-section {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 255, 0.05) 50%, transparent 100%);
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    margin: 20px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.neon-glow {
    color: #ff00ff;
    text-shadow: 
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.payment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    border: 2px solid;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.payment-btn:hover::before {
    width: 400px;
    height: 400px;
}

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

.payment-btn:hover::after {
    left: 100%;
}

.payment-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px currentColor);
    transition: all 0.3s ease;
}

.payment-btn:hover .payment-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px currentColor);
}

.payment-btn span:last-child {
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

.paypal {
    border-color: #00ffff;
    color: #00ffff;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 0, 0, 0.8));
}

.paypal:hover {
    border-color: #00ffff;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        0 8px 25px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 0, 0, 0.9));
}

.cashapp {
    border-color: #00ff00;
    color: #00ff00;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.cashapp:hover {
    border-color: #00ff00;
    box-shadow: 
        0 0 30px rgba(0, 255, 0, 0.6),
        0 8px 25px rgba(0, 255, 0, 0.4),
        inset 0 0 30px rgba(0, 255, 0, 0.15);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 0, 0, 0.9));
}

.venmo {
    border-color: #ff00ff;
    color: #ff00ff;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 0, 0, 0.8));
}

.venmo:hover {
    border-color: #ff00ff;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.6),
        0 8px 25px rgba(255, 0, 255, 0.4),
        inset 0 0 30px rgba(255, 0, 255, 0.15);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 0, 0, 0.9));
}

.email {
    border-color: #ffff00;
    color: #ffff00;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.email:hover {
    border-color: #ffff00;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.6),
        0 8px 25px rgba(255, 255, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 0, 0.15);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.2), rgba(0, 0, 0, 0.9));
}

.payment-btn:active {
    transform: translateY(-4px) scale(1.02);
}

/* Content Sections */
.content-section {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.collage {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.art-item-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.art-item-link:hover {
    transform: scale(1.05);
}

.art-item {
    width: 330px;
    height: 250px;
    overflow: hidden;
    border: 2px solid #00ffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slowGlow 3s ease-in-out infinite alternate;
}

.art-item:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    animation: fastGlow 1s ease-in-out infinite alternate;
}

@keyframes slowGlow {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.2);
    }
}

@keyframes fastGlow {
    0% {
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.5), 0 0 60px rgba(255, 0, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 50px rgba(255, 0, 255, 0.8), 0 0 100px rgba(255, 0, 255, 0.4);
    }
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #00ffff;
    text-align: center;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px #00ffff;
}

/* Radar Billboard Art Gallery */
.radar-billboard {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1200px;
    overflow: hidden;
}

.radar-screen {
    position: relative;
    width: 800px;
    height: 800px;
    border: 3px solid #00ffff;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.9) 0%, rgba(0, 255, 255, 0.1) 100%);
    box-shadow:
        0 0 50px rgba(0, 255, 255, 0.5),
        inset 0 0 50px rgba(255, 0, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.radar-circle.outer {
    width: 780px;
    height: 780px;
}

.radar-circle.middle {
    width: 520px;
    height: 520px;
}

.radar-circle.inner {
    width: 260px;
    height: 260px;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 400px;
    background: linear-gradient(to top, transparent, #00ffff, #ff00ff);
    transform-origin: bottom center;
    animation: radarSweep 4s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

@keyframes radarSweep {
    0% { transform: translateX(-50%) translateY(-100%) rotate(0deg); }
    100% { transform: translateX(-50%) translateY(-100%) rotate(360deg); }
}

.art-display {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #ff00ff;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.art-display:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(-200px);
}

.art-display:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-200px);
}

.art-display:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(200px);
}

.art-display:nth-child(4) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(200px);
}

.featured-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 1s ease;
}

.art-info {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    font-size: 0.8rem;
}

.radar-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
    cursor: pointer;
    animation: dotBlink 2s infinite;
    transition: all 0.3s ease;
}

.dot:nth-child(1) { top: 20%; left: 30%; }
.dot:nth-child(2) { top: 70%; left: 20%; }
.dot:nth-child(3) { top: 30%; right: 25%; }
.dot:nth-child(4) { bottom: 25%; right: 30%; }

.dot:hover, .dot.active {
    background: #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
    transform: scale(1.5);
}

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

.spaceship-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffff00;
    animation: starTwinkle 3s infinite;
}

.star1 { top: 10%; left: 15%; animation-delay: 0s; }
.star2 { top: 80%; right: 10%; animation-delay: 1s; }
.star3 { bottom: 15%; left: 80%; animation-delay: 2s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.spaceship-icon {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    animation: spaceshipFloat 6s ease-in-out infinite;
}

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

/* AI Assistant */
.assistant-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 20px;
}

.chat-box {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff00ff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.chat-messages p {
    margin: 10px 0;
    padding: 10px;
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid #00ffff;
}

.system-msg {
    color: #ff00ff !important;
    border-left-color: #ff00ff !important;
    background: rgba(255, 0, 255, 0.1) !important;
}

.chat-input-container {
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.chat-input:focus {
    outline: none;
    box-shadow: 0 0 10px #00ffff;
}

.send-btn, .reset-btn {
    padding: 15px 25px;
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover, .reset-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 15px #ff00ff;
}

.assistant-info {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.neon-text-small {
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
}

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

.capabilities-list li {
    padding: 10px;
    margin: 10px 0;
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid #00ffff;
    color: #00ffff;
}

/* Media Hub */
.media-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 20px;
}

.media-box {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff00ff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.input-group {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.media-input {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-family: 'Courier New', monospace;
}

.media-input:focus {
    outline: none;
    box-shadow: 0 0 10px #00ffff;
}

.media-btn {
    padding: 15px 25px;
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 15px #ff00ff;
}

.video-container {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* MUSIC PRODUCTION SERVICES WIDGET */
.production-widget-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.production-widget {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 165, 0, 0.6);
    border-radius: 25px;
    padding: 12px 20px;
    backdrop-filter: blur(15px);
    box-shadow:
        0 0 25px rgba(255, 165, 0, 0.4),
        0 0 50px rgba(255, 0, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    animation: productionGlow 4s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.production-widget:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow:
        0 0 40px rgba(255, 165, 0, 0.7),
        0 0 80px rgba(255, 0, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 165, 0, 0.9);
}

.production-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.2), transparent);
    animation: productionScan 3s linear infinite;
}

@keyframes productionGlow {
    0% {
        box-shadow:
            0 0 25px rgba(255, 165, 0, 0.4),
            0 0 50px rgba(255, 0, 255, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.05);
    }
    100% {
        box-shadow:
            0 0 35px rgba(255, 165, 0, 0.6),
            0 0 70px rgba(255, 0, 255, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
}

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

.widget-section {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.production-section {
    padding-right: 15px;
}

.features-section {
    padding-left: 15px;
}

.production-icon, .features-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6));
    animation: productionIconPulse 2s ease-in-out infinite;
}

@keyframes productionIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(255, 165, 0, 0.9));
    }
}

.production-info, .features-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 80px;
}

.production-title {
    color: #ffa500;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
    line-height: 1;
    letter-spacing: 0.5px;
}

.production-price {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.features-text {
    color: #ff00ff;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.8);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.features-tag {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    background: rgba(255, 0, 255, 0.2);
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.widget-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 165, 0, 0.6), transparent);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.4);
    position: relative;
    z-index: 1;
}

/* Responsive Production Widget */
@media (max-width: 768px) {
    .production-widget-container {
        position: static;
        margin: 20px auto;
        max-width: 300px;
    }

    .production-widget {
        padding: 10px 15px;
    }

    .production-section, .features-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .production-title {
        font-size: 12px;
    }

    .production-price {
        font-size: 14px;
    }

    .features-text {
        font-size: 11px;
    }

    .production-icon, .features-icon {
        font-size: 20px;
    }
}

/* Music Control Button (Bottom Right) */
.music-control-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: 3px solid #00ffff;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
                0 0 40px rgba(255, 0, 255, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: neonPulse 2s ease-in-out infinite;
}

.music-control-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8),
                0 0 60px rgba(255, 0, 255, 0.6),
                0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff00ff, #00ffff);
}

.music-control-btn:active {
    transform: scale(1.05);
}

.music-control-btn.paused {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    border-color: #ff00ff;
    animation: none;
}

/* WhatsApp Widget Custom Styling */
.wa-chat-btn-wrapper {
    animation: neonPulse 2s ease-in-out infinite !important;
}

.wa-chat-btn {
    background: linear-gradient(135deg, #00ffff, #25D366) !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 
                0 0 40px rgba(37, 211, 102, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid #00ffff !important;
    transition: all 0.3s ease !important;
}

.wa-chat-btn:hover {
    background: linear-gradient(135deg, #25D366, #00ffff) !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 
                0 0 60px rgba(37, 211, 102, 0.6),
                0 6px 20px rgba(0, 0, 0, 0.4) !important;
    transform: scale(1.1) !important;
}

.wa-chat-btn-text {
    color: #000 !important;
    font-weight: bold !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

.wa-chat-box {
    border: 2px solid #00ffff !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5) !important;
    background: rgba(0, 0, 0, 0.95) !important;
}

.wa-chat-box-header {
    background: linear-gradient(135deg, #00ffff, #ff00ff) !important;
    border-bottom: 2px solid #00ffff !important;
}

/* Facebook Messenger Custom Styling */
.fb-customerchat iframe {
    border: 2px solid #ff00ff !important;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5) !important;
    border-radius: 50px !important;
}

/* Scrolling Marquee */
.marquee {
    background: rgba(255, 0, 255, 0.1);
    border-top: 2px solid #ff00ff;
    border-bottom: 2px solid #ff00ff;
    padding: 20px 0;
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: marqueeGlow 3s ease-in-out infinite;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    position: relative;
    z-index: 1;
}

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

@keyframes marqueeGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.8;
        transform: translateX(100%);
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 255, 255, 0.1) 0%, transparent 100%);
    border-top: 2px solid #00ffff;
    margin-top: 40px;
}

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

.footer-content p {
    margin-bottom: 20px;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.social-icon:hover::before {
    width: 400px;
    height: 400px;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-icon span {
    position: relative;
    z-index: 1;
}

.social-icon-text {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    filter: drop-shadow(0 0 10px currentColor);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-icon:hover .social-icon-text {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 25px currentColor);
    text-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
}

.social-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Facebook specific styling */
.social-icon.facebook {
    border-color: #1877f2;
    color: #1877f2;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(0, 0, 0, 0.6));
}

.social-icon.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 0 30px rgba(24, 119, 242, 0.6), 0 8px 25px rgba(24, 119, 242, 0.4);
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(0, 0, 0, 0.7));
}

/* Instagram specific styling */
.social-icon.instagram {
    border-color: #e4405f;
    color: #e4405f;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(0, 0, 0, 0.6));
}

.social-icon.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 0 30px rgba(228, 64, 95, 0.6), 0 8px 25px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.2), rgba(0, 0, 0, 0.7));
}

/* Responsive social icons */
@media (max-width: 768px) {
    .social-media-icons {
        gap: 15px;
    }

    .social-icon {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .social-icon-text {
        font-size: 1.5rem;
    }

    .social-label {
        font-size: 0.8rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ffff, #ff00ff);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff00ff, #00ffff);
}

/* Advanced Video Player Styles */
.advanced-player-container {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff00ff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.advanced-player-container.theater-mode {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    margin: 0;
    padding: 40px;
    background: rgba(0, 0, 0, 0.95);
}

.video-display {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin-bottom: 20px;
}

.theater-mode .video-display {
    height: calc(100vh - 300px);
}

#video-iframe, #video-element {
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
}

.overlay-text {
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

/* Progress Bar */
.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    display: none;
}

.progress-container.active {
    display: block;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-bottom: 5px;
}

.progress-bar:hover {
    height: 12px;
}

.progress-filled {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.time-display {
    color: #00ffff;
    font-size: 0.9rem;
    text-align: center;
}

/* Player Controls */
.player-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.control-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.control-btn {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.control-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px #00ffff;
    transform: translateY(-2px);
}

.control-btn:active {
    transform: translateY(0);
}

.control-btn.active {
    background: rgba(0, 255, 255, 0.3);
    border-color: #ff00ff;
    color: #ff00ff;
    box-shadow: 0 0 15px #ff00ff;
}

.volume-control, .speed-control, .quality-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
}

.volume-control label, .speed-control label, .quality-control label {
    color: #00ffff;
    font-size: 0.9rem;
}

.slider {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    border-radius: 3px;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #00ffff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #00ffff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
    border: none;
}

.volume-display {
    color: #00ffff;
    font-size: 0.9rem;
    min-width: 40px;
}

.control-select {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ffff;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    border-radius: 3px;
}

.control-select:focus {
    outline: none;
    box-shadow: 0 0 10px #00ffff;
}

/* Video Info */
.video-info {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
}

.info-item {
    margin: 8px 0;
    color: #00ffff;
    font-size: 0.9rem;
}

.info-item strong {
    color: #ff00ff;
    margin-right: 10px;
}

.info-item span {
    color: #00ffff;
}

/* Platform Selector */
.platform-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.platform-btn {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff00ff;
    color: #ff00ff;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 15px #ff00ff;
}

.platform-btn.active {
    background: rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 20px #ff00ff;
    border-color: #00ffff;
    color: #00ffff;
}

/* Video Search */
.video-search-container {
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    gap: 10px;
}

.video-search-input {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.video-search-input:focus {
    outline: none;
    box-shadow: 0 0 15px #00ffff;
}

.video-load-btn {
    padding: 15px 25px;
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.video-load-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 15px #ff00ff;
}

/* Sidebar */
.media-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.sidebar-section {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.sidebar-title {
    color: #ff00ff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #ff00ff;
    border-bottom: 2px solid #ff00ff;
    padding-bottom: 10px;
}

.playlist-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.playlist-item, .favorite-item, .history-item {
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid #00ffff;
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playlist-item:hover, .favorite-item:hover, .history-item:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transform: translateX(5px);
}

.item-info {
    flex: 1;
}

.item-title {
    color: #00ffff;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-platform {
    color: #ff00ff;
    font-size: 0.8rem;
}

.item-actions {
    display: flex;
    gap: 5px;
}

.item-btn {
    padding: 5px 10px;
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid #ff00ff;
    color: #ff00ff;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.item-btn:hover {
    background: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 10px #ff00ff;
}

.empty-message {
    color: #666;
    text-align: center;
    padding: 20px;
    font-style: italic;
}

.sidebar-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 15px #ff00ff;
}

/* Web Search Section */
.web-search-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Loading Indicator */
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ffff;
    font-size: 1.5rem;
    text-shadow: 0 0 20px #00ffff;
    animation: pulse 1s infinite;
}

.futuristic-enclosure {
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid #00ffff;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
}

.futuristic-enclosure video {
    width: 100%;
    height: auto;
    display: block;
}

.video-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #ff00ff;
}

.video-btn {
    padding: 10px 15px;
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid #ff00ff;
    color: #ff00ff;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.video-btn:hover {
    background: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 15px #ff00ff;
}

#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 5px;
    background: #333;
    outline: none;
    border-radius: 5px;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #ff00ff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px #ff00ff;
}

/* Music Search Styles */
.music-search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.music-search-input {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    border-radius: 5px;
    outline: none;
}

.music-search-input::placeholder {
    color: rgba(0, 255, 255, 0.6);
}

.music-search-input:focus {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.music-search-btn, .music-trending-btn {
    padding: 15px 20px;
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.music-search-btn:hover, .music-trending-btn:hover {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 15px #00ffff;
}

.music-trending-btn {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ff00ff;
    color: #ff00ff;
}

.music-trending-btn:hover {
    background: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 15px #ff00ff;
}

.search-results {
    min-height: 400px;
    margin-bottom: 30px;
}

.search-placeholder {
    text-align: center;
    color: #00ffff;
    font-size: 1.2rem;
    margin: 50px 0;
    text-shadow: 0 0 10px #00ffff;
}

.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.song-item {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.song-item:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-5px);
}

.song-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.song-title {
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #00ffff;
}

.song-artist {
    color: #ff00ff;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.song-actions {
    display: flex;
    gap: 10px;
}

.song-play-btn, .song-favorite-btn, .song-add-btn {
    padding: 8px 12px;
    border: 1px solid #00ffff;
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.song-play-btn:hover {
    background: rgba(0, 255, 255, 0.4);
}

.song-favorite-btn {
    border-color: #ff00ff;
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
}

.song-favorite-btn:hover {
    background: rgba(255, 0, 255, 0.4);
}

.song-add-btn {
    border-color: #ffff00;
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
}

.song-add-btn:hover {
    background: rgba(255, 255, 0, 0.4);
}

.player-controls {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.current-song {
    text-align: center;
    margin-bottom: 20px;
}

#current-song-title {
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #00ffff;
}

#current-song-artist {
    color: #ff00ff;
    font-size: 1rem;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.control-btn {
    padding: 12px 20px;
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 15px #00ffff;
}

.playlist-info {
    text-align: center;
    color: #ffff00;
    font-size: 0.9rem;
}

/* CLEAN & SIMPLE SUPPORT SECTION */
.gallery-support-section {
    margin-top: 50px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.08));
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-support-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGradient 15s linear infinite;
}

/* Support Header - SIMPLE */
.support-header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.support-title {
    font-size: 3rem;
    margin-bottom: 0;
    letter-spacing: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

/* ULTRA-COOL PAYMENT BUTTONS */
.payment-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 25px 35px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    border: 3px solid;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

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

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

.payment-btn:hover::after {
    width: 500px;
    height: 500px;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.payment-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 15px currentColor);
    transition: all 0.3s ease;
}

.payment-btn:hover .payment-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 25px currentColor);
}

.payment-info {
    flex: 1;
    text-align: left;
}

.payment-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.payment-desc {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.payment-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    margin-left: auto;
    font-weight: bold;
}

.payment-btn:hover .payment-arrow {
    color: #fff;
    transform: translateX(10px) scale(1.2);
}

/* Enhanced hover effects for each button */
.paypal:hover {
    border-color: #00ffff;
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.8),
        0 15px 50px rgba(0, 255, 255, 0.5),
        inset 0 0 40px rgba(0, 255, 255, 0.2);
    transform: translateY(-12px) scale(1.05);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(0, 0, 0, 0.95));
}

.cashapp:hover {
    border-color: #00ff00;
    box-shadow: 
        0 0 40px rgba(0, 255, 0, 0.8),
        0 15px 50px rgba(0, 255, 0, 0.5),
        inset 0 0 40px rgba(0, 255, 0, 0.2);
    transform: translateY(-12px) scale(1.05);
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 0, 0, 0.95));
}

.venmo:hover {
    border-color: #ff00ff;
    box-shadow: 
        0 0 40px rgba(255, 0, 255, 0.8),
        0 15px 50px rgba(255, 0, 255, 0.5),
        inset 0 0 40px rgba(255, 0, 255, 0.2);
    transform: translateY(-12px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 0, 0, 0.95));
}

.email:hover {
    border-color: #ffff00;
    box-shadow: 
        0 0 40px rgba(255, 255, 0, 0.8),
        0 15px 50px rgba(255, 255, 0, 0.5),
        inset 0 0 40px rgba(255, 255, 0, 0.2);
    transform: translateY(-12px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.3), rgba(0, 0, 0, 0.95));
}

/* Support Footer - SIMPLE */
.support-footer {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.support-thanks {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 600;
}

.heart-icon {
    font-size: 1.3rem;
    animation: heartPulse 1.5s ease-in-out infinite;
}

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

/* Responsive Support Section */
@media (max-width: 768px) {
    .gallery-support-section {
        padding: 35px 20px;
        margin-top: 30px;
    }

    .support-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .payment-btn {
        padding: 20px 25px;
    }

    .payment-content {
        gap: 15px;
    }

    .payment-name {
        font-size: 1.1rem;
    }

    .payment-desc {
        font-size: 0.75rem;
    }

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

    .support-thanks {
        font-size: 1rem;
        gap: 8px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .neon-title {
        font-size: 3rem;
    }

    .assistant-container {
        grid-template-columns: 1fr;
    }

    .media-container {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .collage {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        max-width: 100%;
        margin: 0 auto;
    }

    .art-item {
        width: 280px;
        height: 200px;
    }

    .control-row {
        flex-direction: column;
        align-items: stretch;
    }

    .video-display {
        height: 300px;
    }

    .media-sidebar {
        grid-template-columns: 1fr;
    }

    .platform-selector {
        flex-direction: column;
    }

    .gallery-contact-section {
        padding: 25px 15px;
        margin-top: 30px;
        border-radius: 15px;
    }

    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 10px;
    }
    
    .payment-btn {
        padding: 25px 20px;
    }
    
    .payment-icon {
        font-size: 3rem;
    }
}
/* Enhanced Music Search Styles */
.search-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 120px;
}

.filter-group label {
    color: #00ffff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group select {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ffff;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.filter-group select:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.search-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    border-left: 3px solid #00ffff;
}

.trending-badge {
    background: linear-gradient(135deg, #ff6b35, #ff4081);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

.song-item.enhanced {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 255, 255, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.song-item.enhanced:hover {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.song-cover {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.5);
}

.song-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-platform {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #00ffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.song-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.song-cover:hover .song-play-overlay {
    opacity: 1;
}

.song-play-overlay button {
    background: #00ffff;
    border: none;
    color: #000;
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.song-play-overlay button:hover {
    background: #fff;
    transform: scale(1.1);
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    color: #00ffff;
    font-size: 14px;
    margin-bottom: 8px;
}

.song-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.song-meta span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.song-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.song-metadata {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.meta-item {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.meta-item.explicit {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border-color: rgba(255, 0, 0, 0.5);
}

.song-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
}

.song-actions button, .song-actions a {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.song-actions button:hover, .song-actions a:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    transform: translateY(-1px);
}

.song-details-btn {
    background: rgba(255, 0, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.3);
    color: #ff00ff;
}

.song-details-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ff00ff;
}

.song-external-btn {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
    color: #ffa500;
}

.song-external-btn:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

/* Song Details Modal */
.song-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.modal-header h3 {
    color: #00ffff;
    margin: 0;
    font-size: 24px;
}

.modal-close {
    background: none;
    border: none;
    color: #ff00ff;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 0, 255, 0.1);
}

.modal-body {
    padding: 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.details-cover {
    position: relative;
}

.details-cover img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.5);
}

.platform-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #00ffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.details-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    color: #fff;
    font-size: 14px;
}

.detail-item strong {
    color: #00ffff;
}

.details-description {
    margin-bottom: 20px;
}

.details-description h4 {
    color: #ff00ff;
    margin-bottom: 10px;
    font-size: 18px;
}

.details-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.streaming-links h4 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 18px;
}

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

.streaming-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.streaming-btn.spotify {
    background: #1db954;
    color: #fff;
}

.streaming-btn.spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
}

.streaming-btn.apple {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.streaming-btn.apple:hover {
    background: #333;
    transform: translateY(-2px);
}

.streaming-btn.youtube {
    background: #ff0000;
    color: #fff;
}

.streaming-btn.youtube:hover {
    background: #ff4444;
    transform: translateY(-2px);
}

.streaming-btn.soundcloud {
    background: #ff7700;
    color: #fff;
}

.streaming-btn.soundcloud:hover {
    background: #ff9933;
    transform: translateY(-2px);
}

/* Responsive Design for Music Search */
@media (max-width: 768px) {
    .search-filters {
        flex-direction: column;
        gap: 10px;
    }

    .filter-group {
        min-width: auto;
        width: 100%;
    }

    .song-item.enhanced {
        flex-direction: column;
        gap: 10px;
    }

    .song-cover {
        align-self: center;
        width: 120px;
        height: 120px;
    }

    .song-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

/* ============================================
   INQUIRY FORM STYLES
   ============================================ */

.inquiry-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.08));
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.inquiry-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotateGradient 15s linear infinite;
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.form-title {
    color: #00ffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    letter-spacing: 2px;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.modern-form {
    position: relative;
    z-index: 1;
}

.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.section-heading {
    color: #ff00ff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #00ffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-family: 'Courier New', 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: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.checkbox-item:hover .checkbox-label {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateX(5px);
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.checkbox-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px currentColor);
}

.checkbox-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border: 2px solid #00ffff;
    border-radius: 50px;
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.5), rgba(255, 0, 255, 0.5));
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.form-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(0, 255, 0, 0.5);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: successPop 0.6s ease;
}

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

.form-success h3 {
    color: #00ff00;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.form-success p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design for Form */
@media (max-width: 768px) {
    .inquiry-form-container {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .section-heading {
        font-size: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        padding: 18px 40px;
        font-size: 1rem;
    }
}

/* Now Playing Section */
.now-playing-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.now-playing-cover {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
    flex-shrink: 0;
}

.now-playing-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.now-playing-info {
    flex: 1;
}

.now-playing-title {
    color: #00ffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.now-playing-artist {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Audio Controls */
.audio-controls-section {
    margin-bottom: 30px;
}

#main-audio-player {
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    outline: none;
}

#main-audio-player::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 25px;
}

/* Playlist Section */
.playlist-section {
    border-top: 2px solid rgba(0, 255, 255, 0.2);
    padding-top: 25px;
}

.playlist-header {
    color: #ff00ff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    letter-spacing: 2px;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.track-item.active {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.track-number {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    min-width: 30px;
}

.track-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.track-info {
    flex: 1;
}

.track-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.track-artist {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.track-play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: none;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.track-item.active .track-play-btn {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
}

/* Responsive */
@media (max-width: 768px) {
    .functional-player-container {
        padding: 20px;
    }
    
    .now-playing-section {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .now-playing-cover {
        width: 150px;
        height: 150px;
    }
    
    .now-playing-title {
        font-size: 20px;
    }
    
    .now-playing-artist {
        font-size: 14px;
    }
    
    .track-item {
        padding: 12px;
    }
    
    .track-number {
        font-size: 16px;
        min-width: 25px;
    }
    
    .track-thumb {
        width: 45px;
        height: 45px;
    }
    
    .track-title {
        font-size: 14px;
    }
    
    .track-artist {
        font-size: 12px;
    }
    
    .track-play-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Connect Section */
.connect-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.connect-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.connect-header {
    text-align: center;
    margin-bottom: 40px;
}

.connect-header h3 {
    color: #00ffff;
    font-size: 28px;
    margin: 0 0 15px 0;
    text-shadow: 0 0 20px #00ffff;
    letter-spacing: 2px;
}

.connect-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

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

.social-link-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.6);
    background: rgba(0, 255, 255, 0.1);
}

.social-link-btn .social-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px currentColor);
}

.social-link-btn .social-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Platform-specific colors */
.social-link-btn.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.social-link-btn.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.social-link-btn.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.social-link-btn.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.social-link-btn.soundcloud:hover {
    border-color: #ff8800;
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.4);
}

.social-link-btn.spotify:hover {
    border-color: #1db954;
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .connect-card {
        padding: 25px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .connect-header h3 {
        font-size: 22px;
    }
}

/* Glassmorphism Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 48px 0 rgba(0, 255, 255, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px currentColor);
}

.card-header h3 {
    flex: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

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

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

/* Trending Card */
.trending-card {
    grid-column: 1 / -1;
}

.trending-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trending-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateX(8px);
}

.trending-rank {
    font-size: 24px;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    min-width: 50px;
    text-align: center;
}

.trending-info {
    flex: 1;
}

.trending-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.trending-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0 0 8px 0;
}

.trending-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.trending-stats span {
    color: rgba(255, 255, 255, 0.7);
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: none;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 255, 255, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 255, 255, 0.6);
}

/* Releases Grid */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    grid-column: 1 / -1;
}

.release-card {
    padding: 0;
    overflow: hidden;
}

.release-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.release-card:hover .release-image img {
    transform: scale(1.1);
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.large-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.6);
}

.large-play-btn:hover {
    transform: scale(1.15);
}

.release-info {
    padding: 20px;
}

.release-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.release-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0 0 12px 0;
}

.release-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
}

.release-meta span {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 8px;
}

/* News Card */
.news-card {
    grid-column: 1 / -1;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 0, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.3);
    transform: translateX(8px);
}

.news-icon {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px currentColor);
}

.news-content {
    flex: 1;
}

.news-content h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.news-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0 0 8px 0;
}

.news-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-style: italic;
}

/* Stats Card */
.stats-card {
    grid-column: 1 / -1;
}

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

.stat-box {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-change {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.stat-change.positive {
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .apple-container {
        padding: 10px;
        gap: 15px;
    }
    
    .glass-card {
        padding: 16px;
        border-radius: 16px;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trending-item {
        flex-direction: column;
        text-align: center;
    }
    
    .trending-rank {
        min-width: auto;
    }
}

/* Remove old FB styles */
.fb-main-container,
.fb-feed-box,
.fb-feed-header,
.fb-header-actions,
.fb-header-btn,
.fb-feed-content,
.fb-feed-footer,
.fb-action-btn,
.messenger-simple,
.messenger-simple-header,
.messenger-simple-body,
.quick-messages-simple,
.quick-msg-simple,
.send-btn-simple {
    /* Removed - using Apple style now */
}

.fb-feed-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.05));
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.fb-feed-header {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    padding: 20px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fb-feed-header h3 {
    color: #00ffff;
    font-size: 24px;
    margin: 0;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 2px;
}

.fb-header-actions {
    display: flex;
    gap: 10px;
}

.fb-header-btn {
    padding: 10px 20px;
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.fb-header-btn:hover {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.fb-feed-content {
    background: #000;
    padding: 0;
}

.fb-feed-content iframe {
    display: block;
    width: 100%;
}

.fb-feed-footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 0, 255, 0.1));
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    border-top: 2px solid rgba(255, 0, 255, 0.4);
}

.fb-action-btn {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid #ff00ff;
    color: #ff00ff;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    font-size: 14px;
}

.fb-action-btn:hover {
    background: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    transform: translateY(-3px);
}

/* Simple Messenger */
.messenger-simple {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(0, 255, 0, 0.05));
    border: 2px solid rgba(0, 255, 0, 0.6);
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.5);
    z-index: 10000;
    overflow: hidden;
}

.messenger-simple.hidden {
    display: none;
}

.messenger-simple-header {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 255, 255, 0.2));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0, 255, 0, 0.4);
}

.messenger-simple-header h3 {
    color: #00ff00;
    margin: 0;
    font-size: 20px;
    text-shadow: 0 0 10px #00ff00;
}

#close-messenger-simple {
    background: none;
    border: none;
    color: #ff00ff;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#close-messenger-simple:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: rotate(90deg);
}

.messenger-simple-body {
    padding: 30px;
}

.messenger-simple-body p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 14px;
}

.quick-messages-simple {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-msg-simple {
    padding: 12px 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    font-size: 14px;
}

.quick-msg-simple:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transform: translateX(5px);
}

#custom-message-simple {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 0, 0.3);
    color: #fff;
    font-family: 'Courier New', monospace;
    border-radius: 8px;
    resize: vertical;
    margin-bottom: 15px;
    font-size: 14px;
    min-height: 100px;
}

#custom-message-simple:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

#custom-message-simple::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-btn-simple {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 255, 255, 0.2));
    border: 2px solid #00ff00;
    color: #00ff00;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.send-btn-simple:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.4), rgba(0, 255, 255, 0.3));
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

/* Remove all old complex styles */
.fb-profile-compact,
.compact-header,
.compact-avatar-glow,
.compact-avatar,
.compact-info,
.compact-name,
.compact-handle,
.compact-stats,
.stat-badge,
.compact-bio,
.compact-actions,
.compact-btn,
.compact-btn-like,
.compact-btn-view,
.compact-btn-message,
.messenger-interface,
.messenger-header,
.messenger-title,
.messenger-icon,
.messenger-close,
.messenger-body,
.messenger-info,
.info-note,
.quick-messages,
.quick-msg-btn,
.custom-message-form,
.send-message-btn,
.send-icon,
.messenger-footer-note,
.enhanced-news-feed,
.feed-header-bar,
.feed-main-title,
.feed-icon-pulse,
.feed-controls,
.feed-control-btn,
.control-icon,
.control-label,
.feed-tabs,
.feed-tab,
.tab-icon,
.feed-embed-wrapper,
.feed-loading,
.loading-spinner,
.feed-quick-actions,
.quick-action-btn,
.action-icon,
.action-text,
.action-count,
.feed-stats-bar,
.stat-item-feed,
.stat-icon,
.stat-info,
.stat-number,
.stat-label,
.social-links-bar,
.social-link,
.social-icon {
    /* Removed - using simpler design */
}

/* Compact Profile Card (Top Left) */
.fb-profile-compact {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.08));
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: sticky;
    top: 20px;
}

.fb-profile-compact:hover {
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
    transform: scale(1.02);
}

.compact-header {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.15));
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    display: flex;
    gap: 15px;
    align-items: center;
}

.compact-avatar-glow {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    animation: avatarGlow 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes avatarGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
    }
}

.compact-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
}

.compact-info {
    flex: 1;
    min-width: 0;
}

.compact-name {
    color: #00ffff;
    font-size: 22px;
    margin-bottom: 3px;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 1px;
}

.compact-handle {
    color: #ff00ff;
    font-size: 14px;
    margin-bottom: 10px;
}

.compact-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(0, 255, 255, 0.15);
    color: #00ffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid rgba(0, 255, 255, 0.4);
}

.compact-bio {
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.compact-actions {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    border: 2px solid;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

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

.compact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.compact-btn span {
    position: relative;
    z-index: 1;
}

.compact-btn-like {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    color: #00ffff;
}

.compact-btn-like:hover {
    background: rgba(0, 255, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.compact-btn-view {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ff00ff;
    color: #ff00ff;
}

.compact-btn-view:hover {
    background: rgba(255, 0, 255, 0.35);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    transform: translateY(-2px);
}

.compact-btn-message {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    color: #00ff00;
}

.compact-btn-message:hover {
    background: rgba(0, 255, 0, 0.35);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    transform: translateY(-2px);
}

/* Messenger Interface */
.messenger-interface {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 0, 0.05));
    border: 2px solid rgba(0, 255, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.messenger-interface.hidden {
    display: none;
}

.messenger-header {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 255, 255, 0.1));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.messenger-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00ff00;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff00;
}

.messenger-icon {
    font-size: 24px;
}

.messenger-close {
    background: none;
    border: none;
    color: #ff00ff;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.messenger-close:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: rotate(90deg);
}

.messenger-body {
    padding: 30px;
}

.messenger-info {
    background: rgba(0, 255, 0, 0.1);
    border-left: 3px solid #00ff00;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
}

.messenger-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 14px;
}

.info-note {
    color: #00ff00 !important;
    font-size: 12px !important;
    font-style: italic;
}

.quick-messages {
    margin-bottom: 25px;
}

.quick-messages h4 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.quick-msg-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.quick-msg-btn:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transform: translateX(5px);
}

.custom-message-form {
    margin-bottom: 20px;
}

.custom-message-form h4 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 16px;
}

#custom-message {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 0, 0.3);
    color: #fff;
    font-family: 'Courier New', monospace;
    border-radius: 8px;
    resize: vertical;
    margin-bottom: 15px;
    font-size: 14px;
}

#custom-message:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

#custom-message::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-message-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 255, 255, 0.2));
    border: 2px solid #00ff00;
    color: #00ff00;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.send-message-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.4), rgba(0, 255, 255, 0.3));
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

.send-icon {
    font-size: 20px;
}

.messenger-footer-note {
    background: rgba(255, 255, 0, 0.1);
    border-left: 3px solid #ffff00;
    padding: 12px;
    border-radius: 5px;
}

.messenger-footer-note p {
    color: #ffff00;
    font-size: 12px;
    margin: 0;
}

/* Enhanced Live News Feed */
.enhanced-news-feed {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(255, 0, 255, 0.08));
    border: 2px solid rgba(255, 0, 255, 0.6);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 1000px;
}

.feed-header-bar {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.25), rgba(0, 255, 255, 0.15));
    padding: 20px 25px;
    border-bottom: 2px solid rgba(255, 0, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.feed-main-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ff00ff;
    font-size: 24px;
    margin: 0;
    text-shadow: 0 0 15px #ff00ff;
    letter-spacing: 2px;
}

.feed-icon-pulse {
    font-size: 28px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px #ff00ff);
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px #ff00ff);
    }
}

.feed-controls {
    display: flex;
    gap: 10px;
}

.feed-control-btn {
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid rgba(0, 255, 255, 0.5);
    color: #00ffff;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 4px;
}

.control-icon {
    font-size: 20px;
}

.control-label {
    font-size: 10px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.feed-control-btn:hover {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Feed Tabs */
.feed-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
    flex-shrink: 0;
}

.feed-tab {
    flex: 1;
    padding: 15px 10px;
    background: rgba(255, 0, 255, 0.05);
    border: none;
    border-right: 1px solid rgba(255, 0, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: bold;
}

.feed-tab:last-child {
    border-right: none;
}

.feed-tab:hover {
    background: rgba(255, 0, 255, 0.15);
    color: #ff00ff;
}

.feed-tab.active {
    background: rgba(255, 0, 255, 0.25);
    color: #ff00ff;
    border-bottom: 3px solid #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.tab-icon {
    font-size: 18px;
}

.feed-embed-wrapper {
    position: relative;
    background: #000;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.feed-embed-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff00ff, #00ffff, transparent);
    animation: scanline 3s linear infinite;
    z-index: 1;
}

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

.feed-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.feed-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 0, 255, 0.2);
    border-top: 4px solid #ff00ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.feed-loading p {
    color: #ff00ff;
    font-size: 14px;
    text-shadow: 0 0 10px #ff00ff;
}

#fb-feed-iframe {
    display: block;
    width: 100%;
    height: 100%;
    flex: 1;
}

.feed-quick-actions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
    flex-shrink: 0;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: rgba(255, 0, 255, 0.05);
    border-right: 1px solid rgba(255, 0, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 6px;
    cursor: pointer;
    border: none;
    font-family: 'Courier New', monospace;
}

.quick-action-btn:last-child {
    border-right: none;
}

.quick-action-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

.action-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px currentColor);
    transition: all 0.3s ease;
}

.quick-action-btn:hover .action-icon {
    transform: scale(1.2);
}

.quick-action-btn[data-action="like"] {
    color: #00ffff;
}

.quick-action-btn[data-action="message"] {
    color: #00ff00;
}

.quick-action-btn[data-action="share"] {
    color: #ff00ff;
}

.quick-action-btn[data-action="follow"] {
    color: #ffff00;
}

.quick-action-btn[data-action="events"] {
    color: #ff6b35;
}

.action-text {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-count {
    font-size: 10px;
    opacity: 0.7;
    font-style: italic;
}

.feed-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 0, 255, 0.15));
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
    flex-shrink: 0;
}

.stat-item-feed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 15px;
    border-right: 1px solid rgba(255, 0, 255, 0.2);
    transition: all 0.3s ease;
}

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

.stat-item-feed:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: scale(1.05);
}

.stat-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px #ff00ff);
    animation: statPulse 3s ease-in-out infinite;
}

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

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    color: #00ffff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px #00ffff;
    font-family: 'Courier New', monospace;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Social Links Bar */
.social-links-bar {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.1));
    flex-shrink: 0;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-3px) rotate(360deg);
}

.social-icon {
    font-size: 24px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 5px currentColor);
}

/* Fullscreen Mode */
.enhanced-news-feed.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    border-radius: 0;
    min-height: 100vh;
}

.enhanced-news-feed.fullscreen .feed-embed-wrapper {
    height: calc(100vh - 400px);
}

.enhanced-news-feed.fullscreen #fb-feed-iframe {
    height: 100%;
}

/* Responsive Design for Facebook Integration */
@media (max-width: 1024px) {
    .fb-integration-container {
        grid-template-columns: 1fr;
    }
    
    .fb-embed-container iframe {
        width: 100% !important;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .fb-profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .fb-action-buttons {
        flex-direction: column;
    }
    
    .fb-btn {
        justify-content: center;
    }
    
    .fb-stats {
        justify-content: center;
    }
    
    .fb-embed-container iframe {
        width: 100% !important;
        height: 500px !important;
    }
}

/* ============================================
   PRICING PACKAGES STYLES
   ============================================ */

.packages-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.package-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGradient 10s linear infinite;
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 60px rgba(0, 255, 255, 0.5);
    border-color: #00ffff;
}

.package-card.featured {
    border-color: #ff00ff;
    box-shadow: 0 8px 40px rgba(255, 0, 255, 0.4);
}

.package-card.featured::after {
    content: '⭐ MOST POPULAR';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.package-title {
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    letter-spacing: 2px;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #ff00ff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-features {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #00ffff;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.feature-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.package-action {
    text-align: center;
    position: relative;
    z-index: 1;
}

.package-btn {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: none;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.package-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.6);
    background: linear-gradient(135deg, #ff00ff, #00ffff);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.pricing-note p {
    color: #00ffff;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .package-card {
        max-width: 350px;
        padding: 25px;
    }

    .package-title {
        font-size: 1.3rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .feature-item {
        padding: 8px 12px;
        gap: 12px;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .package-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ============================================
   PAYMENT MODAL STYLES
   ============================================ */

.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.payment-modal-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.1));
}

.payment-modal-header h3 {
    color: #00ffff;
    margin: 0;
    font-size: 24px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.payment-modal-close {
    background: none;
    border: none;
    color: #ff00ff;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-modal-close:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: rotate(90deg);
}

.payment-modal-body {
    padding: 25px;
}

.payment-modal-body p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.payment-btn-modal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-btn-modal:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.payment-btn-modal.paypal {
    border-color: rgba(0, 255, 255, 0.5);
    color: #00ffff;
}

.payment-btn-modal.cashapp {
    border-color: rgba(0, 255, 0, 0.5);
    color: #00ff00;
}

.payment-btn-modal.venmo {
    border-color: rgba(255, 0, 255, 0.5);
    color: #ff00ff;
}

.payment-icon {
    font-size: 24px;
}

.payment-text {
    flex: 1;
    font-weight: bold;
    font-size: 16px;
}

.payment-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.payment-btn-modal:hover .payment-arrow {
    transform: translateX(5px);
}

.payment-instructions {
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid rgba(255, 255, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.payment-instructions p {
    color: #ffff00;
    font-weight: bold;
    margin-bottom: 10px;
}

.payment-instructions ol {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
}

.payment-instructions li {
    margin-bottom: 5px;
}

.payment-verified-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 255, 255, 0.2));
    border: 2px solid #00ff00;
    color: #00ff00;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.payment-verified-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.4), rgba(0, 255, 255, 0.3));
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

/* File Upload Styles */
.file-upload-area {
    margin: 20px 0;
}

.file-upload-label {
    display: block;
    padding: 30px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
}

.upload-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.upload-text {
    color: #00ffff;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.upload-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.submit-with-proof-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.2));
    border: 2px solid #00ffff;
    color: #00ffff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-with-proof-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.3));
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.submit-with-proof-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   ENHANCED DIGITAL ART GALLERY - NEON BOOTSTRAP DESIGN
   ============================================ */

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.gallery-header .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.title-icon {
    font-size: 2.5rem;
    animation: neonPulse 2s ease-in-out infinite;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
    font-weight: 300;
}

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

/* Gallery Card - Bootstrap-inspired with Neon */
.gallery-card {
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.card-inner {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 255, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.gallery-card:hover .card-inner {
    border-color: #00ffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(0, 255, 255, 0.6),
                0 0 60px rgba(255, 0, 255, 0.4);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.gallery-card:hover .card-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.5);
    animation: neonPulse 2s ease-in-out infinite;
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.card-title {
    font-size: 2rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                 0 0 40px rgba(0, 255, 255, 0.5);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.card-artist {
    font-size: 1.1rem;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
    margin-bottom: 20px;
    font-weight: 300;
}

.card-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid #00ffff;
    color: #00ffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Play Button */
.play-btn {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: none;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.6),
                0 0 40px rgba(255, 0, 255, 0.4);
    background: linear-gradient(135deg, #ff00ff, #00ffff);
}

.play-icon {
    font-size: 1.2rem;
}

/* Card Footer */
.card-footer {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.collection-number {
    color: #00ffff;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.card-status {
    color: #ff00ff;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-image-wrapper {
        height: 300px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .gallery-header .section-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .title-icon {
        font-size: 2rem;
    }
}

/* ============================================
   BOOMIN' ART GALLERY - EPIC NEON ENHANCEMENTS
   ============================================ */

/* Epic gallery grid with neon glow */
.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    padding: 20px !important;
    position: relative;
}

.gallery-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
    animation: galleryGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

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

/* BOOMIN' card dimensions */
.card-image-wrapper {
    height: 320px !important;
    position: relative;
    overflow: hidden;
}

.card-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-image-wrapper:hover::before {
    opacity: 1;
}

/* EPIC card title with neon boom */
.card-title {
    font-size: 1.6rem !important;
    margin-bottom: 10px !important;
    letter-spacing: 3px !important;
    text-shadow:
        0 0 10px rgba(0, 255, 255, 1),
        0 0 20px rgba(0, 255, 255, 0.8),
        0 0 30px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(255, 0, 255, 0.4) !important;
    font-weight: bold !important;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow:
            0 0 10px rgba(0, 255, 255, 1),
            0 0 20px rgba(0, 255, 255, 0.8),
            0 0 30px rgba(0, 255, 255, 0.6),
            0 0 40px rgba(255, 0, 255, 0.4);
    }
    100% {
        text-shadow:
            0 0 15px rgba(255, 0, 255, 1),
            0 0 30px rgba(255, 0, 255, 0.8),
            0 0 45px rgba(255, 0, 255, 0.6),
            0 0 60px rgba(0, 255, 255, 0.4);
    }
}

/* Artist name with neon style */
.card-artist {
    font-size: 1rem !important;
    margin-bottom: 18px !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    color: #ffff00 !important;
}

/* BOOMIN' tags */
.card-tags {
    gap: 10px !important;
    margin-bottom: 25px !important;
}

.tag {
    padding: 6px 15px !important;
    font-size: 0.8rem !important;
    border: 2px solid #00ffff !important;
    background: rgba(0, 255, 255, 0.1) !important;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8) !important;
    animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.9);
    }
}

/* EPIC play button */
.play-btn {
    padding: 15px 35px !important;
    font-size: 1rem !important;
    letter-spacing: 2px !important;
    border: 3px solid #ff00ff !important;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2)) !important;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8) !important;
    box-shadow:
        0 0 20px rgba(255, 0, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

.play-btn:hover {
    transform: scale(1.1) !important;
    box-shadow:
        0 0 40px rgba(255, 0, 255, 0.9),
        0 0 80px rgba(0, 255, 255, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.2) !important;
}

@keyframes buttonGlow {
    0% {
        box-shadow:
            0 0 20px rgba(255, 0, 255, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow:
            0 0 30px rgba(0, 255, 255, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.15);
    }
}

.play-icon {
    font-size: 1.2rem !important;
    animation: iconSpin 4s linear infinite;
}

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

/* Enhanced card footer */
.card-footer {
    padding: 20px !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 255, 255, 0.1)) !important;
    border-top: 2px solid #00ffff !important;
}

.collection-number {
    font-size: 0.9rem !important;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8) !important;
    color: #00ffff !important;
}

.card-status {
    font-size: 0.85rem !important;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.8) !important;
    color: #ff00ff !important;
}

/* BOOMIN' badge */
.card-badge {
    padding: 8px 18px !important;
    font-size: 0.8rem !important;
    top: 20px !important;
    right: 20px !important;
    border: 2px solid #ffff00 !important;
    background: rgba(255, 255, 0, 0.2) !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    animation: badgeBoom 1.5s ease-in-out infinite alternate;
}

@keyframes badgeBoom {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 255, 0, 0.9);
    }
}

/* EPIC gallery header */
.gallery-header {
    margin-bottom: 50px !important;
    text-align: center;
    position: relative;
}

.gallery-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, #ff00ff, #00ffff, transparent);
    animation: headerLineGlow 3s ease-in-out infinite;
}

@keyframes headerLineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    }
}

.title-icon {
    font-size: 2.5rem !important;
    animation: iconBoom 2s ease-in-out infinite;
}

@keyframes iconBoom {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 0, 255, 1);
        transform: scale(1.1);
    }
}

.gallery-subtitle {
    font-size: 1.2rem !important;
    letter-spacing: 3px !important;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.8) !important;
    color: #ffff00 !important;
}

/* BOOMIN' overlay content */
.overlay-content {
    padding: 25px !important;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid #00ffff !important;
}

/* EPIC hover effects */
.gallery-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow:
        0 0 50px rgba(0, 255, 255, 0.8),
        0 0 100px rgba(255, 0, 255, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.3) !important;
    border: 3px solid #ff00ff !important;
}

/* Mobile BOOM */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .card-image-wrapper {
        height: 280px !important;
    }

    .card-title {
        font-size: 1.4rem !important;
    }

    .gallery-subtitle {
        font-size: 1rem !important;
    }
}

/* Tablet BOOM */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Desktop BOOM - 4 columns */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ============================================ */

@media (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 30px 15px 25px 15px;
    }

    .billboard-frame {
        padding: 15px 20px;
    }

    .billboard-content {
        flex-direction: column;
        gap: 10px;
    }

    .billboard-title {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .billboard-tagline {
        font-size: 0.65rem;
        letter-spacing: 1px;
        position: static;
        margin-top: 10px;
        padding: 6px 12px;
    }

    .billboard-decorations {
        gap: 8px;
        font-size: 1.2rem;
    }

    /* Production widget mobile */
    .production-widget-container {
        position: static;
        margin: 15px auto;
        max-width: 100%;
        padding: 0 10px;
    }

    .production-widget {
        padding: 10px 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .widget-section {
        gap: 8px;
    }

    .production-icon, .features-icon {
        font-size: 20px;
    }

    .production-title {
        font-size: 11px;
    }

    .production-price {
        font-size: 14px;
    }

    .features-text {
        font-size: 10px;
    }

    .features-tag {
        font-size: 9px;
        padding: 2px 5px;
    }

    /* Promo banners mobile */
    .promo-banner {
        padding: 15px 20px;
        max-width: 90%;
        margin: 0 auto 15px;
    }

    .promo-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .promo-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-left: 10px;
    }

    .promo-click-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
        margin-left: 0;
        margin-top: 10px;
        display: block;
        width: 100%;
    }

    /* Floating promo cards mobile */
    .promo-floating {
        position: static;
        display: inline-block;
        margin: 10px 5px;
        transform: none;
        animation: none;
    }

    .promo-left, .promo-right {
        left: auto;
        right: auto;
    }

    .promo-card {
        max-width: 180px;
        min-width: 160px;
        padding: 20px 15px;
    }

    .promo-icon {
        font-size: 2.2rem;
    }

    .promo-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .promo-offer {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 15px !important;
    }

    .card-image-wrapper {
        height: 250px !important;
    }

    .card-title {
        font-size: 1.3rem !important;
    }

    .card-artist {
        font-size: 0.9rem !important;
    }

    .card-tags {
        gap: 8px !important;
    }

    .tag {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }

    .play-btn {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
    }

    .card-footer {
        padding: 15px !important;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Support section mobile */
    .gallery-support-section {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .support-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 10px;
    }

    .payment-btn {
        padding: 20px;
    }

    .payment-content {
        gap: 15px;
    }

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

    .payment-name {
        font-size: 1.1rem;
    }

    .payment-desc {
        font-size: 0.75rem;
    }

    .payment-arrow {
        font-size: 1.5rem;
    }

    /* Pricing packages mobile */
    .packages-container {
        padding: 0 15px;
    }

    .package-card {
        max-width: 100%;
        padding: 25px 20px;
    }

    .package-title {
        font-size: 1.3rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .period {
        font-size: 0.85rem;
    }

    .feature-item {
        padding: 10px 15px;
        gap: 12px;
    }

    .feature-icon {
        font-size: 1.3rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .package-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    /* Inquiry form mobile */
    .inquiry-form-container {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .form-title {
        font-size: 1.8rem;
    }

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

    .form-section {
        padding: 20px 15px;
    }

    .section-heading {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .checkbox-label {
        padding: 12px 15px;
    }

    .checkbox-icon {
        font-size: 1.3rem;
    }

    .checkbox-text {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }

    /* Footer mobile */
    .social-media-icons {
        gap: 15px;
    }

    .social-icon {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

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

    .social-label {
        font-size: 0.8rem;
    }

    /* Marquee mobile */
    .marquee-content {
        font-size: 1.2rem;
    }

    /* Navigation mobile */
    .nav-container {
        padding: 20px 15px;
        gap: 15px;
    }

    .nav-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Section titles mobile */
    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .gallery-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    /* Music control button mobile */
    .music-control-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        right: 15px;
    }

    /* General spacing adjustments */
    .content-section {
        padding: 30px 15px;
    }

    /* Form inputs mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Success message mobile */
    .form-success {
        padding: 40px 25px;
    }

    .success-icon {
        font-size: 4rem;
    }

    .form-success h3 {
        font-size: 1.6rem;
    }

    .form-success p {
        font-size: 1rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-floating {
        position: fixed;
        top: 50%;
    }

    .billboard-title {
        gap: 20px;
    }

    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 2.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .billboard-tagline {
        font-size: 0.6rem;
    }

    .promo-text {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .card-title {
        font-size: 1.1rem !important;
    }

    .support-title {
        font-size: 1.6rem;
    }

    .payment-name {
        font-size: 1rem;
    }

    .package-title {
        font-size: 1.1rem;
    }

    .price {
        font-size: 2rem;
    }

    .form-title {
        font-size: 1.5rem;
    }
}
