/* 
Author: James Castro
Current Date: 10/12/2025
Class: Fuego Urbano Radio - Full Dynamic Bilingual Website Styles
Description: Bold urban street culture design with graffiti, fire, and neon effects
*/

/* ============================================
   GLOBAL STYLES AND RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vibrant color scheme for high-energy design */
    --primary-red: #FF0844;
    --primary-gold: #FFD700;
    --electric-blue: #00D9FF;
    --neon-pink: #FF10F0;
    --neon-yellow: #FFEA00;
    --neon-green: #39FF14;
    --deep-purple: #6B0AC9;
    --deep-black: #0A0A0A;
    --off-white: #FFFFFF;
    --dark-gray: #1A1A1A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%23FF0844'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E") 16 16, auto;
}

/* Modern animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 8, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 16, 240, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: modernFlow 20s ease-in-out infinite;
}

@keyframes modernFlow {
    0%, 100% { opacity: 0.8; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.05) rotate(2deg); }
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER STYLES
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.92));
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-red), var(--electric-blue), var(--neon-pink)) 1;
    box-shadow: 0 5px 40px rgba(255, 8, 68, 0.4);
    animation: headerPulse 4s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { box-shadow: 0 5px 40px rgba(255, 8, 68, 0.4); }
    50% { box-shadow: 0 5px 40px rgba(0, 217, 255, 0.4); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 4px solid transparent;
    background: linear-gradient(#0A0A0A, #0A0A0A) padding-box,
                linear-gradient(45deg, var(--primary-red), var(--electric-blue), var(--neon-pink)) border-box;
    box-shadow: 0 0 30px rgba(255, 8, 68, 0.6);
    animation: logoSpin 3s linear infinite;
}

@keyframes logoSpin {
    0% { box-shadow: 0 0 30px rgba(255, 8, 68, 0.6); }
    33% { box-shadow: 0 0 30px rgba(0, 217, 255, 0.6); }
    66% { box-shadow: 0 0 30px rgba(255, 16, 240, 0.6); }
    100% { box-shadow: 0 0 30px rgba(255, 8, 68, 0.6); }
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-red), var(--electric-blue), var(--neon-pink), var(--neon-yellow));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: vibrantFlow 3s ease-in-out infinite;
}

@keyframes vibrantFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-red);
    flex-wrap: wrap;
}

.nav-menu li a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.nav-menu li a:hover {
    color: var(--neon-green);
    transform: translateY(-2px);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--off-white);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(57, 255, 20, 0.2);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.lang-btn.active {
    background: linear-gradient(45deg, var(--primary-red), #FF4444);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px var(--primary-red);
}

.live-btn {
    background: linear-gradient(45deg, var(--primary-red), #FF4444);
    color: var(--off-white);
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 30, 30, 0.4);
}

.live-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 30, 30, 0.6);
}

.live-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.menu-toggle {
    display: none;
    background: linear-gradient(45deg, var(--primary-red), #FF4444);
    border: 2px solid var(--primary-gold);
    color: var(--off-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(15, 52, 96, 0.9)),
        url('media/fuego urbano radio cover  tres NEW LOGO   (1).png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 8, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.hero-logo {
    margin-top: 4rem;
    margin-bottom: 3.5rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(#1a1a2e, #1a1a2e) padding-box,
                linear-gradient(45deg, var(--primary-red), var(--electric-blue), var(--neon-pink), var(--neon-yellow)) border-box;
    box-shadow: 0 0 60px rgba(255, 8, 68, 0.8), 0 0 100px rgba(0, 217, 255, 0.6);
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 80px rgba(255, 8, 68, 1), 0 0 120px rgba(0, 217, 255, 0.8);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 0 0 60px rgba(255, 8, 68, 0.8), 0 0 100px rgba(0, 217, 255, 0.6);
    }
    50% { 
        box-shadow: 0 0 80px rgba(0, 217, 255, 0.8), 0 0 120px rgba(255, 16, 240, 0.6);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-red), var(--electric-blue), var(--neon-pink), var(--neon-yellow));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: vibrantGradient 4s ease infinite;
    line-height: 1.1;
    filter: drop-shadow(0 0 30px rgba(255, 8, 68, 0.5));
}

@keyframes vibrantGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--off-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.live-status-banner {
    background: linear-gradient(45deg, var(--primary-red), #FF4444);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(255, 30, 30, 0.6);
    border: 3px solid var(--primary-gold);
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.live-status-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-status-dot {
    width: 15px;
    height: 15px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
    box-shadow: 0 0 20px var(--neon-green);
}

.live-status-text {
    font-weight: 800;
    font-size: 1.3rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.radio-player-container {
    margin-bottom: 2.5rem;
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 10px 40px rgba(255, 30, 30, 0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.radio-player-title {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--primary-red), #FF4444);
    color: var(--off-white);
    padding: 1.2rem 2.8rem;
    border: 3px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 30, 30, 0.5);
    position: relative;
    overflow: hidden;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 30, 30, 0.7), 0 0 60px var(--neon-green);
    border-color: var(--neon-green);
}

.hero-cta-btn:hover::before {
    left: 100%;
}

.hero-cta-btn.secondary {
    background: linear-gradient(45deg, var(--primary-gold), #FFA500);
    color: var(--deep-black);
    border-color: var(--neon-green);
}

/* ============================================
   GENERAL SECTION STYLES
   ============================================ */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--neon-green), var(--primary-gold));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    color: #CCCCCC;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--primary-red), #FF4444);
    color: var(--off-white);
    padding: 1rem 2.5rem;
    border: 3px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(255, 30, 30, 0.5);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 30, 30, 0.7), 0 0 50px var(--neon-green);
    border-color: var(--neon-green);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.9));
    position: relative;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('media/atardecer urbano -fuego urbano radio -programas .png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.show-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.show-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 25px 25px 0 0;
    transition: transform 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

.show-card:hover .show-image {
    transform: scale(1.05);
}

.show-card .show-title,
.show-card .show-host,
.show-card .show-schedule {
    padding: 0 2.5rem;
    text-align: center;
}

.show-card .show-title {
    padding-top: 1.5rem;
}

.show-card .show-schedule {
    padding-bottom: 2.5rem;
    margin: 0 auto;
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 8, 68, 0.2), transparent);
    transition: left 0.6s ease;
}

.show-card:hover::before {
    left: 100%;
}

.show-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(255, 8, 68, 0.4), 0 0 80px rgba(0, 217, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.show-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.show-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-align: center;
}

.show-host {
    font-size: 1rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.5;
}

.show-schedule {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-red);
    background: rgba(255, 30, 30, 0.2);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    display: block;
    border: 2px solid var(--primary-red);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.show-card:hover .show-schedule {
    background: rgba(57, 255, 20, 0.2);
    color: var(--neon-green);
    border-color: var(--neon-green);
}

/* ============================================
   ARTISTS SECTION
   ============================================ */
.artists-section {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9), rgba(22, 33, 62, 0.8));
    position: relative;
}

.artists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('media/artistas -fuego urbano radio .jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

/* Social Media CTA Section */
.social-media-cta-section {
    margin-bottom: 4rem;
}

.social-media-cta-content {
    background: linear-gradient(135deg, rgba(255, 8, 68, 0.1), rgba(0, 217, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.social-media-cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    border-color: var(--neon-green);
}

.social-cta-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.social-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.social-cta-description {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.social-media-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.social-media-btn i {
    font-size: 1.5rem;
}

.social-media-btn.facebook {
    background: linear-gradient(45deg, #1877F2, #0d5dbf);
    color: white;
    border-color: #1877F2;
}

.social-media-btn.facebook:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
    border-color: var(--neon-green);
}

.social-media-btn.instagram {
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4);
    color: white;
    border-color: #E1306C;
}

.social-media-btn.instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.5);
    border-color: var(--neon-green);
}

.social-media-btn.tiktok {
    background: linear-gradient(45deg, #000000, #25F4EE);
    color: white;
    border-color: #25F4EE;
}

.social-media-btn.tiktok:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 244, 238, 0.5);
    border-color: var(--neon-green);
}

.social-media-btn.youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    color: white;
    border-color: #FF0000;
}

.social-media-btn.youtube:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    border-color: var(--neon-green);
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.9));
}

.events-swiper {
    padding: 2rem 0 4rem;
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-12px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4), 0 0 80px rgba(255, 8, 68, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.event-date {
    background: linear-gradient(45deg, var(--primary-red), #FF4444);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    min-width: 80px;
    border: 2px solid var(--primary-gold);
}

.event-month {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.event-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--neon-green);
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-family: 'Bebas Neue', sans-serif;
}

.event-location {
    font-size: 1rem;
    color: var(--neon-green);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.event-description {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.6;
}

/* ============================================
   SPONSORS SECTION
   ============================================ */
.sponsors-section {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9), rgba(22, 33, 62, 0.8));
}

.sponsors-swiper {
    padding: 2rem 0 4rem;
}

.sponsor-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.sponsor-card:hover {
    transform: translateY(-12px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4), 0 0 80px var(--electric-blue);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.sponsor-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.sponsor-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.sponsor-description {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sponsor-contact {
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sponsor-social, .sponsor-location {
    font-size: 0.95rem;
    color: #999;
}

/* Sponsors Gallery Section - Repurposed for Social Media CTA */
.sponsors-gallery-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.9));
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.news-card:hover {
    transform: translateY(-12px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(255, 8, 68, 0.4), 0 0 80px rgba(0, 217, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.news-image {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-gold));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.news-content {
    padding: 2rem;
}

.news-date {
    font-size: 0.9rem;
    color: var(--neon-green);
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
}

.news-excerpt {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9), rgba(22, 33, 62, 0.8));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    transform: translateY(-12px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4), 0 0 80px rgba(255, 8, 68, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.contact-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.contact-label {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 0.8rem;
}

.contact-link {
    font-size: 1.3rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.contact-link:hover {
    color: var(--neon-green);
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-container h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--off-white);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
footer {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.98), rgba(22, 33, 62, 0.95));
    padding: 4rem 0 2rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-red), var(--electric-blue), var(--neon-pink)) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(57, 255, 20, 0.2);
    border-color: var(--neon-green);
    color: var(--neon-green);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
    padding-left: 5px;
}

.footer-contact p {
    color: #CCCCCC;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
    font-size: 0.95rem;
}

/* ============================================
   SWIPER CUSTOMIZATION
   ============================================ */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 30, 30, 0.8);
    border-color: var(--neon-green);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: var(--primary-gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--neon-green);
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-radius: 0;
        border-left: none;
        border-right: none;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .language-switcher {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-logo-image {
        width: 220px;
        height: 220px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .live-status-banner {
        padding: 1rem 1.5rem;
    }

    .live-status-text {
        font-size: 1rem;
    }

    .radio-player-container {
        padding: 1.5rem;
    }

    .radio-player-title {
        font-size: 1.3rem;
    }

    .hero-cta-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .shows-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .artist-circle {
        width: 140px;
        height: 140px;
    }

    .artist-circle i {
        font-size: 3rem;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        margin: 0 auto 1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 0.4rem;
        padding: 0.6rem 1rem;
    }

    .nav-menu li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Additional breakpoint for larger tablets/small laptops */
@media (min-width: 769px) and (max-width: 1200px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        gap: 0.4rem;
        padding: 0.7rem 1rem;
    }
    
    .nav-menu li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
}

/* ============================================
   CURSOR MUSIC NOTES PARTICLES
   ============================================ */
.music-note-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 20px;
    animation: floatNote 2s ease-out forwards;
}

@keyframes floatNote {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg) scale(0.5);
    }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(255, 8, 68, 0.8);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 215, 0, 0.2);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, var(--primary-red), #FF4444);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    color: var(--off-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 30, 30, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 30, 30, 0.7);
    background: linear-gradient(45deg, var(--neon-green), #39FF14);
    border-color: var(--neon-green);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--electric-blue), var(--neon-pink), var(--neon-yellow));
    z-index: 10001;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px currentColor;
}

/* ============================================
   FORM VALIDATION & FEEDBACK
   ============================================ */
.form-error {
    display: block;
    color: var(--primary-red);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
    animation: shake 0.3s ease;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 8, 68, 0.4);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-success {
    background: rgba(57, 255, 20, 0.15);
    border: 2px solid var(--neon-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--neon-green);
    font-weight: 700;
    animation: slideInUp 0.5s ease;
}

.form-success i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.show-card:nth-child(1) { transition-delay: 0.1s; }
.show-card:nth-child(2) { transition-delay: 0.2s; }
.show-card:nth-child(3) { transition-delay: 0.3s; }
.show-card:nth-child(4) { transition-delay: 0.4s; }

.news-card:nth-child(1) { transition-delay: 0.1s; }
.news-card:nth-child(2) { transition-delay: 0.2s; }
.news-card:nth-child(3) { transition-delay: 0.3s; }

.contact-card:nth-child(1) { transition-delay: 0.1s; }
.contact-card:nth-child(2) { transition-delay: 0.2s; }
.contact-card:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   ENHANCED ACCESSIBILITY
   ============================================ */
*:focus-visible {
    outline: 3px solid var(--neon-green);
    outline-offset: 3px;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-gold);
    color: var(--deep-black);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================
   IMPROVED PERFORMANCE & SMOOTH RENDERING
   ============================================ */
.show-card,
.event-card,
.sponsor-card,
.news-card,
.contact-card {
    will-change: transform, opacity;
}

img {
    max-width: 100%;
    height: auto;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .music-note-particle {
        display: none;
    }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    header,
    .scroll-to-top,
    .scroll-progress,
    .loading-screen,
    .music-note-particle,
    footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}
