:root {
    /* Colors */
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --border-color: rgba(255, 255, 255, 0.2);
    
    /* User Requested Accents */
    --accent-blue: #00e5ff;
    --accent-purple: #b388ff;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-signature: 'Alex Brush', cursive;
    
    /* Animation */
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.4s ease-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography & Layout */
a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-subheading {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.bg-pitch-black {
    background-color: #020202;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    background: transparent;
    text-transform: uppercase;
}

.btn-outline {
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.75rem;
}

/* Hover Accents for Buttons */
.glow-blue:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.2), 0 0 15px rgba(0, 229, 255, 0.3);
}

.glow-purple:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    box-shadow: inset 0 0 10px rgba(179, 136, 255, 0.2), 0 0 15px rgba(179, 136, 255, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.navbar.scrolled {
    background: #000000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 40px;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

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

.social-links a {
    font-size: 1.2rem;
    color: var(--text-primary);
}

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

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 12px;
    font-weight: 600;
}

.logo:hover {
    color: var(--text-muted);
}

.nav-subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 600;
}

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

.nav-links a:hover {
    color: var(--text-muted);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.98);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.slide-content {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.listen-now-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all var(--transition-fast);
    text-align: center;
    display: inline-block;
}

.listen-now-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 20;
    transition: color 0.3s ease;
    padding: 20px;
}

.slider-arrow:hover {
    color: #ffffff;
}

.prev-arrow {
    left: 2%;
}

.next-arrow {
    right: 2%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: var(--font-signature);
    font-size: 8rem;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 8px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}

/* Tour / Beat List Style */
.tour-list {
    max-width: 900px;
    margin: 0 auto;
}

.tour-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: background var(--transition-fast);
}

.tour-row:hover {
    background: rgba(255,255,255,0.02);
}

.tour-left {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.play-btn {
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.play-btn:hover {
    color: var(--accent-blue);
}

.tour-center {
    flex: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.tour-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.tour-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Embed Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #050505;
    border: 1px solid var(--border-color);
    padding: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: -40px; right: 0px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

#embed-container {
    width: 100%;
    min-height: 152px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-platforms {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Video Grid Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.video-card {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

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

.video-card:hover .play-btn-overlay {
    transform: scale(1.15);
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.play-btn-overlay {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.play-btn-overlay i {
    margin-left: 4px; /* Optically center the play triangle */
}

.video-title {
    margin-top: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-primary);
}

.video-btn-container {
    text-align: center;
    margin-top: 30px;
}

/* Streaming section */
.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stream-card {
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition-medium);
}

.stream-card i {
    font-size: 2.5rem;
}

.stream-card span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Contact / Tour List Style */
.contact-list {
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-type {
    flex: 1;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
}

.contact-detail {
    flex: 2;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 60px;
}

.footer-logo {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links, .social-links { display: none; }
    .mobile-menu-btn { display: block; }
    .navbar { padding: 20px; }
    
    .nav-right { flex: 0; }
    
    .hero-title { font-size: 5rem; }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .contact-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
