/**
 * Unsubscribe Records - Main Stylesheet
 * Steampunk/Cyberpunk Aesthetic
 * Colors: Turquoise (#14b8a6), Purple (#8b5cf6), Blue (#3b82f6), Orange (#fb923c)
 */

/* ========================================
   RESET & BASE STYLES
======================================== */

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    background: #0a0e1a;
    color: #c0c0c0;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
}

/* ========================================
   BACKGROUND EFFECTS
======================================== */

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #14b8a6;
    border-radius: 50%;
    box-shadow: 0 0 10px #14b8a6;
    animation: float 20s infinite;
    opacity: 0.6;
}

.particle:nth-child(2n) {
    background: #8b5cf6;
    box-shadow: 0 0 10px #8b5cf6;
    animation-duration: 25s;
}

.particle:nth-child(3n) {
    background: #fb923c;
    box-shadow: 0 0 10px #fb923c;
    animation-duration: 30s;
}

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

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(20, 184, 166, 0.08) 50px, rgba(20, 184, 166, 0.08) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(139, 92, 246, 0.08) 50px, rgba(139, 92, 246, 0.08) 51px);
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

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

/* ========================================
   CONTAINER & LAYOUT
======================================== */

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

/* ========================================
   HEADER & NAVIGATION
======================================== */

header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%);
    border: 3px solid #14b8a6;
    border-radius: 8px;
    padding: 50px;
    margin: 20px auto 40px;
    max-width: 1400px;
    width: 90%;
    position: relative;
    z-index: 1000;
    box-shadow: 
        0 0 40px rgba(20, 184, 166, 0.6),
        0 0 80px rgba(139, 92, 246, 0.4),
        inset 0 0 60px rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
}

/* Brighter animated gears */
.gear {
    position: absolute;
    font-size: 150px;
    opacity: 0.5;
    filter: drop-shadow(0 0 30px currentColor);
}

.gear-1 {
    top: -40px;
    right: -40px;
    color: #fb923c;
    animation: rotate 15s linear infinite;
}

.gear-2 {
    bottom: -50px;
    left: -50px;
    font-size: 200px;
    color: #8b5cf6;
    animation: rotate 20s linear infinite reverse;
}

.gear-3 {
    top: 50%;
    right: 10%;
    font-size: 100px;
    color: #14b8a6;
    animation: rotate 10s linear infinite;
    opacity: 0.3;
}

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

.logo-main {
    font-size: 3.5em;
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 25%, #8b5cf6 50%, #fb923c 75%, #14b8a6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(20, 184, 166, 0.8)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.6));
    margin-bottom: 15px;
    letter-spacing: 3px;
    animation: gradientShift 5s ease infinite;
}

.subtitle {
    color: #14b8a6;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 6px;
    filter: drop-shadow(0 0 15px rgba(20, 184, 166, 1));
    animation: pulse 3s ease-in-out infinite;
    margin-bottom: 30px;
    display: block;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(20, 184, 166, 1));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 25px rgba(20, 184, 166, 1)) drop-shadow(0 0 35px rgba(139, 92, 246, 0.8));
    }
}

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

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    justify-content: center;
}

.nav-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #14b8a6;
    border-color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid #14b8a6;
    color: #14b8a6;
    font-size: 1.5em;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(20, 184, 166, 0.1);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

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

.hero {
    text-align: center;
    padding: 0;
    position: relative;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #14b8a6, #8b5cf6, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    background-size: 200% auto;
}

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

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #14b8a6;
    animation: glitch-1 2s infinite;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #8b5cf6;
    animation: glitch-2 2s infinite;
}

@keyframes glitch-1 {
    0%, 100% { clip: rect(42px, 9999px, 44px, 0); }
    20% { clip: rect(12px, 9999px, 59px, 0); }
    40% { clip: rect(84px, 9999px, 91px, 0); }
    60% { clip: rect(25px, 9999px, 34px, 0); }
    80% { clip: rect(67px, 9999px, 78px, 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(65px, 9999px, 72px, 0); }
    20% { clip: rect(18px, 9999px, 21px, 0); }
    40% { clip: rect(39px, 9999px, 47px, 0); }
    60% { clip: rect(55px, 9999px, 63px, 0); }
    80% { clip: rect(31px, 9999px, 38px, 0); }
}

.tagline {
    font-size: 1.5em;
    color: #a0a0a0;
    margin-bottom: 40px;
}

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

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    position: relative;
    overflow: hidden;
}

.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, height 0.6s;
}

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

.btn-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: #0a0e1a;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.8), 0 5px 15px rgba(20, 184, 166, 0.4);
    border: 2px solid #14b8a6;
}

.btn-primary:hover {
    box-shadow: 0 0 50px rgba(20, 184, 166, 1), 0 0 80px rgba(20, 184, 166, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: #f0f0f0;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 5px 15px rgba(139, 92, 246, 0.4);
    border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
    box-shadow: 0 0 50px rgba(139, 92, 246, 1), 0 0 80px rgba(139, 92, 246, 0.6);
    transform: translateY(-3px);
}

.btn-accent {
    background: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
    color: #0a0e1a;
    box-shadow: 0 0 30px rgba(251, 146, 60, 0.8), 0 5px 15px rgba(251, 146, 60, 0.4);
    border: 2px solid #fb923c;
}

.btn-accent:hover {
    box-shadow: 0 0 50px rgba(251, 146, 60, 1), 0 0 80px rgba(251, 146, 60, 0.6);
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9em;
}

/* ========================================
   BADGES
======================================== */

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2px;
}

.badge-turquoise {
    background: rgba(20, 184, 166, 0.2);
    color: #14b8a6;
    border: 1px solid #14b8a6;
}

.badge-purple {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid #8b5cf6;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.badge-orange {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    border: 1px solid #fb923c;
}

.badge-gray {
    background: rgba(160, 160, 160, 0.2);
    color: #a0a0a0;
    border: 1px solid #a0a0a0;
}

.badge-green {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

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

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    width: 100%;
}

.stat-box {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 3px solid #14b8a6;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(20, 184, 166, 0.6);
    border-color: #8b5cf6;
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    color: #14b8a6;
    text-shadow: 0 0 20px rgba(20, 184, 166, 0.8);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 1.2em;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

/* ========================================
   FEATURE PANELS
======================================== */

.feature-panel {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 3px solid #14b8a6;
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.4);
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   SECTION TITLES
======================================== */

.section-title {
    font-size: 2.5em;
    color: #14b8a6;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(20, 184, 166, 0.6);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3em;
    background: linear-gradient(90deg, #14b8a6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    color: #a0a0a0;
}

/* ========================================
   TRACKS GRID
======================================== */

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.track-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.track-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.track-cover {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(139, 92, 246, 0.1));
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.track-card:hover .track-cover img {
    transform: scale(1.1);
}

.track-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5em;
    color: #14b8a6;
    text-shadow: 0 0 20px rgba(20, 184, 166, 0.6);
}

.track-info {
    padding: 20px;
}

.track-info h4 {
    color: #14b8a6;
    font-size: 1.3em;
    margin-bottom: 8px;
}

.track-info p {
    color: #a0a0a0;
    font-size: 1em;
    margin: 5px 0;
}

.track-info .album-name {
    color: #8b5cf6;
    font-size: 0.9em;
}

.track-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.track-stats {
    display: flex;
    justify-content: space-between;
    color: #a0a0a0;
    font-size: 0.9em;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border: none;
    border-radius: 50%;
    color: #0a0e1a;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.6);
    opacity: 0;
    z-index: 10;
}

.track-card:hover .play-btn {
    opacity: 1;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.8);
}

/* ========================================
   ARTISTS GRID
======================================== */

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

.artist-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.artist-image {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

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

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

.artist-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(139, 92, 246, 0.2));
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.artist-info {
    padding: 20px;
}

.artist-info h3 {
    color: #14b8a6;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.artist-bio {
    color: #a0a0a0;
    line-height: 1.6;
    margin: 15px 0;
}

.artist-stats {
    color: #a0a0a0;
    font-size: 0.9em;
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

/* ========================================
   SERVICES & CARDS
======================================== */

.services-preview,
.artists-preview {
    margin: 80px 0;
}

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

.card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 2px solid rgba(20, 184, 166, 0.5);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #14b8a6, #8b5cf6, transparent);
    animation: scan 2s linear infinite;
}

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

.card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(20, 184, 166, 0.5),
        inset 0 0 30px rgba(139, 92, 246, 0.2);
}

.card-icon {
    font-size: 4em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px currentColor);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 35px currentColor) drop-shadow(0 0 50px currentColor);
    }
}

.card h3 {
    color: #14b8a6;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(20, 184, 166, 0.8);
}

.card p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Artist Preview Image */
.artist-preview-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid #14b8a6;
}

.artist-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FILTERS
======================================== */

.music-filters,
.artist-filters {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid rgba(20, 184, 166, 0.3);
    color: #a0a0a0;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
    color: #14b8a6;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

.filter-controls,
.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.genre-select {
    padding: 10px 15px;
    background: rgba(10, 14, 26, 0.9);
    border: 2px solid rgba(20, 184, 166, 0.3);
    color: #c0c0c0;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    cursor: pointer;
}

.genre-select:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

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

.search-input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(10, 14, 26, 0.9);
    border: 2px solid rgba(20, 184, 166, 0.3);
    color: #c0c0c0;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 1em;
}

.search-input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.results-count {
    color: #a0a0a0;
    margin-bottom: 20px;
    font-style: italic;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

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

.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(10, 14, 26, 0.98) 100%);
    border-top: 3px solid #14b8a6;
    padding: 20px;
    display: none;
    align-items: center;
    gap: 20px;
    z-index: 2000;
    box-shadow: 0 -5px 30px rgba(20, 184, 166, 0.4);
    backdrop-filter: blur(10px);
}

.player-artwork {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #14b8a6;
    flex-shrink: 0;
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(139, 92, 246, 0.2));
    font-size: 2em;
    color: #14b8a6;
}

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

.player-title {
    color: #14b8a6;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    color: #a0a0a0;
    font-size: 0.9em;
}

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

.control-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border: none;
    border-radius: 50%;
    color: #0a0e1a;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.6);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.player-progress {
    flex: 2;
    min-width: 200px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(20, 184, 166, 0.2);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #14b8a6, #8b5cf6);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: #a0a0a0;
    font-size: 0.85em;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #14b8a6;
}

.volume-slider {
    width: 100px;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(20, 184, 166, 0.2);
    border-radius: 3px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #14b8a6;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.6);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #14b8a6;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.6);
}

.close-player-btn {
    background: none;
    border: 2px solid #fb923c;
    color: #fb923c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.close-player-btn:hover {
    background: rgba(251, 146, 60, 0.1);
    box-shadow: 0 0 15px rgba(251, 146, 60, 0.4);
}

/* ========================================
   FORMS
======================================== */

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

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

.form-group label {
    display: block;
    color: #14b8a6;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 14, 26, 0.9);
    border: 2px solid rgba(20, 184, 166, 0.3);
    color: #c0c0c0;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

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

.form-group small {
    display: block;
    color: #a0a0a0;
    font-size: 0.85em;
    margin-top: 5px;
}

.form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(20, 184, 166, 0.3);
}

.form-tab {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: #a0a0a0;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.form-tab:hover,
.form-tab.active {
    color: #14b8a6;
    border-bottom-color: #14b8a6;
}

.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 2px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
}

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

footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 3px solid #14b8a6;
    padding: 60px 0 20px;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #14b8a6;
    font-size: 1.3em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: #a0a0a0;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #14b8a6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 50%;
    color: #14b8a6;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: #14b8a6;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    color: #a0a0a0;
    font-size: 0.9em;
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
    margin: 80px 0;
}

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

@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .tracks-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .music-player {
        flex-wrap: wrap;
        padding: 15px;
        gap: 15px;
    }
    
    .player-progress {
        order: 3;
        width: 100%;
        flex: 1;
    }
}

@media (max-width: 768px) {
    header {
        padding: 30px 20px;
        padding-top: 60px; /* Extra space for hamburger menu */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: relative;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        background: rgba(10, 14, 26, 0.98);
        border: 2px solid #14b8a6;
        border-radius: 8px;
        margin-top: 20px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .logo-main {
        font-size: 2.2em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    .gear {
        font-size: 100px;
    }

    .gear-2 {
        font-size: 140px;
    }
    
    .gear-3 {
        font-size: 80px;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .stat-label {
        font-size: 1em;
    }
    
    .tracks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .feature-panel {
        padding: 30px 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .music-player {
        padding: 15px 10px;
    }
    
    .player-artwork {
        width: 60px;
        height: 60px;
    }
    
    .player-volume {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1.2em;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */

.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.hidden {
    display: none;
}

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #14b8a6;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ========================================
   PRINT STYLES
======================================== */

@media print {
    .background-animation,
    .grid-overlay,
    header,
    footer,
    .music-player,
    .play-btn,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ========================================
   CONTACT PAGE
======================================== */

/* Horizontal Contact Type Cards */
.contact-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.type-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 2px solid rgba(20, 184, 166, 0.5);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #14b8a6, #8b5cf6, transparent);
    animation: scan 2s linear infinite;
}

.type-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(20, 184, 166, 0.5),
        inset 0 0 30px rgba(139, 92, 246, 0.2);
}

.type-card.active {
    border-color: #14b8a6;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(10, 14, 26, 0.95) 100%);
    box-shadow: 
        0 0 40px rgba(20, 184, 166, 0.8),
        inset 0 0 30px rgba(20, 184, 166, 0.2);
}

.type-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 0 20px currentColor);
    animation: iconGlow 3s ease-in-out infinite;
}

.type-card h3 {
    color: #14b8a6;
    font-size: 1.2em;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(20, 184, 166, 0.8);
}

.type-card p {
    color: #a0a0a0;
    font-size: 0.9em;
    margin: 0;
}

/* Contact Container (Form + Sidebar Layout) */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

/* Form Title */
.form-title {
    color: #14b8a6;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(20, 184, 166, 0.8);
}

/* Honeypot Anti-Spam Field */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: rgba(10, 14, 26, 0.6);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0c0c0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
}

.checkbox-label:hover {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #14b8a6;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Info Items */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2em;
    filter: drop-shadow(0 0 10px currentColor);
}

.info-item strong {
    color: #14b8a6;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.info-item p {
    color: #c0c0c0;
    margin: 0;
}

.info-item a {
    color: #14b8a6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.benefits-list li {
    padding: 10px 0;
    color: #c0c0c0;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    transition: all 0.3s ease;
}

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

.benefits-list li:hover {
    color: #14b8a6;
    padding-left: 10px;
    border-bottom-color: rgba(20, 184, 166, 0.3);
}

/* reCAPTCHA Notice */
.recaptcha-notice {
    margin-top: 15px;
    padding: 10px;
    background: rgba(20, 184, 166, 0.05);
    border-radius: 4px;
}

.recaptcha-notice small {
    color: #a0a0a0;
    font-size: 0.85em;
}

.recaptcha-notice a {
    color: #14b8a6;
    text-decoration: none;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 2px solid;
}

.alert-success {
    background: rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
    color: #14b8a6;
}

.alert-success h3 {
    color: #14b8a6;
    margin-bottom: 10px;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #fca5a5;
}

.alert-error h3 {
    color: #ef4444;
    margin-bottom: 10px;
}

.alert ul {
    margin-top: 10px;
    padding-left: 20px;
}

.alert li {
    margin-bottom: 5px;
}

/* Old Contact Layout Styles (Keep for backward compatibility) */

.contact-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-type-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-type-card:hover {
    border-color: #14b8a6;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.3);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.contact-type-card h3 {
    color: #14b8a6;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.contact-type-card p {
    color: #a0a0a0;
    font-size: 0.9em;
    margin: 0;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    max-width: 100%;
}

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

.contact-info-section {
    margin-top: 80px;
}

.contact-info-section .card {
    text-align: center;
}

.contact-info-section .card a {
    color: #14b8a6;
    text-decoration: none;
}

.contact-info-section .card a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .contact-type-card {
        padding: 15px;
    }
    
    .contact-icon {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-type-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .contact-sidebar {
        grid-template-columns: 1fr;
    }
    
    .contact-type-card {
        padding: 20px;
    }
}

/* Additional responsive rules for new contact page */
@media (max-width: 1024px) {
    .contact-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-types {
        grid-template-columns: 1fr;
    }
    
    .type-icon {
        font-size: 3em;
    }
    
    .type-card {
        padding: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .type-card {
        padding: 15px;
    }
    
    .type-icon {
        font-size: 2.5em;
    }
    
    .type-card h3 {
        font-size: 1em;
    }
}