/* Page Header Styles */
.page-header {
    padding: 150px 5% 80px;
    text-align: center;
    background: linear-gradient(135deg, #000 0%, #1a0d0d 50%, #000 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid rgba(229, 62, 62, 0.1);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e53e3e, #ffd700, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section, .event-categories {
    padding: 40px 5%;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-container, .category-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.filter-btn, .category-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover, .category-btn:hover,
.filter-btn.active, .category-btn.active {
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    color: #000;
    border-color: transparent;
}

/* Mixes Grid - Same as index page */
.mixes-section {
    padding: 80px 5%;
}

.mixes-section .music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.mix-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.mix-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

.mix-artwork {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mix-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mix-card:hover .mix-artwork img {
    transform: scale(1.1);
}

.mix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mix-card:hover .mix-overlay {
    opacity: 1;
}

.play-btn-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn-large:hover {
    transform: scale(1.1);
}

.mix-info {
    padding: 25px;
}

.mix-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffd700;
}

.mix-meta {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.mix-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.8;
}

.mix-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.stat {
    opacity: 0.7;
}

.mix-actions {
    display: flex;
    gap: 10px;
}

.mix-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    padding: 15px 35px;
}

/* SoundCloud Section */
.soundcloud-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin: 80px auto;
    max-width: 1400px;
}

.soundcloud-player {
    max-width: 1000px;
    margin: 0 auto;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    padding: 60px 5%;
    text-align: center;
    margin: 80px 5% 0;
    border-radius: 30px;
}

.newsletter-content h2 {
    color: #000;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #000;
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form .btn {
    padding: 15px 30px;
    background: #000;
    color: #fff;
}

/* Events Timeline */
.events-timeline {
    max-width: 1200px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.event-date {
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #000;
    font-weight: 800;
    min-width: 80px;
}

.event-date .day {
    font-size: 28px;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    display: block;
    opacity: 0.8;
}

.event-card-horizontal {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.event-card-horizontal:hover {
    transform: translateY(-5px);
    border-color: #e53e3e;
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.2);
}

.event-image {
    width: 300px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.event-details {
    padding: 25px;
    flex: 1;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e53e3e;
}

.event-venue, .event-time {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.event-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.event-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.event-actions {
    display: flex;
    gap: 15px;
}

.event-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Past Events Grid */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.past-event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.past-event-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

.past-event-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.past-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.past-event-card:hover .past-event-image img {
    transform: scale(1.1);
}

.past-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.past-event-card:hover .past-event-overlay {
    opacity: 1;
}

.view-photos-btn {
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-photos-btn:hover {
    transform: scale(1.05);
}

.past-event-info {
    padding: 20px;
}

.past-event-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffd700;
}

.past-event-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

/* Booking Section */
.booking-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 5%;
    margin: 80px 5% 0;
    border-radius: 30px;
    text-align: center;
}

.booking-content {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-subtitle {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 50px;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.booking-item {
    text-align: center;
}

.booking-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffd700;
}

.booking-item p {
    font-size: 14px;
    opacity: 0.8;
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.booking-form-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #e53e3e;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.booking-form select {
    color: #fff;
}

.booking-form option {
    background: #000;
    color: #fff;
}

.contact-direct {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-direct p {
    margin: 10px 0;
    font-size: 16px;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #ffd700;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 5% 60px;
    }
    
    .page-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .filter-section {
        padding: 30px 5%;
    }
    
    .filter-container {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .event-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .event-card-horizontal {
        flex-direction: column;
    }
    
    .event-image {
        width: 100%;
        height: 200px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .mixes-section .music-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .soundcloud-embed {
        padding: 20px;
    }
    
    .soundcloud-embed iframe {
        height: 250px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .booking-form-container {
        padding: 25px;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .load-more-section {
        margin-top: 40px;
    }
    
    .soundcloud-section {
        margin: 60px 5% 0;
        padding: 40px 20px;
    }
    
    .soundcloud-player iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .filter-container, .category-container {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn, .category-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 200px;
        text-align: center;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 5% 50px;
    }
    
    .mixes-section {
        padding: 60px 5%;
    }
    
    .soundcloud-embed {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .soundcloud-embed iframe {
        height: 200px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .load-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Dynamic Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 80%, #e53e3e 0%, transparent 50%), 
                radial-gradient(circle at 80% 20%, #ffd700 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, #0ea5e9 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    opacity: 0.1;
}

@keyframes gradientShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 35px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Social Navigation */
.social-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav-menu li {
    margin: 20px 0;
}

.mobile-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 20px;
    border-radius: 10px;
}

.mobile-nav-menu a:hover {
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    color: #000;
    transform: scale(1.05);
}

.mobile-social-nav {
    display: flex;
    gap: 20px;
}

.mobile-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-social-btn:hover {
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    color: #000;
    transform: scale(1.1);
}

.social-nav-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

.hero-main-image {
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-person-image {
    max-width: 120%;
    height: auto;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero {
        height: 75vh;
        min-height: 450px;
    }
    
    .hero-person-image {
        max-width: 115%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-person-image {
        max-width: 110%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 30vh;
        min-height: 350px;
    }
    
    .hero-person-image {
        max-width: 125%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    padding: 0 5%;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e53e3e, #ffd700, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(229, 62, 62, 0.5)); }
    50% { filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.5)); }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #0ea5e9;
}

.btn-secondary:hover {
    background: #0ea5e9;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
}

/* Sections */
.section {
    padding: 120px 5%;
    max-width: 1600px;
    margin: 0 auto;
    width: 95%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #e53e3e;
    opacity: 0.7;
}

.section-subtitle {
    font-size: 20px;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.soundcloud-embed {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.soundcloud-embed:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

.soundcloud-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

/* Mobile Responsive for Music Grid */
@media (max-width: 1400px) {
    .music-grid {
        gap: 30px;
    }
    
    .soundcloud-embed {
        padding: 25px;
    }
    
    .soundcloud-embed iframe {
        height: 350px;
    }
}

@media (max-width: 1200px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 25px;
    }
    
    .soundcloud-embed iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .music-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 20px;
    }
    
    .soundcloud-embed {
        padding: 20px;
    }
    
    .soundcloud-embed iframe {
        height: 250px;
    }
}

.track-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.track-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

.track-artwork {
    height: 250px;
    background: linear-gradient(135deg, #e53e3e, #ffd700, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #000;
    position: relative;
    overflow: hidden;
}

.track-artwork::after {
    content: '▲';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: rgba(0, 0, 0, 0.3);
}

.track-artwork::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.track-info {
    padding: 25px;
}

.track-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffd700;
}

.track-meta {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.track-actions {
    display: flex;
    gap: 15px;
}

.play-btn {
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    border: none;
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(20px);
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: #e53e3e;
    box-shadow: 0 30px 60px rgba(229, 62, 62, 0.2);
}

.event-flyer {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.event-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-flyer img {
    transform: scale(1.05);
}

.event-flyer-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.event-details {
    padding: 30px;
}

.event-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e53e3e;
}

.event-venue {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.event-btn {
    background: transparent;
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: #0ea5e9;
    color: #000;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 120px 5%;
    background: linear-gradient(135deg, #000 0%, #1a0d0d 50%, #000 100%);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53e3e, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 28px;
    font-weight: 800;
    transition: all 0.4s ease;
    position: relative;
}

.contact-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.4);
}

.contact-btn:first-child::before {
    content: '▲';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 16px;
    color: #0ea5e9;
}

/* Audio Visualizer */
.visualizer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e53e3e, #ffd700, #0ea5e9, #ffd700, #e53e3e);
    background-size: 400% 100%;
    animation: visualize 2s linear infinite;
    z-index: 1001;
}

@keyframes visualize {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .social-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-left, .hero-right {
        flex: none;
    }
    
    .hero-logo {
        max-height: 300px;
    }
    
    .hero-image img {
        max-height: 400px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .about {
        padding: 40px 30px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-links {
        gap: 20px;
    }
    
    .contact-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .music-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-right {
        gap: 15px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}