/* Performance optimized CSS for Rhythm Boduberu */

/* Global scrollbar hiding */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

/* Font Face Declarations */
@font-face {
    font-family: 'Faruma';
    src: url('Fonts/Faruma.ttf') format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat-Medium.ttf') format('truetype');
    font-display: swap;
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-display: swap;
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat-Bold.ttf') format('truetype');
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-display: swap;
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/Montserrat-Black.ttf') format('truetype');
    font-display: swap;
    font-weight: 900;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-color: #f5d000;
    --hover-color: #fced98;
    --active-color: #E6B800;
    --text-color: #2b2b2b;
    --bg-opacity: rgba(31, 31, 31, 0.0);
    --hover-color2: #3a3a3a;
    --active-color2: #111111;
}

/* Keyframes */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideIn {
    0% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes spin-and-scale {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1); }
}

@keyframes spin-and-scale-smooth {
    0% { transform: rotate(0deg); width: 80px; height: 80px; }
    25% { transform: rotate(90deg); width: 200px; height: 200px; }
    50% { transform: rotate(180deg); width: 800px; height: 800px; }
    75% { transform: rotate(270deg); width: 2400px; height: 2400px; }
    100% { transform: rotate(360deg); width: 4000px; height: 4000px; }
}

@keyframes slideLeft {
    0% { transform: translateX(0) translateZ(0); }
    100% { transform: translateX(-100vw) translateZ(0); }
}

@keyframes slideRight {
    0% { transform: translateX(-100vw) translateZ(0); }
    100% { transform: translateX(0) translateZ(0); }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2b2b2b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 80px;
    height: 80px;
    animation: spin-and-scale 3s linear infinite;
    transition: none;
    position: relative;
    z-index: 2;
}

.loading-logo.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.loading-screen.fade-out .loading-logo {
    animation: spin-and-scale-smooth 1.5s ease-out infinite;
}

/* Pattern Container */
.pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.25;
    transition: opacity 0.6s ease-out;
    will-change: opacity;
    transform: translateZ(0);
}

.pattern-container.fade-out {
    opacity: 0;
}

.pattern-line {
    position: absolute;
    height: 40px;
    width: 300vw;
    background-image: url('../src/repeatp.svg');
    background-repeat: repeat-x;
    background-size: auto 40px;
    left: -100vw;
    will-change: transform;
    transform: translateZ(0);
}

.pattern-line:nth-child(odd) {
    animation: slideLeft 10s linear infinite;
}

.pattern-line:nth-child(even) {
    animation: slideRight 10s linear infinite;
}

/* Body Styles */
body {
    font-family: 'Montserrat', 'SF-Pro', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #2b2b2b;
    color: var(--primary-color);
    animation: fadeIn 0.5s ease-in-out;
    overscroll-behavior: none;
    touch-action: pan-x pan-y;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Video and Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.8;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../src/Background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    opacity: 0.8;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%),
        rgba(245, 208, 0, 0.15);
    z-index: -1;
}

/* Main Section */
.main-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.image-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-in-out;
}

.image-container img {
    max-width: 160px;
    height: auto;
    border-radius: 10px;
    animation: fadeIn 0.5s ease-in-out;
}

/* Containers */
.container {
    text-align: center;
    position: relative;
    max-width: 250px;
    width: 100%;
    padding: 10px;
    background: var(--bg-opacity);
    border-radius: 10px;
    transition: transform 0.3s ease;
    animation: slideIn 0.5s ease-in-out;
}

.container2 {
    text-align: center;
    position: relative;
    max-width: 250px;
    width: 100%;
    padding: 10px;
    background: #24242400;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.container:hover,
.container2:hover {
    transform: scale(1.02);
}

/* Link Buttons */
.link-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 93%;
    min-height: 30px;
    height: auto;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color), #ffed4e);
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', 'SF-Pro', Arial, sans-serif;
}

.link-button2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 93%;
    max-height: 30px;
    height: auto;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    background-color: #29292947;
    outline-color: #f5d000;
    outline-style: dashed;
    outline-width: 0.01cap;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', 'SF-Pro', Arial, sans-serif;
}

.link-button img,
.link-button2 img {
    display: block;
    max-width: 120px;
    object-fit: contain;
}

.link-button:hover {
    background-color: var(--hover-color);
}

.link-button:active {
    background-color: var(--active-color);
    transform: scale(0.95);
}

.link-button2:hover {
    background-color: var(--hover-color2);
}

.link-button2:active {
    background-color: var(--active-color2);
    transform: scale(0.95);
}

/* Footer */
footer {
    position: relative;
    text-align: center;
    color: var(--primary-color);
    font-size: 10px;
    font-family: 'Montserrat', 'SF-Pro', Arial, sans-serif;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-family: 'Montserrat', 'SF-Pro', Arial, sans-serif;
}

footer a:hover {
    text-decoration: underline;
}

/* Booking Section */
.booking-section {
    position: relative;
    min-height: 600px;
    padding: 80px 40px;
    background: #1a1a1a;
    overflow: hidden;
}

.booking-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../src/s2bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.booking-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
}

/* Calendar Styles */
.calendar-container {
    background: rgba(31, 31, 31, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-header h3 {
    color: #f5d000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.calendar-nav {
    background: rgba(245, 208, 0, 0.1);
    border: 2px solid #f5d000;
    color: #f5d000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #f5d000;
    color: #1f1f1f;
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-header {
    text-align: center;
    color: #f5d000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day:hover:not(.booked):not(.empty) {
    background: rgba(245, 208, 0, 0.2);
    transform: scale(1.05);
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.today {
    border: 2px solid #f5d000;
    font-weight: 700;
}

.calendar-day.booked {
    background: rgba(128, 128, 128, 0.4);
    color: #888;
    cursor: pointer;
    position: relative;
    border: 2px solid #f5d000;
}

.calendar-day.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #888;
    transform: translateY(-50%);
}

.calendar-day.past {
    background: rgba(128, 128, 128, 0.4);
    color: #666;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.past::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #666;
    transform: translateY(-50%);
}

.calendar-day.special-event {
    background: linear-gradient(135deg, rgba(245, 208, 0, 0.3) 0%, rgba(255, 165, 0, 0.3) 100%);
    border: 3px solid #f5d000;
    color: #f5d000;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(245, 208, 0, 0.5);
}

.calendar-day.special-event::after {
    content: '★';
    position: absolute;
    top: 3px;
    right: 5px;
    font-size: 0.7rem;
    color: #f5d000;
    background: none;
    height: auto;
    transform: none;
    left: auto;
}

.calendar-day.special-event:hover {
    box-shadow: 0 0 25px rgba(245, 208, 0, 0.8);
    transform: scale(1.1);
}

/* Booking Info Styles */
.booking-info {
    text-align: left;
    color: #fff;
}

.booking-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #f5d000;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.booking-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.booking-season {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ccc;
    margin: 0 0 35px 0;
    font-style: italic;
}

.book-now-btn {
    background: linear-gradient(135deg, #f5d000 0%, #e6b800 100%);
    color: #1f1f1f;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 208, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 208, 0, 0.6);
    background: linear-gradient(135deg, #ffd700 0%, #f5d000 100%);
}

.book-now-btn:active {
    transform: translateY(-1px);
}

.booking-contact {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #aaa;
}

/* Event Details Modal */
.event-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.event-modal.active {
    display: flex;
}

.event-modal-content {
    background: #1f1f1f;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    border: 2px solid #f5d000;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.event-modal-content h3 {
    color: #f5d000;
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.event-modal-content .event-date {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.event-modal-content .event-details {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.event-modal-content .close-modal {
    background: #f5d000;
    color: #1f1f1f;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-modal-content .close-modal:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .booking-container {
        grid-template-columns: 400px 1fr;
        gap: 40px;
    }
    
    .booking-title {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calendar-container {
        max-width: 500px;
        margin: 0 auto;
        order: 2;
    }
    
    .booking-info {
        text-align: center;
        order: 1;
    }
    
    .booking-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .booking-section {
        padding: 50px 20px;
    }
    
    .calendar-container {
        padding: 20px;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-subtitle {
        font-size: 1.2rem;
    }
    
    .calendar-grid {
        gap: 5px;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
}

/* Music Section */
.music-section {
    min-height: 70vh;
    padding: 60px 20px;
    background: #1f1f1f;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background-image: url('../src/s2bg.jpg');
    background-size: calc(100% + 6px) calc(100% + 6px);
    background-position: -3px -3px;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Music Tiles Container */
.music-tiles-container {
    overflow: hidden;
    padding: 20px 0;
    max-width: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    touch-action: pan-x;
}

/* Owl Carousel */
.owl-carousel {
    display: block !important;
    width: 100%;
    touch-action: pan-x;
}

.owl-carousel.owl-loaded {
    display: block !important;
}

.owl-stage-outer {
    overflow: visible;
    width: 100%;
    touch-action: pan-x;
}

.owl-stage {
    display: flex !important;
    align-items: center;
    width: 100%;
    touch-action: pan-x;
}

.owl-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
}

.owl-item.center .music-tile,
.music-tile.center-item {
    transform: scale(1.05);
    z-index: 2;
}

.owl-item.center .music-tile:hover,
.music-tile.center-item:hover {
    transform: scale(1.05) translateY(-10px);
}

.owl-nav {
    display: none !important;
}

.owl-dots {
    display: none !important;
}

/* Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(64, 64, 64, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(80, 80, 80, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Indicators */
.tile-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 6px;
    position: relative;
    height: 20px;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    z-index: 1;
}

.indicator-dot.active {
    background: var(--primary-color);
    transform: scale(1.8);
    box-shadow: 0 0 8px rgba(245, 208, 0, 0.6);
    z-index: 2;
}

.indicator-dot.next-active,
.indicator-dot.prev-active {
    transform: scale(1.3);
    background: rgba(245, 208, 0, 0.6);
}

/* Music Tiles */
.music-tile {
    width: 300px;
    height: 400px;
    margin-right: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: normal;
    overflow: hidden;
    position: relative;
    background: transparent;
    flex: 0 0 300px;
    display: block !important;
    visibility: visible !important;
}

.music-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(245, 208, 0, 0.2);
}

.custom-player {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: transparent;
}

.track-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Tile Info Banner */
.tile-info-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), #ffed4e);
    padding: 12px 16px;
    z-index: 3;
    border-radius: 0 0 15px 15px;
    height: auto;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                border-radius 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                justify-content 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tile-info-banner.playing {
    height: 265px;
    padding: 16px;
    border-radius: 15px 15px 0 0;
    justify-content: flex-start;
}

.tile-title {
    font-size: 1.2rem;
    color: #2b2b2bcc;
    margin: 0 0 4px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.tile-artist {
    font-size: 0.9rem;
    color: #2b2b2bcc;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.1;
}

.tile-form {
    font-size: 0.9rem;
    color: #2b2b2bcc;
    margin: 0 0 5px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    padding-bottom: 4px;
}

.tile-original {
    font-size: 0.9rem;
    color: #2b2b2bcc;
    margin: 0 0 2px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
}

/* Play Overlay and Button */
.custom-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-play-overlay.playing {
    background: rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.custom-play-btn {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ffed4e);
    color: #1f1f1f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(245, 208, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.custom-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
    border-radius: 50%;
}

.custom-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(245, 208, 0, 0.6);
}

.custom-play-btn:active {
    transform: scale(0.95);
}

.custom-play-btn svg {
    width: 30px;
    height: 30px;
    z-index: 1;
}

.custom-play-btn.playing {
    width: 50px;
    height: 50px;
    left: 20px;
    bottom: 75px;
    position: absolute;
    margin: 0;
    z-index: 5;
    pointer-events: auto;
    background: linear-gradient(135deg, #1f1f1f, #333333);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(31, 31, 31, 0.4);
}

.custom-play-btn.playing svg {
    width: 20px;
    height: 20px;
}

.custom-play-btn.playing:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(31, 31, 31, 0.6);
    background: linear-gradient(135deg, #2a2a2a, #444444);
}

/* SoundCloud Player */
.soundcloud-player {
    width: 100%;
    height: 200px;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    background: transparent;
    pointer-events: auto;
}

.soundcloud-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 15px 15px;
    background: transparent;
    pointer-events: auto;
}

/* Join Section */
.join-section {
    min-height: 70vh;
    padding: 60px 20px;
    background: #1f1f1f;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background-image: 
        linear-gradient(to left, rgba(83, 83, 83, 0.767) 0%, rgba(128, 128, 128, 0) 100%),
        url('../src/s3bg.jpg');
    background-size: 
        100% 100%,
        calc(100% + 6px) calc(100% + 6px);
    background-position: 
        0 0,
        -3px -3px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.join-content {
    max-width: 500px;
    width: 100%;
    text-align: right;
    align-items: right;
    padding: 40px;
    background: transparent;
    border-radius: 15px;
    margin-right: 40px;
}

.join-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-content p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0 0 40px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: right;
}

.apply-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2b2b2b, #444444);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(245, 208, 0, 0.1));
    border-radius: 8px;
}

.apply-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #333333, #555555);
    border-color: var(--hover-color);
    color: var(--hover-color);
}

.apply-button:active {
    transform: translateY(-1px);
}

/* Sponsorship Section */
.sponsorship-section {
    min-height: 70vh;
    padding: 60px 20px;
    background: #1f1f1f;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.418) 0%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(rgba(0, 0, 0, 0.459), rgba(0, 0, 0, 0.521)),
        url('../src/spscin.png');
    background-size: 
        100% 100%,
        100% 100%,
        cover;
    background-position: 
        0 0,
        0 0,
        center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sponsorship-content {
    max-width: 500px;
    width: 100%;
    text-align: left;
    align-items: left;
    padding: 40px;
    background: transparent;
    border-radius: 15px;
    margin-left: 40px;
}

.sponsorship-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsorship-content p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0 0 40px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.sponsor-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2b2b2b27, #dad04b9a);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.sponsor-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(245, 208, 0, 0.1));
    border-radius: 8px;
}

.sponsor-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #333333, #555555);
    border-color: var(--hover-color);
    color: var(--hover-color);
}

.sponsor-button:active {
    transform: translateY(-1px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-width: 100vw;
    }
    
    html::-webkit-scrollbar, 
    body::-webkit-scrollbar {
        display: none;
    }
    
    /* Hide line breaks on mobile for join section paragraph */
    .join-content p br {
        display: none;
    }
    
    /* Hide line breaks on mobile for sponsorship section paragraph */
    .sponsorship-content p br {
        display: none;
    }
    
    .main-section {
        padding: 10px 0;
        width: 100vw;
        margin: 0;
        overflow: hidden;
    }
    
    .video-background,
    .video-fallback,
    .background-overlay {
        left: 0;
        transform: none;
        width: 100vw;
        min-width: 100vw;
    }
    
    .music-tiles-container {
        overflow: hidden;
        padding: 20px;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transform: translateX(-20px);
        touch-action: pan-x;
        -webkit-overflow-scrolling: auto;
    }
    
    .music-tile {
        flex: 0 0 300px;
        min-width: 300px;
        margin: 0 10px;
    }

    .tile-indicators {
        margin-top: 15px;
    }

    .indicator-dot {
        width: 5px;
        height: 5px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    /* Join Section Mobile Styles */
    .join-section {
        justify-content: center;
        padding: 40px 20px;
        background-size: 
            100% 100%,
            cover;
        background-position: 
            0 0,
            center center;
    }
    
    .join-content {
        margin-right: 0;
        padding: 30px 20px;
        text-align: center;
        max-width: 100%;
    }
    
    .join-content h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .join-content p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .apply-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Sponsorship Section Mobile Styles */
    .sponsorship-section {
        justify-content: center;
        padding: 40px 20px;
        background-size: 
            100% 100%,
            100% 100%,
            cover;
        background-position: 
            0 0,
            0 0,
            center center;
    }
    
    .sponsorship-content {
        margin-left: 0;
        padding: 30px 20px;
        text-align: center;
        max-width: 100%;
    }
    
    .sponsorship-content h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .sponsorship-content p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .sponsor-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-nav {
        display: none;
    }
    
    /* Join Section Small Mobile Styles */
    .join-content {
        padding: 25px 15px;
    }
    
    .join-content h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .join-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .apply-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    position: relative;
    text-align: center;
    color: #f5d000 !important;
    font-size: 12px;
    font-family: 'Montserrat', 'SF-Pro', Arial, sans-serif;
    background: rgba(0, 0, 0, 0.007) !important;
    padding: 20px 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    margin: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1000;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

footer a {
    color: #f5d000 !important;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Montserrat', 'SF-Pro', Arial, sans-serif;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

footer a:hover {
    text-decoration: underline;
    color: #ffed4e !important;
}

/* Site Footer */
.site-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #f5d000;
    padding: 50px 40px 40px;
    margin: 0;
    width: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 208, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 50px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 120px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
    transform: scale(1.1);
}

.footer-brand {
    font-size: 22px;
    font-weight: 400;
    font-family: 'Aldrich', sans-serif;
    color: #f5d000;
    opacity: 0.9;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(245, 208, 0, 0.3);
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 208, 0, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 208, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link:hover {
    border-color: rgba(245, 208, 0, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 208, 0, 0.3);
}

.social-icon {
    width: 22px;
    height: 22px;
    fill: #f5d000;
    opacity: 0.8;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.social-icon-img {
    width: 22px;
    height: 22px;
    opacity: 1;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.footer-social-link:hover .social-icon {
    opacity: 1;
    transform: scale(1.15);
}

.footer-social-link:hover .social-icon-img {
    opacity: 1;
    transform: scale(1.15);
}

.viber-icon {
    fill: #f5d000 !important;
}

.contact-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-contact p {
    margin: 8px 0;
    opacity: 0.9;
}

.footer-contact a {
    color: #f5d000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    text-shadow: 0 1px 3px rgba(245, 208, 0, 0.3);
}

.footer-contact a:hover {
    color: #ffed4e;
    border-bottom-color: rgba(245, 208, 0, 0.6);
    text-decoration: none;
    text-shadow: 0 2px 6px rgba(245, 208, 0, 0.5);
}

.phone-button {
    display: inline-block;
    background: rgba(245, 208, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 208, 0, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
    margin: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.phone-button:hover {
    background: rgba(245, 208, 0, 0.2);
    border-color: rgba(245, 208, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 208, 0, 0.3);
    border-bottom-color: transparent !important;
}

.footer-phone, .footer-email {
    font-size: 13px;
    font-weight: 400;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-copyright p {
    margin: 5px 0;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.7;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
