:root {
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #B8860B;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --neon-accent: #FFEB3B;
    --white: #ffffff;
    --text-muted: #888888;
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    --font-heading: 'Montserrat', sans-serif;
    --font-title: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.logo-accent {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.page {
    display: none;
    min-height: 100vh;
    padding-top: 70px;
}

.page.active {
    display: block;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-sound-toggle {
    position: absolute;
    bottom: 120px;
    right: 30px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    border: none;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-sound-toggle:hover {
    background: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    opacity: 1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.soundwave-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-bottom: 30px;
}

.soundwave-bar {
    width: 8px;
    background: var(--gradient-gold);
    border-radius: 4px;
    animation: soundwave 1s ease-in-out infinite;
}

.soundwave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.soundwave-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.soundwave-bar:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.soundwave-bar:nth-child(4) { height: 60px; animation-delay: 0.3s; }
.soundwave-bar:nth-child(5) { height: 50px; animation-delay: 0.4s; }
.soundwave-bar:nth-child(6) { height: 35px; animation-delay: 0.5s; }
.soundwave-bar:nth-child(7) { height: 20px; animation-delay: 0.6s; }

.hero-title {
    font-family: var(--font-title);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.title-line {
    display: block;
    color: var(--white);
    letter-spacing: 20px;
}

.title-accent {
    display: block;
    color: var(--gold);
    letter-spacing: 15px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 20px;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1rem;
}

.glow-effect {
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll-indicator i {
    color: var(--gold);
    font-size: 1.5rem;
}

.stats-section {
    background: var(--dark-gray);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-decorator {
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
}

.services-section {
    padding: 100px 0;
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--black);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

.featured-section {
    padding: 100px 0;
    background: var(--dark-gray);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.mix-card {
    background: var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mix-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.mix-artwork {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.mix-card:hover .mix-artwork {
    transform: scale(1.05);
}

.mix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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 {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.vinyl-disc {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--dark-gray) 30%, var(--black) 30%, var(--black) 35%, var(--dark-gray) 35%, var(--dark-gray) 60%, var(--gold) 60%, var(--gold) 62%, var(--dark-gray) 62%);
    border-radius: 50%;
    animation: spin 4s linear infinite;
    animation-play-state: paused;
}

.mix-card:hover .vinyl-disc {
    animation-play-state: running;
}

.mix-info {
    padding: 20px;
}

.mix-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.mix-genre {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.mix-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mix-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.testimonials-section {
    padding: 100px 0;
    background: var(--black);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
}

.testimonial-card {
    display: none;
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.5rem;
}

.author-info h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gold);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold);
}

.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-gold);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form .btn {
    background: var(--black);
    color: var(--gold);
}

.newsletter-form .btn:hover {
    background: var(--dark-gray);
}

.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.page-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 60px 0;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 10px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.dj-portrait {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover .dj-portrait {
    transform: scale(1.05);
}

.dj-silhouette {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--black);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-dark);
}

.experience-badge .years {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.about-text h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.highlight i {
    font-size: 1.5rem;
}

.timeline-section {
    padding: 60px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-gold);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--black);
}

.timeline-content {
    background: var(--dark-gray);
    padding: 25px;
    border-radius: 15px;
    max-width: 350px;
    margin-right: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-year {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.partners-section {
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.partner-logo {
    background: var(--dark-gray);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
}

.mixes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 60px;
}

.mix-card-full {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.mix-card-full:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.mix-artwork-full {
    position: relative;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.mix-card-full:hover .mix-artwork-full {
    transform: scale(1.05);
}

.mix-artwork-full .mix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mix-card-full:hover .mix-artwork-full .mix-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.vinyl-disc-large {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--dark-gray) 30%, var(--black) 30%, var(--black) 35%, var(--dark-gray) 35%, var(--dark-gray) 60%, var(--gold) 60%, var(--gold) 62%, var(--dark-gray) 62%);
    border-radius: 50%;
    animation: spin 4s linear infinite;
    animation-play-state: paused;
}

.mix-card-full:hover .vinyl-disc-large {
    animation-play-state: running;
}

.play-btn-large {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

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

.mix-details {
    padding: 25px;
}

.mix-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}

.mix-genre-tag {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.mix-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mix-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mix-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mix-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--medium-gray);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.action-btn.favorited {
    background: var(--gold);
    color: var(--black);
}

.action-btn.favorited i {
    font-weight: 900;
}

.events-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.event-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 0;
}

.event-card > * {
    position: relative;
    z-index: 1;
}

.event-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.event-card.featured {
    grid-template-columns: 120px 1fr;
    border-color: var(--gold);
    border-width: 2px;
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date {
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-date .day {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.event-info {
    padding: 25px;
}

.event-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.event-venue,
.event-time {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-venue i,
.event-time i {
    color: var(--gold);
}

.event-countdown {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

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

.countdown-value {
    display: block;
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--gold);
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.event-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.calendar-widget {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.calendar-month-year {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px 10px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
}

.calendar-weekdays span {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 10px 0;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background: rgba(255, 215, 0, 0.2);
}

.calendar-day.today {
    border: 2px solid var(--gold);
}

.calendar-day.has-event {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

.calendar-day.other-month {
    color: var(--light-gray);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--gold);
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    padding-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

.gallery-placeholder i {
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.3);
}

.gallery-placeholder.video i {
    color: var(--gold);
}

.gallery-placeholder span {
    font-size: 0.85rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-caption {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-zoom:hover {
    transform: scale(1.1);
}

.gallery-item.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.video-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.gallery-item.video-item.playing .video-overlay {
    opacity: 0;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-placeholder {
    width: 600px;
    height: 400px;
    background: var(--dark-gray);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-muted);
}

.lightbox-placeholder i {
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.3);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 60px 0;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-tier:last-child {
    border-bottom: none;
}

.tier-name {
    color: var(--white);
}

.tier-price {
    color: var(--gold);
    font-weight: 600;
}

.booking-form-container {
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.booking-form h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--medium-gray);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-gray);
    color: var(--white);
}

.shop-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.bestseller {
    background: #4CAF50;
    color: white;
}

.product-badge.sold-out {
    background: #f44336;
    color: white;
}

.product-image {
    height: 200px;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.3);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating i {
    color: var(--gold);
    font-size: 0.85rem;
}

.product-rating span {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 5px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.product-info .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
}

.vip-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    border: 2px solid var(--gold);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.vip-content {
    position: relative;
    z-index: 1;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vip-section h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.vip-section > .vip-content > p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.vip-benefits {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.vip-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.vip-benefits i {
    color: var(--gold);
}

.blog-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto 30px;
    gap: 10px;
}

.blog-search input {
    flex: 1;
    padding: 15px 25px;
    background: var(--dark-gray);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-btn {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    font-size: 1rem;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-cat-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
    background: var(--gold);
    color: var(--black);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-image {
    height: 200px;
    position: relative;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.2);
}

.blog-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 60px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0;
}

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

.contact-card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--black);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.social-links h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 20px;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.contact-form-section {
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.instagram-section {
    padding: 60px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.insta-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.insta-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.3);
}

.footer {
    background: var(--dark-gray);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 10px;
}

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

.footer-column a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
    padding: 10px 20px;
}

.player-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.player-artwork {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-mini {
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, var(--dark-gray) 30%, var(--black) 30%, var(--black) 35%, var(--dark-gray) 35%, var(--dark-gray) 60%, var(--gold) 60%, var(--gold) 62%, var(--dark-gray) 62%);
    border-radius: 50%;
}

.vinyl-mini.spinning {
    animation: spin 2s linear infinite;
}

.player-details {
    display: flex;
    flex-direction: column;
}

.player-title {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
}

.player-artist {
    font-size: 0.8rem;
    color: var(--gold);
}

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

.player-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.player-btn:hover {
    color: var(--gold);
}

.player-btn.play-pause {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn.play-pause:hover {
    transform: scale(1.05);
    color: var(--black);
}

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

.current-time,
.total-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 45px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--medium-gray);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

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

.volume-slider {
    width: 80px;
    height: 4px;
    background: var(--medium-gray);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.volume-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 70%;
}

.player-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}

.eq-bar {
    width: 4px;
    background: var(--gold);
    border-radius: 2px;
    animation: equalizer 0.8s ease-in-out infinite;
    animation-play-state: paused;
}

.eq-bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 15px; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 25px; animation-delay: 0.3s; }
.eq-bar:nth-child(5) { height: 12px; animation-delay: 0.4s; }

.music-player.playing .eq-bar {
    animation-play-state: running;
}

.music-player.playing .vinyl-mini {
    animation: spin 2s linear infinite;
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--dark-gray);
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    box-shadow: var(--shadow-dark);
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-left-color: #4CAF50;
}

.toast.error {
    border-left-color: #f44336;
}

.toast-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.toast.success .toast-icon {
    color: #4CAF50;
}

.toast.error .toast-icon {
    color: #f44336;
}

.toast-message {
    flex: 1;
    color: var(--white);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--dark-gray);
    z-index: 1500;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cart-header h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: var(--medium-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 215, 0, 0.3);
    font-size: 1.5rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    color: var(--white);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--gold);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    width: 25px;
    height: 25px;
    background: var(--medium-gray);
    border: none;
    border-radius: 5px;
    color: var(--white);
    cursor: pointer;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.cart-item-remove:hover {
    color: #f44336;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.total-amount {
    color: var(--gold);
    font-weight: 600;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-toggle {
    position: fixed;
    bottom: 100px;
    left: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.cart-toggle:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f44336;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}
