/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility Styles */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid var(--crimson-bright);
    outline-offset: 2px;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--crimson-bright);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Error message styles */
.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-status {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a0505 100%);
    border-bottom: 2px solid var(--crimson-bright);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sharp);
    background: transparent;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.92;
}

.nav-logo img {
    display: block;
    height: var(--logo-nav-height);
    width: auto;
    max-width: min(48vw, var(--logo-nav-max-width));
    object-fit: contain;
    object-position: center center;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 3px;
}

.nav-link:hover {
    color: var(--crimson-bright);
    background: rgba(255, 0, 0, 0.1);
}

.nav-link.active {
    color: var(--crimson-bright);
    background: rgba(255, 0, 0, 0.2);
    border-bottom: 2px solid var(--crimson-bright);
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #2d0000 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--crimson-bright);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

/* Interactive Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.1) 0%, 
        rgba(139, 0, 0, 0.2) 25%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(139, 0, 0, 0.2) 75%, 
        rgba(255, 0, 0, 0.1) 100%
    );
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 100, 100, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    animation: particleFloat 12s linear infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.6; }
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 10, 10, 0.85) 0%, 
        rgba(139, 0, 0, 0.15) 25%, 
        rgba(255, 0, 0, 0.08) 50%, 
        rgba(139, 0, 0, 0.15) 75%, 
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--crimson-bright);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
    color: var(--chrome);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    border: 1px solid var(--crimson-bright);
    border-radius: var(--radius-sharp);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    background: linear-gradient(45deg, var(--blood), #990000);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--crimson-bright);
}

.btn-secondary:hover {
    background: var(--crimson-bright);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: relative;
}

.music-visualizer {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 200px;
}

.bar {
    width: 8px;
    background: linear-gradient(to top, var(--crimson-bright), var(--blood));
    border-radius: 4px;
    animation: visualizer 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.bar:nth-child(1) { height: 40px; animation-delay: 0s; }
.bar:nth-child(2) { height: 80px; animation-delay: 0.1s; }
.bar:nth-child(3) { height: 120px; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 160px; animation-delay: 0.3s; }
.bar:nth-child(5) { height: 200px; animation-delay: 0.4s; }
.bar:nth-child(6) { height: 160px; animation-delay: 0.5s; }
.bar:nth-child(7) { height: 120px; animation-delay: 0.6s; }
.bar:nth-child(8) { height: 80px; animation-delay: 0.7s; }

@keyframes visualizer {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Beats Section */
.beats-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
    border-top: 2px solid var(--crimson-bright);
    border-bottom: 2px solid var(--crimson-bright);
}

.beats-actions {
    text-align: center;
    margin-bottom: 40px;
}

.beats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.beat-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: transform 0.25s ease;
    box-shadow: none;
}

.beat-card.thorn-card {
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.beat-card.thorn-card.thorn-surface {
    background: rgba(5, 5, 5, 0.78);
}

.beat-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
    background: transparent;
}

.beat-card.thorn-surface:hover {
    background: rgba(5, 5, 5, 0.78);
}

.beat-cover {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--crimson-bright);
}

.beat-cover i {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.beat-cover:hover i {
    transform: scale(1.2);
    opacity: 1;
}

.beat-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.beat-info p {
    color: #ccc;
    margin-bottom: 1rem;
}

.audio-player {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.beat-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--crimson-bright);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #1a0000 0%, #0a0a0a 100%);
    border-top: 2px solid var(--crimson-bright);
    border-bottom: 2px solid var(--crimson-bright);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 2rem;
    border: 2px solid #8B0000;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.service-card.thorn-card {
    border: none;
    border-radius: 0;
    overflow: visible;
    background: rgba(10, 10, 10, 0.75);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
    border-color: var(--crimson-bright);
    background: rgba(139, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--crimson-bright);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--crimson-bright);
    font-weight: bold;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--crimson-bright);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
    border-top: 2px solid var(--crimson-bright);
    border-bottom: 2px solid var(--crimson-bright);
}

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

.about-text h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--crimson-bright);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

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

.studio-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border: 3px solid var(--crimson-bright);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.studio-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #1a0000 0%, #0a0a0a 100%);
    border-top: 2px solid var(--crimson-bright);
    border-bottom: 2px solid var(--crimson-bright);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 2px solid var(--crimson-bright);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #ccc;
}

.contact-form {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #8B0000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--crimson-bright);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--crimson-bright);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 6px var(--glow-crimson));
}


.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--crimson-bright);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--crimson-bright);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--crimson-bright);
    color: #ccc;
}

/* License modal */
.license-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.license-modal-content {
    background: rgba(0,0,0,0.9);
    border: 2px solid #8B0000;
    border-radius: 12px;
    max-width: 720px;
    width: 95%;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.license-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.license-modal-header h3 { color: var(--crimson-bright); margin: 0; }
.license-close {
    background: none; border: none; color: #ccc; font-size: 1.5rem; cursor: pointer;
}
.license-options { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.license-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: .75rem 1rem;
    border: 1px solid rgba(255,0,0,.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
}
.license-option input { transform: scale(1.2); }
.license-info .license-name { color: #fff; font-weight: 600; }
.license-info .license-terms { color: #bbb; font-size: .9rem; }
.license-price { color: var(--crimson-bright); font-weight: 700; }
.license-actions { display: flex; justify-content: flex-end; gap: .75rem; }

/* Cart drawer */
.cart-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}

    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}

    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}

    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}

    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}

    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}

    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}

    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}

    width: 420px;
    max-width: 95vw;
    background: rgba(0,0,0,0.96);
    border-left: 2px solid #8B0000;
    z-index: 10000;
    padding: 1rem;
    display: none;
}

/* License option highlight */
.license-option { cursor: pointer; transition: all .2s ease; }
.license-option input { display: none; }
.license-option.selected {
    border-color: var(--crimson-bright);
    background: rgba(139,0,0,0.20);
    box-shadow: 0 0 0 2px rgba(255,0,0,0.25);
}
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.cart-header h4 { color:var(--crimson-bright); margin:0; }
.cart-close { background:none;border:none;color:#ccc;font-size:1.5rem;cursor:pointer; }
.cart-items { display:flex; flex-direction:column; gap:.5rem; max-height:50vh; overflow:auto; }
.cart-item { display:grid; grid-template-columns: 1fr auto; gap:.75rem; border:1px solid rgba(255,0,0,.25); border-radius:10px; padding:.75rem; background:rgba(255,255,255,0.03); }
.cart-item-title { color:#fff; font-weight:600; }
.cart-item-meta { color:#bbb; font-size:.9rem; }
.cart-item-actions { display:flex; gap:.5rem; align-items:center; }
.cart-qty { width:60px; padding:.4rem; border-radius:6px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
.cart-remove { background:#ff6b6b; color:#fff; border:none; border-radius:6px; padding:.4rem .6rem; cursor:pointer; }
.cart-coupon { display:flex; gap:.5rem; align-items:center; margin-top: .75rem; }
#coupon-code { flex:1; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); color:#fff; }
#apply-coupon { background:#4ecdc4; color:#fff; border:none; border-radius:8px; padding:.6rem .8rem; cursor:pointer; }
.cart-summary { display:flex; justify-content:space-between; align-items:center; margin-top: .75rem; }
.cart-subtotal { color:#fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid var(--crimson-bright);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    /* Mobile interactive background adjustments */
    .hero-gradient-bg {
        opacity: 0.8;
    }
    
    .hero-particles {
        opacity: 0.6;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(139, 0, 0, 0.2) 25%, 
            rgba(255, 0, 0, 0.1) 50%, 
            rgba(139, 0, 0, 0.2) 75%, 
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .beats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B0000, var(--crimson-bright));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--crimson-bright), var(--blood));
}
