/* ==========================================================================
   VexLab Stylesheet
   Design: Premium, Sleek Music Producer Dark Mode (Neon Purple & Cyan accents)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-main: #07070B;
    --bg-card: #0F0F17;
    --bg-card-hover: #151522;
    --bg-input: #181826;

    --border-color: #212133;
    --border-hover: #31314B;

    /* Accents */
    --accent-purple: #007A8C; /* Repurposed to Deep Teal-Blue from Logo */
    --accent-purple-rgb: 0, 122, 140;
    --accent-purple-hover: #009CB3;
    --accent-cyan: #06B6D4;
    --accent-cyan-rgb: 6, 182, 212;
    --accent-cyan-hover: #22D3EE;
    --accent-glow-purple: rgba(0, 122, 140, 0.35);
    --accent-glow-cyan: rgba(6, 182, 212, 0.3);

    /* Typography Colors */
    --text-white: #FFFFFF;
    --text-light: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dimmed: #6B7280;

    /* System Elements */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease-out;

    --header-height: 110px;
    --max-width: 1200px;
}

/* Reset & Global Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    outline: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: #1C1C2E;
    border-radius: 5px;
    border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* Core Layout Containers */
.section-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
}

@media (max-width: 768px) {
    .section-container {
        padding: 60px 16px;
    }
}

/* Section Common Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

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

/* Custom SVGs and Utilities */
.icon-menu,
.icon-close,
.icon-external {
    width: 24px;
    height: 24px;
}

/* Logo Typography & Images */
.logo {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.logo:hover .header-logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 8px rgba(var(--accent-purple-rgb), 0.4));
}

.logo-accent {
    color: var(--accent-purple);
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(7, 7, 11, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger-btn {
    display: none; /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.hamburger-btn:hover {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: var(--accent-purple);
}

.desktop-nav {
    display: flex;
    gap: 40px; /* More spacious for balanced look */
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    transition: var(--transition-smooth);
}

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

.cta-btn-header {
    background: linear-gradient(135deg, var(--accent-purple) 0%, rgba(var(--accent-purple-rgb), 0.7) 100%);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--accent-glow-purple);
}

.cta-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-purple-rgb), 0.5);
    background: linear-gradient(135deg, var(--accent-purple-hover) 0%, var(--accent-purple) 100%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-socials {
    display: flex;
    gap: 12px;
}

.header-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.header-social-btn svg {
    width: 18px;
    height: 18px;
}

.header-social-btn:hover {
    color: var(--text-white);
    transform: translateY(-3px);
}

.header-social-btn.youtube:hover {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #EF4444;
    color: #EF4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.header-social-btn.instagram:hover {
    background-color: rgba(236, 72, 153, 0.1);
    border-color: #EC4899;
    color: #EC4899;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

@media (max-width: 992px) {
    .header-container {
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header-logo-img {
        height: 60px; /* Scale down on mobile to prevent overlap with hamburger */
    }

    .hamburger-btn {
        display: flex; /* Visible only on mobile/tablet */
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }
}

/* Side Drawer (Sliding Left Drawer) */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    visibility: hidden;
    transition: visibility var(--transition-smooth);
}

.drawer.open {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 3, 5, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--bg-card);
    border-right: 1px solid var(--border-color);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 30px 24px;
}

.drawer.open .drawer-content {
    transform: translateX(0);
}

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

.drawer-logo {
    display: flex;
    align-items: center;
}

.drawer-logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.close-btn {
    color: var(--text-muted);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.close-btn:hover {
    color: var(--text-white);
    background-color: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

.drawer-link:hover {
    color: var(--accent-purple);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.social-links-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dimmed);
    margin-bottom: 16px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-icon-btn svg {
    width: 20px;
    height: 20px;
}

.social-icon-btn:hover {
    color: var(--text-white);
    transform: translateY(-3px);
}

.social-icon-btn.youtube:hover {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #EF4444;
    color: #EF4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.social-icon-btn.instagram:hover {
    background-color: rgba(236, 72, 153, 0.1);
    border-color: #EC4899;
    color: #EC4899;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -150px;
    background: radial-gradient(circle, rgba(var(--accent-purple-rgb), 0.18) 0%, rgba(var(--accent-cyan-rgb), 0.08) 50%, rgba(0, 0, 0, 0) 100%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-circle-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(var(--accent-purple-rgb), 0.35)) drop-shadow(0 0 50px rgba(var(--accent-cyan-rgb), 0.2));
    animation: hero-logo-float 6s ease-in-out infinite;
}

@keyframes hero-logo-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 25px rgba(var(--accent-purple-rgb), 0.35)) drop-shadow(0 0 50px rgba(var(--accent-cyan-rgb), 0.2));
    }

    50% {
        transform: translateY(-8px) scale(1.03);
        filter: drop-shadow(0 0 35px rgba(var(--accent-purple-rgb), 0.55)) drop-shadow(0 0 65px rgba(var(--accent-cyan-rgb), 0.3));
    }
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-purple);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.primary-cta {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(var(--accent-purple-rgb), 0.35);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--accent-purple-rgb), 0.6);
}

.secondary-cta {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.secondary-cta:hover {
    background-color: var(--bg-card);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-btn {
        justify-content: center;
    }
}

/* Audio Visualizer Simulator (Hero) */
.hero-visualizer-container {
    margin-top: 40px;
    padding: 24px;
    background-color: rgba(15, 15, 23, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.visualizer-overlay-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-dimmed);
    letter-spacing: 2px;
}

.visualizer-bars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 60px;
}

.visualizer-bars span {
    width: 6px;
    height: 10%;
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 5px;
    animation: bounce 1.2s ease-in-out infinite alternate;
}

/* Stagger bar animations */
.visualizer-bars span:nth-child(2n) {
    animation-duration: 0.8s;
}

.visualizer-bars span:nth-child(3n) {
    animation-duration: 1.4s;
}

.visualizer-bars span:nth-child(4n) {
    animation-duration: 1.1s;
}

.visualizer-bars span:nth-child(5n) {
    animation-duration: 0.6s;
}

.visualizer-bars span:nth-child(6n) {
    animation-duration: 1.3s;
}

.visualizer-bars span:nth-child(7n) {
    animation-duration: 0.9s;
}

.visualizer-bars span:nth-child(8n) {
    animation-duration: 1.5s;
}

@keyframes bounce {
    0% {
        height: 10%;
    }

    100% {
        height: 100%;
    }
}

/* Vocal Presets Product Grid */
.presets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .presets-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.preset-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.preset-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.preset-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #EC4899 0%, #EF4444 100%);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.preset-image-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #08080C;
    overflow: hidden;
}

.preset-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.preset-card:hover .preset-image {
    transform: scale(1.05);
}

.preset-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 23, 0) 40%, rgba(15, 15, 23, 0.95) 100%);
}

.preset-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.preset-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.preset-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Before / After Audio Comparison Interface */
.audio-comparison-wrapper {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audio-timer {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

.comparison-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.comp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-muted);
}

.comp-btn svg {
    width: 16px;
    height: 16px;
}

.comp-btn .btn-pause-icon {
    display: none;
}

/* Active Audio States */
.comp-btn.playing {
    border-color: var(--accent-purple);
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--text-white);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.comp-btn.playing .btn-play-icon {
    display: none;
}

.comp-btn.playing .btn-pause-icon {
    display: block;
    color: var(--accent-purple);
}

/* Hover effects */
.comp-btn:hover:not(.playing) {
    background-color: var(--bg-card-hover);
    color: var(--text-white);
    border-color: var(--border-hover);
}

/* Selection A & Selection B styling distinct paths */
.comp-btn.before-btn:hover:not(.playing) {
    border-color: var(--text-dimmed);
}

.comp-btn.after-btn:hover:not(.playing) {
    border-color: var(--accent-cyan);
}

.comp-btn.after-btn.playing {
    border-color: var(--accent-cyan);
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--text-white);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.comp-btn.after-btn.playing .btn-pause-icon {
    color: var(--accent-cyan);
}

/* Custom Preset Audio Progress Bar */
.custom-progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--bg-main);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 5px;
    transition: width 0.1s linear;
}

/* Specifications list */
.preset-specs {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preset-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.spec-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

/* Purchase details container */
.preset-purchase {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-dimmed);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: var(--font-heading);
}

.buy-btn {
    background: linear-gradient(135deg, var(--accent-purple) 0%, rgba(var(--accent-purple-rgb), 0.85) 100%);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px var(--accent-glow-purple);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-purple-rgb), 0.5);
    background: linear-gradient(135deg, var(--accent-purple-hover) 0%, var(--accent-purple) 100%);
}

/* Beats Showcase Section */
.beats-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.beat-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition-smooth);
}

.beat-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.beat-art {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--bg-main);
}

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

.beat-play-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 23, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.beat-item:hover .beat-play-btn,
.beat-play-btn.playing {
    opacity: 1;
}

.beat-play-btn svg {
    width: 24px;
    height: 24px;
}

.beat-play-btn .pause-svg {
    display: none;
}

.beat-play-btn.playing .play-svg {
    display: none;
}

.beat-play-btn.playing .pause-svg {
    display: block;
    color: var(--accent-cyan);
}

.beat-details {
    flex-grow: 1;
    min-width: 150px;
}

.beat-meta-top {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dimmed);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.beat-genre {
    color: var(--accent-cyan);
}

.beat-name {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Beat Player Progress bar */
.beat-player-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 35%;
    flex-shrink: 0;
}

.beat-time {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.beat-progress-slider {
    flex-grow: 1;
    height: 6px;
    background-color: var(--bg-main);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.beat-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 5px;
    transition: width 0.1s linear;
}

.beat-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.beat-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: var(--font-heading);
}

.beat-buy-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beat-buy-btn:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Responsive beats list */
@media (max-width: 992px) {
    .beat-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }

    .beat-player-progress {
        width: 100%;
    }

    .beat-action {
        justify-content: space-between;
    }
}

/* Why Section Styles */
.why-section {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card:nth-child(2n) .feature-icon {
    background-color: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-content {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* About Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-text-content {
    display: flex;
    flex-direction: column;
}

.about-badge {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-paragraph {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background-color: #0A0A10;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.visual-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-circle-logo {
    height: 72px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(var(--accent-cyan-rgb), 0.5));
    animation: pulse-logo 3s ease-in-out infinite;
}

@keyframes pulse-logo {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(var(--accent-cyan-rgb), 0.45));
    }

    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 25px rgba(var(--accent-cyan-rgb), 0.75));
    }
}

.visual-waves {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 80px;
}

.wave-line {
    width: 4px;
    background-color: var(--accent-purple);
    border-radius: 4px;
    height: 40px;
}

.wave-line:nth-child(1) {
    height: 30px;
    background-color: var(--accent-purple);
}

.wave-line:nth-child(2) {
    height: 60px;
    background-color: var(--accent-cyan);
}

.wave-line:nth-child(3) {
    height: 75px;
    background-color: var(--accent-purple);
}

.wave-line:nth-child(4) {
    height: 45px;
    background-color: var(--accent-cyan);
}

.wave-line:nth-child(5) {
    height: 20px;
    background-color: var(--accent-purple);
}

.visual-status {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    background-color: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 4px;
    padding: 4px 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Footer Styles */
.main-footer {
    background-color: #040407;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
}

.footer-links-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-purple);
    padding-left: 4px;
}

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

.footer-social-link {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.footer-social-link:hover {
    color: var(--text-white);
    border-color: var(--border-hover);
    background-color: var(--bg-card);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-dimmed);
}

.payment-methods {
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-methods::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .main-footer {
        padding-top: 50px;
    }
}