
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    padding-top: 80px;
    background: #000;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.1;
    color: white;
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #ccc;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.menu li a {
    text-decoration: none;
    color: #eee;
    font-size: 14px;
    transition: 0.3s;
}

.menu li a:hover { color: #a855f7; }
.menu li a.active { color: #a855f7; }

.btn-action {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-action:hover { opacity: 0.8; }

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
}

.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    background: url('imghero.png') no-repeat center/cover;
}

.slide:nth-child(2) { background: url('imghero2.png') no-repeat center/cover; }
.slide:nth-child(3) { background: url('imghero3.png') no-repeat center/cover; }

.overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    padding: 0 20px;
}

.subtitle { font-size: 16px; margin-bottom: 10px; }

.slide h1 { font-size: 32px; margin-bottom: 20px; }

.btn-main {
    background: #5f3bff;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-main:hover { background: #7c5cff; }

.slider-nav button {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    font-size: 26px;
    background: rgba(0,0,0,0.5);
    color: white; border: none;
    padding: 10px 15px; cursor: pointer;
    z-index: 10; border-radius: 6px; transition: 0.3s;
}

.slider-nav button:hover { background: rgba(0,0,0,0.8); }

.prev { left: 20px; }
.next { right: 20px; }

.dots {
    position: absolute; bottom: 25px;
    width: 100%; text-align: center;
}

.dot {
    display: inline-block; width: 12px; height: 12px;
    margin: 6px; background: #bbb; border-radius: 50%;
    cursor: pointer; transition: 0.3s;
}

.dot:hover { transform: scale(1.2); }
.dot.active { background: #5f3bff; }

.new-releases {
    background: #020617;
    padding: 80px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.section-header h2 span {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

.btn-see-all {
    background: transparent;
    border: 1px solid #6366f1;
    color: #6366f1;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-see-all:hover {
    background: #6366f1;
    color: white;
}

.new-releases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.release-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

.release-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.4);
    box-shadow: 0 12px 40px rgba(99,102,241,0.15);
}

.release-card-thumb {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.release-card-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.15), transparent 70%);
}

.release-card-play {
    position: absolute;
    inset: 0;
    background: rgba(99,102,241,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.2s;
}

.release-card:hover .release-card-play { opacity: 1; }

.release-card-play svg { width: 36px; height: 36px; fill: white; }

.release-card-new-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.release-card-body {
    padding: 16px;
}

.release-card-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.release-card-artist {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.release-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.release-card-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.release-tag {
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    background: #1e293b;
    border: 1px solid #334155;
    color: #64748b;
}

.release-card-price {
    font-size: 13px;
    font-weight: 700;
    color: #a78bfa;
}

.release-card-price.free { color: #22c55e; }

.release-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.rc-btn-play {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.3);
    color: #6366f1;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.rc-btn-play:hover {
    background: rgba(99,102,241,0.2);
}

.rc-btn-dl {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.rc-btn-dl:hover { opacity: 0.85; }

.release-card-lock {
    position: absolute;
    inset: 0;
    background: rgba(2,6,23,0.0);
    pointer-events: none;
    border-radius: 14px;
    transition: 0.3s;
}

.home-mini-player {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 68px;
    background: rgba(2,6,23,0.97);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(99,102,241,0.3);
    display: flex;
    align-items: center;
    padding: 0 60px;
    gap: 24px;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.home-mini-player.visible { transform: translateY(0); }

.hmp-info { display: flex; align-items: center; gap: 12px; min-width: 200px; flex: 1; }
.hmp-thumb {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: #1e293b;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.hmp-name { font-size: 13px; font-weight: 600; color: white; }
.hmp-artist { font-size: 11px; color: #64748b; }

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

.hmp-btn {
    background: none; border: none; cursor: pointer;
    color: #64748b; padding: 4px; transition: color 0.2s;
    display: flex; align-items: center;
}
.hmp-btn:hover { color: white; }

.hmp-btn.play {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white; display: flex; align-items: center; justify-content: center;
}

.hmp-progress { flex: 2; display: flex; flex-direction: column; gap: 4px; }
.hmp-bar { height: 3px; background: #1e293b; border-radius: 2px; cursor: pointer; }
.hmp-fill { height: 100%; background: linear-gradient(90deg,#6366f1,#8b5cf6); border-radius: 2px; width: 0%; transition: width 0.1s; }
.hmp-times { display: flex; justify-content: space-between; font-size: 10px; color: #475569; }

.hmp-close {
    background: none; border: none; color: #475569;
    cursor: pointer; font-size: 18px; transition: color 0.2s;
    padding: 4px;
}
.hmp-close:hover { color: white; }

.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 500;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 16px;
    overflow: hidden;
    width: 100%; max-width: 460px;
    display: flex;
    transform: scale(0.93) translateY(20px);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
    margin: 0 16px;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-left { flex: 1; padding: 2.5rem; }
.modal-right {
    width: 45%;
    background: linear-gradient(135deg, #020617, #0f172a);
    position: relative; overflow: hidden;
}
.modal-right::before {
    content: '';
    position: absolute; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.5), transparent);
    top: 20%; left: 10%; filter: blur(60px);
}
.modal-right-content {
    position: relative; z-index: 1;
    padding: 2.5rem 1.5rem;
    height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.modal-right-content h3 { font-size: 18px; margin-bottom: 12px; }
.modal-right-content p { font-size: 13px; color: #94a3b8; line-height: 1.6; }
.modal-right-content ul { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.modal-right-content ul li { font-size: 12px; color: #94a3b8; display: flex; align-items: center; gap: 8px; }
.modal-right-content ul li::before { content: '✓'; color: #22c55e; font-weight: 700; }

.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; color: #475569;
    cursor: pointer; font-size: 1.2rem; transition: color 0.2s;
}
.modal-close:hover { color: white; }

.modal-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.modal-logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
}
.modal-logo-text { font-size: 13px; font-weight: 700; color: white; }
.modal-logo-text span { display: block; font-size: 9px; color: #64748b; letter-spacing: 1.5px; }

.modal-left h2 { font-size: 20px; margin-bottom: 6px; color: white; }
.modal-sub { font-size: 13px; color: #64748b; margin-bottom: 20px; }
.modal-sub strong { color: #a78bfa; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; color: #94a3b8; margin-bottom: 6px; }
.form-input {
    width: 100%; padding: 11px 14px;
    background: #1e293b; border: 1px solid #334155;
    border-radius: 10px; color: white; font-size: 14px; outline: none;
    transition: border-color 0.2s;
}
.form-input:focus { border-color: #6366f1; }

.btn-green {
    width: 100%; padding: 12px; border: none;
    border-radius: 20px; background: #22c55e;
    color: white; font-weight: bold;
    cursor: pointer; transition: 0.3s; font-size: 14px; margin-top: 4px;
}
.btn-green:hover { background: #16a34a; }

.modal-divider { text-align: center; font-size: 12px; color: #475569; margin: 12px 0; }

.btn-google {
    width: 100%; padding: 11px; border-radius: 10px;
    background: #1e293b; border: 1px solid #334155;
    color: white; cursor: pointer; font-size: 13px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.2s;
}
.btn-google:hover { border-color: #6366f1; }

.modal-footer { text-align: center; font-size: 12px; color: #475569; margin-top: 16px; }
.modal-footer a { color: #6366f1; cursor: pointer; text-decoration: none; }

.toast {
    position: fixed; bottom: 80px; right: 2rem;
    background: #0f172a; border: 1px solid #6366f1;
    border-radius: 10px; padding: 12px 18px;
    font-size: 13px; z-index: 600;
    display: flex; align-items: center; gap: 8px;
    transform: translateX(130%);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    max-width: 300px;
    color: white;
}
.toast.show { transform: translateX(0); }

.tutorial-section {
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.tutorial-section h1 { font-size: 38px; margin-bottom: 50px; }

.tutorial-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.tutorial-step {
    background: #111;
    width: 220px;
    padding: 25px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.tutorial-step:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #5b21b6, #2563eb);
}

.step-number {
    width: 45px; height: 45px;
    background: #000681; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; margin: 0 auto 15px;
    color: white;
}

.tutorial-step p { font-size: 14px; color: #ccc; }

.why-section {
    background: #000;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.why-section h1 { font-size: 40px; margin-bottom: 50px; }

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #111;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: left;
    transition: 0.3s;
}

.card:hover { transform: translateY(-8px); }

.card img { width: 100%; border-radius: 8px; margin-bottom: 15px; }
.card p { font-size: 14px; color: #ccc; }
.card h3 { color: white; margin-bottom: 8px; }

.highlight { background: linear-gradient(135deg, #5b21b6, #2563eb); }

.faq-section {
    background: #020617;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.faq-section h1 { font-size: 40px; margin-bottom: 50px; }

.faq-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: #0f172a;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active { background: linear-gradient(135deg, #1e3a8a, #2563eb); }

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: white;
    font-size: 14px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: #cbd5f5;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.footer {
    background: #000;
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px; margin: auto;
    display: flex; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}

.footer-left { max-width: 350px; }

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

.footer-logo img { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; }

.footer-logo-text { font-size: 14px; font-weight: 700; color: white; }
.footer-logo-text span { display: block; font-size: 9px; color: #64748b; letter-spacing: 2px; }

.footer-desc { font-size: 15px; color: #bbb; line-height: 1.7; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h3 { font-size: 14px; margin-bottom: 6px; color: white; }
.footer-links a { color: #cbd5f5; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #60a5fa; }

.footer-bottom {
    text-align: center; margin-top: 40px;
    border-top: 1px solid #1e293b;
    padding-top: 20px; font-size: 13px; color: #94a3b8;
}

@media(max-width: 1100px) {
    .new-releases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 900px) {
    .navbar { padding: 15px 20px; }

    
    .nav-right {
        position: static;
        flex: unset;
        gap: 8px;
    }

    .menu {
        position: absolute; top: 70px; right: 0;
        background: #020617; width: 220px;
        flex-direction: column; display: none;
        border-radius: 10px;
        border: 1px solid #1e293b;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
        z-index: 9999;
    }

    .menu.show { display: flex; }

    .menu li {
        padding: 14px 20px;
        border-bottom: 1px solid #1e293b;
    }

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

    .btn-action { display: none; }
    .hamburger { display: block; }
    
    /* nav-akun-btn disembunyikan di mobile via navbar.css */

    
    .slider { height: 100svh; min-height: 480px; }
    .slide { min-width: 100%; width: 100%; }
    .slide h1 { font-size: 24px; line-height: 1.3; padding: 0 10px; }
    .subtitle { font-size: 13px; padding: 0 10px; }
    .content { padding: 0 16px; }
    .slider-nav button { padding: 8px 12px; font-size: 20px; }

    .new-releases { padding: 60px 20px; }
    .new-releases-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .section-header h2 { font-size: 24px; }

    .home-mini-player { padding: 0 16px; gap: 12px; }
    .hmp-info { min-width: 0; }

    .faq-container { grid-template-columns: 1fr; }

    .modal { flex-direction: column; max-width: 360px; }
    .modal-right { display: none; }
    .modal-left { padding: 1.8rem; }
}

@media(max-width: 520px) {
    .new-releases-grid { grid-template-columns: 1fr; }
    .slide h1 { font-size: 20px; }
    .subtitle { font-size: 12px; }
    .slider-wrapper { width: 100%; }
    .slider-nav button { padding: 6px 10px; font-size: 18px; }
    .prev { left: 8px; }
    .next { right: 8px; }

    .tutorial-section h1 { font-size: 28px; }
    .why-section h1 { font-size: 28px; }
    .faq-section h1 { font-size: 28px; }

    .toast { right: 1rem; left: 1rem; max-width: 100%; }

    .footer-container { flex-direction: column; gap: 24px; }
}

@media(max-width:480px){
  .why-section .card-container{grid-template-columns:1fr !important}
  .tutorial-container{grid-template-columns:1fr 1fr !important}
  .new-releases-grid{grid-template-columns:1fr !important}
  .release-card{width:100% !important}
  .footer-container{flex-direction:column !important;gap:24px}
  .footer-links{text-align:left}
  .home-mini-player{flex-wrap:wrap;gap:8px;padding:10px 14px}
  .hmp-progress{width:100% !important;order:3}
  section.tutorial-section{padding:40px 16px !important}
  .tutorial-container{gap:16px !important}
}

.kategori-highlight {
    background: linear-gradient(180deg, #020617 0%, #0a0f1e 100%);
    padding: 80px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.kategori-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.kat-hl-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1 / 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.kat-hl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.kat-hl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 1;
}

.kat-hl-card-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    font-size: 3.8rem;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    transition: transform 0.3s;
}

.kat-hl-card:hover .kat-hl-card-emoji {
    transform: translate(-50%, -70%) scale(1.15);
}

.kat-hl-card-info {
    position: relative;
    z-index: 2;
}

.kat-hl-card-name {
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.kat-hl-card-count {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}

.kat-hl-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media(max-width:900px){
    .kategori-highlight { padding: 60px 20px; }
    .kategori-highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media(max-width:480px){
    .kategori-highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .kat-hl-card-name { font-size: 15px; }
    .kat-hl-card-emoji { font-size: 2.8rem; }
}

.vinyl-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #050510 50%, #0a0a0a 100%);
    padding: 90px 0 70px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vinyl-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(99,102,241,0.07), transparent);
    pointer-events: none;
}

.vinyl-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 12px;
}

.vinyl-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.vinyl-section-header h2 span {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vinyl-section-header p {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

.vinyl-slideshow-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.vinyl-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.vinyl-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 0 80px;
    box-sizing: border-box;
}

.vinyl-visual {
    flex-shrink: 0;
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-disc {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: 
        repeating-radial-gradient(
            circle at 50%,
            #111 0px,
            #1a1a1a 2px,
            #111 4px,
            #0d0d0d 6px,
            #111 8px
        );
    position: relative;
    animation: vinylSpin 4s linear infinite;
    animation-play-state: paused;
    box-shadow: 
        0 0 0 2px #222,
        0 20px 60px rgba(0,0,0,0.8),
        0 0 40px rgba(99,102,241,0.15);
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.vinyl-groove {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at 50%,
        transparent 0px,
        transparent 8px,
        rgba(255,255,255,0.03) 8.5px,
        transparent 9px
    );
}

.vinyl-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.vinyl-label::after {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
    background: #0a0a0a;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}

.vinyl-label-title {
    font-size: 8px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    line-height: 1.2;
    padding: 0 8px;
}

.vinyl-label-sub {
    font-size: 7px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
}

.vinyl-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.6) 0%, transparent 70%);
    filter: blur(8px);
}

.vinyl-info {
    max-width: 460px;
    flex: 1;
}

.vinyl-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.vinyl-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.vinyl-desc {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vinyl-genres {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.vinyl-genres span {
    background: #0f172a;
    border: 1px solid #1e293b;
    color: #cbd5e1;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
}

.vinyl-price-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.vinyl-price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vinyl-qty {
    font-size: 13px;
    color: #64748b;
}

.vinyl-price {
    font-size: 16px;
    font-weight: 700;
    color: #a855f7;
}

.vinyl-btn-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    letter-spacing: 0.3px;
}

.vinyl-btn-wa svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.vinyl-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2ee070, #15a081);
}

.vinyl-prev,
.vinyl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(6px);
}

.vinyl-prev { left: 16px; }
.vinyl-next { right: 16px; }

.vinyl-prev:hover,
.vinyl-next:hover {
    background: rgba(99,102,241,0.35);
    border-color: rgba(99,102,241,0.6);
}

.vinyl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.vinyl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
    cursor: pointer;
    transition: 0.3s;
}

.vinyl-dot.active {
    background: #a855f7;
    transform: scale(1.3);
}

@media(max-width: 900px) {
    .vinyl-section-header { padding: 0 20px; }

    .vinyl-slide {
        flex-direction: column;
        gap: 32px;
        padding: 0 24px;
        text-align: center;
    }

    .vinyl-visual { width: 200px; height: 200px; }
    .vinyl-disc   { width: 190px; height: 190px; }
    .vinyl-label  { width: 76px;  height: 76px;  }

    .vinyl-info { max-width: 100%; }
    .vinyl-title { font-size: 22px; }

    .vinyl-genres { justify-content: center; }
    .vinyl-price-row { justify-content: center; }
}

@media(max-width: 520px) {
    .vinyl-title { font-size: 19px; }
    .vinyl-desc  { font-size: 13px; }
    .vinyl-btn-wa { font-size: 13px; padding: 11px 20px; }
    .vinyl-visual { width: 160px; height: 160px; }
    .vinyl-disc   { width: 155px; height: 155px; }
    .vinyl-label  { width: 62px;  height: 62px;  }
    .vinyl-label-title { font-size: 7px; }
}
