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

:root {
    --primary: #FFD700;
    --secondary: #D4AF37;
    --accent: #FFFFE0;
    --dark: #1A1A1A;
    --darker: #2D2D2D;
    --light: #F8F8F8;
    --gray: #A0A0A0;
    --success: #D4AF37;
    --glow-yellow: 0 0 20px #FFD700, 0 0 40px #D4AF37;
    --gradient-hero: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 50%, #F8F8F8 100%);
    --gradient-text: linear-gradient(135deg, #FFD700, #D4AF37);
    --scanline: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px);
}

body {
    font-family: 'Rajdhani', 'Anton', Impact, Arial Black, sans-serif;
    background: var(--scanline), var(--darker), radial-gradient(ellipse at center, var(--gradient-hero) 0%, var(--dark) 70%);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.4;
    background-size: 100% 4px, auto, cover;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.logo-text, .hero-title, .section-title {
    font-family: 'Rajdhani', 'Anton', Impact, sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--scanline);
    pointer-events: none;
    z-index: -1;
}

html {
    scroll-behavior: smooth;
}

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

/* Visualizer Background */
.visualizer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

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

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Rajdhani', 'Anton', Impact, sans-serif;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0em;
    font-family: 'Rajdhani', Arial Black, sans-serif;
    font-weight: 700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.cart-link {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700 !important;
}

.cart-link::after {
    display: none;
}

.cart-link:hover {
    background: var(--secondary);
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

@keyframes glitch {
    0%, 95% { transform: translate(0); }
    96% { transform: translate(-2px, 2px); }
    97% { transform: translate(2px, -1px); }
    98% { transform: translate(-1px, -2px); }
    99% { transform: translate(1px, 1px); }
    100% { transform: translate(0); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 15s infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-content {
    z-index: 1;
}

.hero-label {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 6rem;
    font-family: 'Rajdhani', 'Anton', Impact, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 1rem 0;
    color: var(--accent);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-location {
    margin: 1.5rem 0;
    font-size: 1rem;
    color: var(--primary);
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Futurama New Release Styles */
.hero-futurama {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.08);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-out 0s both;
}

.new-release-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff006e, #ffbe0b);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
    animation: pulse 2s infinite;
}

.release-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    font-family: 'Anton', Impact, sans-serif;
}

.release-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.spotify-embed-container {
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

.spotify-embed-container iframe {
    display: block;
}

.release-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.release-links .btn {
    min-width: 160px;
    padding: 1rem 2rem;
}

@keyframes glow {
    from { box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3); }
    to { box-shadow: 0 20px 80px rgba(0, 212, 255, 0.5), 0 0 40px rgba(255, 0, 110, 0.2); }
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-family: 'Rajdhani', Arial Black, sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 2px solid var(--accent);
    font-family: 'Rajdhani', Arial Black, sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
}



.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    width: 100%;
}

.social-links-hero {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Anton', Impact, sans-serif;
    color: var(--accent);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: var(--darker);
}

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

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 110, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    overflow: hidden;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

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

.waveform-graphic {
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 1;
}

.wave-bar {
    width: 8px;
    background: var(--primary);
    border-radius: 10px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 40px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 80px; animation-delay: 0.2s; }
.wave-bar:nth-child(3) { height: 60px; animation-delay: 0.4s; }
.wave-bar:nth-child(4) { height: 100px; animation-delay: 0.6s; }
.wave-bar:nth-child(5) { height: 50px; animation-delay: 0.8s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.about-text h2 {
    margin-bottom: 2rem;
}

.bio p {
    margin-bottom: 1.5rem;
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.bio strong {
    color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    border: 1px solid var(--primary);
    transition: transform 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray);
    font-size: 0.9rem;
}

.skills-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light);
    text-align: center;
}

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

.skill-card {
    background: rgba(10, 14, 39, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

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

.skill-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.skill-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Music Section */
.music {
    background: var(--dark);
}

.featured-player {
    background: var(--sketch-texture), rgba(255,255,255,0.05);
    border: 3px solid var(--accent);
    border-radius: 25px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--pencil-shadow), 5px 5px 15px rgba(0,0,0,0.5);
}

.featured-player::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.album-art {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.album-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s;
    cursor: pointer;
}

.album-placeholder:hover {
    transform: scale(1.05) rotate(5deg);
}

.player-info {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.player-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.player-info p {
    color: var(--gray);
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--dark);
    font-size: 2rem;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary);
}

.control-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.time {
    color: var(--gray);
    font-size: 0.9rem;
    min-width: 40px;
}

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

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

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.1s;
    border-radius: 10px;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.volume-control span {
    font-size: 1.2rem;
}

#volumeSlider {
    width: 150px;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

#volumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.discography h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.discography-note {
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.custom-upload-row {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.custom-upload-row label {
    color: var(--gray);
    font-size: 0.9rem;
}

.custom-upload-row input {
    color: var(--light);
}

.tracks-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.track-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.track-card:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
}

.track-card.active {
    border-color: var(--secondary);
    background: rgba(255, 0, 110, 0.1);
}

.track-number {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    min-width: 40px;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    color: var(--light);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.track-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.track-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.track-link-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.6);
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    font-weight: 700;
}

.track-link-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.track-play-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

.track-play-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--gray);
}

/* Track Price & Purchase Buttons */


.streaming-links {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px;
}

.streaming-links h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light);
}

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

.platform-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.platform-btn:hover {
    transform: translateY(-5px);
}

.platform-btn.spotify {
    background: #1DB954;
    color: white;
}

.platform-btn.apple {
    background: #FA243C;
    color: white;
}

.platform-btn.soundcloud {
    background: #FF5500;
    color: white;
}

.platform-btn.youtube {
    background: #FF0000;
    color: white;
}





/* Game Section */


/* Contact Section */
.contact {
    background: var(--darker);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: rgba(10, 14, 39, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--light);
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(10, 14, 39, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--light);
}

.info-card .small {
    font-size: 0.9rem;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.2s;
}

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



/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.footer-section .small {
    font-size: 0.85rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-footer {
    display: flex;
    gap: 1rem;
}

.social-footer a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-footer a:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--gray);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.cart-modal .modal-content {
    max-width: 760px;
}

.payment-modal .modal-content {
    max-width: 720px;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--light);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Cart Styles */
#cartItems {
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-enhancements,
.order-breakdown,
.purchase-history {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 110, 0.04));
}

.order-breakdown h3,
.purchase-history h3 {
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.cart-field-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.cart-field-row input {
    flex: 1;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: var(--light);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
}

.mini-btn {
    padding: 0.6rem 0.9rem;
    min-width: 90px;
}

.cart-meta {
    color: var(--gray);
    font-size: 0.85rem;
}

.breakdown-item,
.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breakdown-item p,
.history-item p {
    color: var(--gray);
    font-size: 0.85rem;
}

.empty-cart {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.cart-item-info h4 {
    color: var(--light);
    margin-bottom: 0.3rem;
}

.cart-item-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
}

#clearCartBtn {
    margin-bottom: 0.8rem;
}

.cart-total {
    display: block;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cart-totals {
    display: grid;
    gap: 0.3rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
}

.total-row.final {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Payment Form */
.payment-form {
    margin-top: 1rem;
}

.checkout-terms {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.checkout-terms label {
    color: var(--gray);
    font-size: 0.9rem;
}

.payment-security {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gray);
}

.payment-routing {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.payment-connect {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.payment-connect-link {
    text-decoration: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.payment-connect-link:hover {
    background: var(--primary);
    color: var(--dark);
}

.payment-success {
    text-align: center;
    padding: 2rem;
}

.success-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.checkout-detailed {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 0.8rem;
    background: rgba(0, 212, 255, 0.06);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.payment-success h3 {
    color: var(--success);
    margin-bottom: 1rem;
}

.payment-success p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    z-index: 10000;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    opacity: 0;
    transition: all 0.4s ease-out;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid var(--primary);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .game-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .game-sidebar h3 {
        grid-column: span 2;
    }

    .game-stats {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .blog-grid,
    .beats-grid,
    .beat-list,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .beat-row {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding-right: 0;
    }

    .beat-row .beat-price {
        margin-right: auto;
    }

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

    .game-sidebar h3,
    .game-stats {
        grid-column: span 1;
    }

    .ball-options {
        grid-template-columns: repeat(7, 1fr);
    }

    .cart-field-row {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
        max-width: 240px;
    }
}

/* Loading Animation */
@keyframes loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: loading 1s ease-in-out infinite;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MYSTERY CRATE - HIDDEN EPK
   ============================================ */
.mystery-crate {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
    padding: 15px;
    background: rgba(10, 14, 39, 0.8);
    border-radius: 15px;
    border: 2px dashed rgba(0, 212, 255, 0.3);
}

.mystery-crate:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

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

@keyframes shake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.crate-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* EPK Panel */
.epk-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--darker);
    z-index: 2001;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid var(--primary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.epk-panel.active {
    right: 0;
}

.close-epk {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 2px solid var(--gray);
    color: var(--gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.close-epk:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: rotate(90deg);
}

.epk-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.epk-header h2 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.epk-tagline {
    color: var(--gray);
    font-size: 0.9rem;
}

.epk-content {
    padding: 1.5rem;
}

.epk-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.epk-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.epk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.epk-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.epk-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.epk-value {
    color: var(--light);
    font-weight: 600;
}

.epk-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.epk-stat {
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.epk-stat .stat-label {
    font-size: 0.75rem;
    color: var(--gray);
}

.epk-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.epk-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.epk-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.epk-link.spotify { background: #1DB954; }
.epk-link.apple { background: #FA243C; }
.epk-link.itunes { background: #FC3C44; }
.epk-link.youtube { background: #FF0000; }
.epk-link.soundcloud { background: #FF5500; }
.epk-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.epk-link.tiktok { background: #000; }
.epk-link.twitter { background: #1DA1F2; }

.epk-bio {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.epk-press {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.press-item {
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.press-quote {
    display: block;
    color: var(--light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.press-source {
    font-size: 0.85rem;
    color: var(--gray);
}

.epk-contact {
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* iTunes button */
.platform-btn.itunes {
    background: #FC3C44;
    color: white;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  z-index: 1001;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}
.cookie-banner.show { transform: translateY(0); }

.cookie-content { 
  max-width: 600px; 
  margin: 0 auto; 
  text-align: center; 
  color: var(--light); 
}
.cookie-content h3 { 
  color: var(--primary); 
  margin-bottom: 0.5rem; 
  font-size: 1.3rem;
  font-family: 'Rajdhani', sans-serif;
}
.cookie-content p { 
  color: var(--gray); 
  margin-bottom: 1.5rem; 
  line-height: 1.5;
  font-size: 0.95rem;
}

.cookie-buttons { 
  display: flex; 
  gap: 1rem; 
  justify-content: center; 
  flex-wrap: wrap; 
}
.cookie-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
}
.cookie-accept {
  background: var(--primary);
  color: var(--dark);
}
.cookie-accept:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--glow-yellow); 
}
.cookie-reject {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-reject:hover { 
  background: var(--primary); 
  color: var(--dark); 
}

@media (max-width: 600px) {
  .cookie-buttons { flex-direction: column; width: 100%; }
  .cookie-btn { width: 100%; }
}
