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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #FFD23F;
    --neon-green: #00FF88;
    --neon-pink: #FF0080;
    --neon-cyan: #00FFFF;
    --cyber-blue: #0080FF;
    --tropical-green: #06D6A0;
    --tropical-blue: #118AB2;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-light: #0a0a0f;
    --bg-tropical: linear-gradient(135deg, #FF6B35, #F7931E, #FFD23F);
    --bg-cyber: linear-gradient(135deg, #0a0a0f, #1a0f1a, #0f1a1a);
    --gradient-festival: linear-gradient(135deg, #00FF88, #FF0080, #00FFFF, #FFD23F);
    --shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
    --shadow-pink: 0 8px 32px rgba(255, 0, 128, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-cyber);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: aurora 8s ease-in-out infinite alternate;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(255, 0, 128, 0.2), rgba(0, 255, 255, 0.2));
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--neon-green);
    box-shadow: 0 2px 20px rgba(0, 255, 136, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    background: var(--gradient-festival);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: festival-glow 3s ease-in-out infinite alternate;
}

@keyframes festival-glow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.7)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.7)); }
    100% { filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.7)); }
}

.logo .tagline {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 10px var(--neon-cyan);
    animation: pulse-cyan 2s ease-in-out infinite alternate;
}

@keyframes pulse-cyan {
    0% { text-shadow: 0 0 10px var(--neon-cyan); }
    100% { text-shadow: 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-menu a:hover {
    background: var(--gradient-festival);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: var(--bg-cyber);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 128, 0.3) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 210, 63, 0.1) 100%);
    z-index: 1;
    animation: rave-lights 4s ease-in-out infinite alternate;
}

@keyframes rave-lights {
    0% { opacity: 0.6; }
    100% { opacity: 0.9; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 128, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.palm-tree {
    position: absolute;
    width: 150px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><rect x="45" y="80" width="10" height="70" fill="%2306D6A0"/><ellipse cx="50" cy="70" rx="45" ry="25" fill="%2306D6A0" opacity="0.8"/><ellipse cx="50" cy="60" rx="40" ry="20" fill="%2306D6A0" opacity="0.9"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    animation: sway 4s ease-in-out infinite;
}

.palm-1 {
    left: 10%;
    top: 20%;
    animation-delay: -1s;
}

.palm-2 {
    right: 15%;
    top: 10%;
    animation-delay: -2s;
}

.sun {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

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

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

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    background: var(--gradient-festival);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    animation: title-rave 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes title-rave {
    0% { 
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8)) drop-shadow(0 0 40px rgba(255, 0, 128, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 128, 0.8)) drop-shadow(0 0 50px rgba(0, 255, 255, 0.4));
        transform: scale(1.02);
    }
    100% { 
        filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 45px rgba(255, 210, 63, 0.4));
        transform: scale(1.01);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--neon-cyan);
    position: relative;
    z-index: 2;
    animation: subtitle-pulse 2.5s ease-in-out infinite alternate;
}

@keyframes subtitle-pulse {
    0% { text-shadow: 0 0 15px var(--neon-cyan); }
    100% { text-shadow: 0 0 25px var(--neon-cyan), 0 0 35px var(--neon-pink); }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-festival);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-button::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.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF0080, #00FFFF, #00FF88);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.6), 0 0 40px rgba(0, 255, 136, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.cta-secondary {
    background: transparent;
    border: 3px solid var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.cta-secondary:hover {
    background: var(--neon-green);
    color: var(--text-dark);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.7);
}

.cta-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

/* Sections */
.section {
    padding: 80px 0;
    background: var(--bg-cyber);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-tropical {
    background: var(--bg-cyber);
    position: relative;
}

.section-tropical::before {
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 210, 63, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.2) 0%, transparent 60%);
}

.section-title {
    text-align: center;
    background: var(--gradient-festival);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    animation: section-glow 4s ease-in-out infinite alternate;
}

@keyframes section-glow {
    0% { filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 0, 128, 0.6)); }
    100% { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6)); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-festival);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    animation: line-pulse 3s ease-in-out infinite alternate;
}

@keyframes line-pulse {
    0% { width: 100px; box-shadow: 0 0 15px rgba(0, 255, 136, 0.5); }
    100% { width: 120px; box-shadow: 0 0 25px rgba(255, 0, 128, 0.7); }
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Biography Section */
.bio-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.bio-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.bio-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

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

.bio-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.bio-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Music Section */
.album-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.album-cover .cover-placeholder {
    height: 300px;
    background: var(--bg-tropical);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.track-highlights {
    margin: 2rem 0;
}

.track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.track-name {
    font-weight: 600;
    color: var(--primary-color);
}

.track-desc {
    font-style: italic;
    color: var(--text-dark);
}

.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.streaming-btn {
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.streaming-btn:hover {
    background-color: var(--tropical-green);
    transform: translateY(-2px);
}

.singles-section {
    margin-top: 4rem;
}

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

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

.single-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.single-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.video-card.featured {
    grid-column: span 2;
}

.video-placeholder {
    height: 200px;
    background: var(--bg-tropical);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    position: relative;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-categories {
    margin-bottom: 2rem;
    text-align: center;
}

.category-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 300px;
}

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

.gallery-item .image-placeholder {
    height: 100%;
    background: linear-gradient(45deg, var(--tropical-green), var(--tropical-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

/* Contact Section */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-card.main {
    background: var(--bg-tropical);
    color: white;
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-card.main h3 {
    color: white;
}

.contact-card h3:not(.main h3) {
    color: var(--primary-color);
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 25px;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--tropical-green);
    color: white;
    transform: translateY(-2px);
}

.social-section {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link.instagram {
    background: linear-gradient(45deg, #E4405F, #F77737);
    color: white;
}

.social-link.facebook {
    background: #3B5998;
    color: white;
}

.social-link.spotify {
    background: #1DB954;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-tip {
    font-style: italic;
    color: var(--text-dark);
    margin-top: 1rem;
}

/* Booking Section */
.booking-content {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.booking-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.booking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.booking-details,
.what-to-expect {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.booking-details h4,
.what-to-expect h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.booking-details ul {
    list-style: none;
    padding-left: 0;
}

.booking-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.booking-details li::before {
    content: "🎵 ";
    margin-right: 0.5rem;
}

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

.expectation-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
}

.expectation-card .icon {
    font-size: 2rem;
}

.expectation-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.booking-cta {
    text-align: center;
    background: var(--bg-tropical);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.booking-cta h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Releases Section */
.releases-timeline {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.release-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.release-item.featured {
    background: var(--bg-tropical);
    color: white;
}

.release-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.release-item.featured .release-year {
    color: white;
}

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

.release-item.featured .release-content h3 {
    color: white;
}

.release-type {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.future-releases {
    text-align: center;
    background: rgba(6, 214, 160, 0.1);
    padding: 3rem;
    border-radius: 20px;
}

.future-releases h3 {
    color: var(--tropical-green);
    margin-bottom: 1.5rem;
}

/* Press Section */
.press-content {
    max-width: 1000px;
    margin: 0 auto;
}

.press-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.press-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.press-release {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.press-release h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.press-text {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.press-resources {
    margin-bottom: 3rem;
}

.press-resources h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

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

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.resource-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.press-contact {
    text-align: center;
    margin-bottom: 3rem;
}

.press-contact h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-box {
    background: var(--bg-tropical);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.contact-box a {
    color: var(--accent-color);
    font-weight: 600;
}

.interview-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.interview-info h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    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(--accent-color);
    margin-bottom: 1rem;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .album-showcase {
        grid-template-columns: 1fr;
    }
    
    .video-card.featured {
        grid-column: span 1;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
    
    .bio-sections,
    .singles-grid,
    .video-grid,
    .contact-cards,
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

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

.section {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.cta-button:hover {
    animation: bounce 0.6s;
}

/* Festival/Rave Effects */
.laser-beam {
    position: absolute;
    width: 2px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, var(--neon-green), transparent);
    animation: laser-sweep 6s linear infinite;
}

@keyframes laser-sweep {
    0% { left: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.festival-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-pink);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

@keyframes particle-float {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.beat-pulse {
    animation: beat 0.6s ease-in-out infinite alternate;
}

@keyframes beat {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-cyber);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-festival);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FF0080, #00FFFF);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.7);
}
