:root {
    --color-bg: #0a0a0a;
    --color-accent: #6c03a8;
    --color-accent-hover: #de91fa;
    --color-purple: #BC13FE;
    --color-blue: #2E2EFE;
    --color-text: #FFFFFF;
    --color-text-dim: #CCCCCC;
    --color-carbon-dark: #111111;
    --color-carbon-light: #222222;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(188, 19, 254, 0.15), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(46, 46, 254, 0.15), transparent 30%);
    background-attachment: fixed;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition-speed);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(188, 19, 254, 0.2);
    /* Purple border */
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(108, 3, 168, 0.8), 0 0 20px rgba(108, 3, 168, 0.4);
    background: linear-gradient(to right, var(--color-accent), var(--color-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-accent-hover);
    text-shadow: 0 0 15px var(--color-accent-hover), 0 0 25px var(--color-accent-hover);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.space-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay to blend carbon with space */
    background: radial-gradient(circle at center, transparent 0%, #000 100%), url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/stars.png') repeat;
    z-index: -2;
    animation: move-stars 200s linear infinite;
}

@keyframes move-stars {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 0;
    }
}

.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/twinkling.png') repeat;
    z-index: -1;
    animation: move-twinkling 200s linear infinite;
    opacity: 0.4;
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1000;
}

.social-sidebar a {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-sidebar a:hover {
    color: var(--color-accent);
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px var(--color-accent));
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: url('imagenes/RGCARBON.JPG') no-repeat center center;
    background-size: contain;
    opacity: 0.4;
    mix-blend-mode: screen;
    /* Blend with stars */
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
    z-index: -1;
    animation: pulse-bg 5s infinite alternate;
}

@keyframes pulse-bg {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Rays Effect */
.rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(188, 19, 254, 0.1) 10deg, transparent 20deg, rgba(46, 46, 254, 0.05) 30deg, transparent 40deg);
    mask-image: radial-gradient(circle, transparent 10%, black 80%);
    -webkit-mask-image: radial-gradient(circle, transparent 10%, black 80%);
    animation: rotate-rays 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotate-rays {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Sparkles Layer */
.sparkles-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: sparkle-anim 4s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes sparkle-anim {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

@keyframes fly-across {
    0% {
        left: -200px;
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        left: 110%;
        /* Fly off to the right */
        opacity: 0;
    }
}

@keyframes move-twinkling {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    max-width: 80%;
    height: auto;
    max-height: 300px;
    filter: drop-shadow(0 0 20px rgba(108, 3, 168, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--color-text);
    text-shadow: 0 0 30px rgba(188, 19, 254, 0.8), 0 0 60px rgba(188, 19, 254, 0.4);
    /* Purple shadow */
}

/* Glitch Effect Restored */
.glitch {
    position: relative;
    color: var(--color-text);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #BC13FE;
    /* Purple */
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #2E2EFE;
    /* Blue */
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    15% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    20% {
        clip: rect(20px, 9999px, 60px, 0);
    }

    100% {
        clip: rect(70px, 9999px, 30px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    5% {
        clip: rect(40px, 9999px, 10px, 0);
    }

    10% {
        clip: rect(90px, 9999px, 30px, 0);
    }

    15% {
        clip: rect(20px, 9999px, 50px, 0);
    }

    20% {
        clip: rect(60px, 9999px, 20px, 0);
    }

    100% {
        clip: rect(30px, 9999px, 70px, 0);
    }
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(108, 3, 168, 0.8);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    margin-top: 300px;
    /* Moved down as requested */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 3, 168, 0.2), transparent);
    transition: 0.5s;
}

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

.cta-button:hover {
    background: var(--color-accent-hover);
    color: var(--color-bg);
    box-shadow: 0 0 20px var(--color-accent-hover), 0 0 40px var(--color-accent-hover);
}

/* Sections */
.section {
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(108, 3, 168, 0.05);
    background: rgba(10, 10, 10, 0.8);
    /* Semi-transparent to show texture */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(108, 3, 168, 0.5));
}

.divider {
    height: 2px;
    width: 100px;
    background: var(--color-accent);
    margin: 0 auto 4rem;
    position: relative;
    box-shadow: 0 0 10px var(--color-accent);
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
}

/* Bio */
.bio-content {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-dim);
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 5px;
}



/* Carousel Styles */
/* Beat Player */
.beat-player {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    max-height: 450px;
    /* Approx 3 items */
    overflow-y: auto;
    padding-right: 10px;
    /* Space for scrollbar */
}

/* Custom Scrollbar */
.beat-player::-webkit-scrollbar {
    width: 8px;
}

.beat-player::-webkit-scrollbar-track {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 4px;
}

.beat-player::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
    box-shadow: 0 0 5px var(--color-accent);
}

.beat-player::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 5px;
    transition: 0.3s;
    /* Carbon pattern */
    background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a),
        linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a);
    background-position: 0 0, 5px 5px;
    background-size: 10px 10px;
}

.track-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(108, 3, 168, 0.1);
    transform: translateX(5px);
}

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

.portfolio-item {
    background: var(--color-carbon-dark);
    height: 300px;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.3s;
    /* Carbon pattern for items */
    background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a),
        linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a);
    background-position: 0 0, 5px 5px;
    background-size: 10px 10px;
}

.portfolio-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(108, 3, 168, 0.2);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    transform: translateY(100%);
    transition: 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(80%);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.service-info {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, #222, #111);
}

.service-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(188, 19, 254, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    transition: 0.3s;
}

.contact-card:hover .contact-icon {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 20px var(--color-accent);
}

.discord-card:hover .contact-icon {
    background: #5865F2; /* Discord color */
    color: #fff;
    box-shadow: 0 0 20px #5865F2;
    border-color: #5865F2;
}
.discord-card:hover { border-color: #5865F2; }

.whatsapp-card:hover .contact-icon {
    background: #25D366; /* WhatsApp color */
    color: #fff;
    box-shadow: 0 0 20px #25D366;
    border-color: #25D366;
}
.whatsapp-card:hover { border-color: #25D366; }

.telegram-card:hover .contact-icon {
    background: #0088cc; /* Telegram color */
    color: #fff;
    box-shadow: 0 0 20px #0088cc;
    border-color: #0088cc;
}
.telegram-card:hover { border-color: #0088cc; }

.contact-card h3 {
    font-size: 1.2rem;
    color: #fff;
}

.contact-card p {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(108, 3, 168, 0.1);
    color: var(--color-text-dim);
    background: #050505;
}

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

.social-links a {
    color: var(--color-text);
    font-weight: 600;
}

.social-links a:hover {
    color: var(--color-accent-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 1rem;
    }
}

/* Beat Grid System */
.beat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beat-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.beat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--color-accent);
}

.beat-cover {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.beat-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.beat-card:hover .beat-cover img {
    transform: scale(1.1);
}

.beat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.beat-card:hover .beat-overlay {
    opacity: 1;
}

.play-btn-large {
    background: var(--color-accent);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    box-shadow: 0 0 20px var(--color-accent);
}

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

.beat-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    background: transparent;
}

.beat-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beat-info p {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.beat-price {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.buy-btn {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.buy-btn:hover {
    background: var(--color-accent-hover);
    color: #000;
    box-shadow: 0 0 15px var(--color-accent-hover);
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(188, 19, 254, 0.3);
    border-radius: 16px;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 40px rgba(108, 3, 168, 0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    background: linear-gradient(90deg, #111, #222);
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid #333;
    color: var(--color-accent);
    text-align: center;
    font-size: 1.5rem;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--color-accent-hover);
}

.modal-body {
    padding: 2rem;
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.checkout-summary h3 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.checkout-summary p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.checkout-price {
    color: var(--color-accent) !important;
    font-size: 1.5rem !important;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #aaa;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 0.8rem;
    color: #fff;
    border-radius: 4px;
}

.form-group input:focus {
    border-color: var(--color-accent);
    outline: none;
}

.payment-methods {
    margin: 1.5rem 0;
}

.payment-options {
    display: flex;
    gap: 1rem;
}

.payment-option {
    flex: 1;
    padding: 1rem;
    border: 1px solid #333;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    color: #888;
}

.payment-option.selected {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(108, 3, 168, 0.05);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--color-accent);
    color: #000;
    border: none;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.checkout-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(108, 3, 168, 0.4);
}

.btn-validate-ticket {
    padding: 0.8rem 1.5rem;
    background: rgba(108, 3, 168, 0.2);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-validate-ticket:hover {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 0 15px rgba(108, 3, 168, 0.3);
}

/* --- Genre Filter Styles --- */
.genre-filter {
    text-align: center;
    margin-bottom: 40px;
}

.genre-filter h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-text);
    padding: 8px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 20px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent-hover);
    color: #000;
    box-shadow: 0 0 15px var(--color-accent-hover);
}

/* Animation for filtering */
.beat-card {
    transition: all 0.5s ease;
}

.beat-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}


/* Bottom Player Styles */
.bottom-player {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 2000;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-player.active {
    bottom: 0;
}

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

.player-cover {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

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

.player-track-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

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

.player-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    max-width: 600px;
}

.player-controls-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
}

.player-btn {
    background: transparent;
    border: none;
    color: #b3b3b3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.player-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.play-pause-btn {
    width: 32px;
    height: 32px;
    background: #fff;
    color: #000;
    border-radius: 50%;
}

.play-pause-btn:hover {
    transform: scale(1.05);
    background: #fff;
    color: #000;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.time-current, .time-total {
    font-size: 0.75rem;
    color: #b3b3b3;
    min-width: 40px;
    text-align: center;
}

.progress-bar, .volume-bar {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
}
.progress-bar { width: 100%; }
.volume-bar { width: 100px; }

.progress-bar::-webkit-slider-thumb, .volume-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}

.progress-container:hover .progress-bar::-webkit-slider-thumb,
.volume-container:hover .volume-bar::-webkit-slider-thumb {
    opacity: 1;
}

.progress-bar:hover, .volume-bar:hover {
    background: var(--color-accent);
}

.player-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    width: 30%;
    min-width: 150px;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b3b3b3;
}

.hidden-yt-player {
    display: none;
}

@media (max-width: 768px) {
    .bottom-player {
        height: 120px;
        flex-direction: column;
        padding: 10px;
        justify-content: space-around;
    }
    .player-left, .player-right {
        width: 100%;
        justify-content: space-between;
    }
    .player-center {
        width: 100%;
    }
    .player-right {
        display: none;
    }
}

/* La Plaza Section */
.plaza-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(30, 5, 50, 0.9) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(188, 19, 254, 0.2);
}

.plaza-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.plaza-tagline {
    color: var(--color-purple);
    font-family: var(--font-heading);
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.plaza-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, var(--color-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plaza-benefits {
    list-style: none;
    margin: 2rem 0;
}

.plaza-benefits li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-dim);
    text-align: left;
}

.plaza-benefits span {
    color: var(--color-purple);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--color-purple));
}

.plaza-cta {
    margin-top: 3rem;
}

.plaza-btn {
    margin-top: 0 !important;
    border-color: var(--color-purple) !important;
    color: var(--color-purple) !important;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
}

.plaza-btn:hover {
    background: var(--color-purple) !important;
    color: #fff !important;
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.5);
}

.plaza-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.plaza-card-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(188, 19, 254, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(188, 19, 254, 0.1);
}

.plaza-card-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.8s;
}

.plaza-card-visual:hover img {
    transform: scale(1.05);
}

.plaza-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(188, 19, 254, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .plaza-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .plaza-benefits li {
        justify-content: center;
    }
    
    .plaza-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}