/* 
   Codee Watson Official Website Stylesheet
   Design Language: Obsidian & Gold (Premium Country Soul Aesthetic)
*/

/* --- Design Variables --- */
:root {
    /* Color Palette */
    --color-bg-base: #0a0a0c;
    --color-bg-surface: #141418;
    --color-bg-surface-glass: rgba(20, 20, 24, 0.6);
    --color-bg-card-glass: rgba(30, 30, 36, 0.45);
    
    --color-primary: hsl(43, 85%, 58%); /* Warm Amber Gold */
    --color-primary-hover: hsl(43, 90%, 50%);
    --color-primary-glow: rgba(220, 169, 44, 0.15);
    
    --color-secondary: hsl(24, 80%, 55%); /* Sunset Orange / Terracotta */
    --color-text-main: hsl(0, 0%, 96%);
    --color-text-muted: hsl(0, 0%, 70%);
    --color-text-dark: hsl(0, 0%, 15%);
    --color-border-glass: rgba(255, 255, 255, 0.08);
    --color-border-glass-active: rgba(220, 169, 44, 0.3);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Layout */
    --header-height: 80px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
    background: #25252b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* --- Reusable Components & Utilities --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 760px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--color-primary);
    font-weight: 500;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

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

/* Hide Utility */
.hide {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 169, 44, 0.3);
}

.btn-outline {
    border: 1px solid var(--color-border-glass);
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background-color: rgba(220, 169, 44, 0.04);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-glass);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

.disabled, [disabled] {
    opacity: 0.5;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Button SVG icons interaction */
.btn:hover .icon-arrow {
    transform: translateX(4px);
}
.icon-arrow {
    transition: var(--transition-fast);
}

/* --- Header / Navigation Bar --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: var(--color-bg-surface-glass);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--color-border-glass);
    height: 70px;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-text-main);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

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

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-normal);
}

/* Toggle Active State */
.mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Uses the generated concert portrait image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
    animation: zoomDrift 20s infinite alternate ease-in-out;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient over the image to give high premium contrast for typography */
    background: linear-gradient(
        to right,
        rgba(10, 10, 12, 0.95) 0%,
        rgba(10, 10, 12, 0.8) 45%,
        rgba(10, 10, 12, 0.4) 100%
    );
    z-index: 2;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--color-bg-base), transparent);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: var(--header-height) 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(220, 169, 44, 0.08);
    border: 1px solid var(--color-border-glass-active);
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.quick-streams {
    margin-top: 80px;
    border-top: 1px solid var(--color-border-glass);
    padding-top: 24px;
    max-width: 400px;
}

.streams-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 12px;
}

.stream-icons {
    display: flex;
    gap: 20px;
}

.stream-link {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.stream-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-text-muted);
    border-radius: 15px;
    display: block;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* --- Biography Section --- */
.bio-section {
    padding: 140px 0;
    position: relative;
    background-color: var(--color-bg-base);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.bio-image-wrapper {
    position: relative;
}

.bio-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background-color: var(--color-bg-surface);
}

.card-accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-border-glass-active);
    z-index: 2;
    pointer-events: none;
    border-radius: 16px;
}

.bio-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.1);
    transition: var(--transition-slow);
}

.bio-image-card:hover .bio-image {
    transform: scale(1.03);
}

.bio-text {
    display: flex;
    flex-direction: column;
}

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

.bio-quote {
    border-left: 3px solid var(--color-primary);
    padding-left: 24px;
    margin-top: 16px;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--color-text-main);
}

.bio-quote cite {
    display: block;
    font-family: var(--font-heading);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-top: 8px;
}

/* --- Music Section --- */
.music-section {
    padding: 140px 0;
    background: radial-gradient(circle at 80% 20%, rgba(220, 169, 44, 0.04) 0%, transparent 50%), var(--color-bg-base);
    border-top: 1px solid var(--color-border-glass);
    border-bottom: 1px solid var(--color-border-glass);
}

.music-player-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background-color: var(--color-bg-card-glass);
    border: 1px solid var(--color-border-glass);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Player Panel Styling */
.player-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--color-border-glass);
    padding-right: 48px;
}

.album-art-container {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.album-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.art-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.now-playing-info {
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
}

.track-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-album {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Audio Controls Interface */
.audio-controls-interface {
    width: 100%;
}

.time-slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}

.time-indicator {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-variant-numeric: tabular-nums;
}

.progress-bar-outer {
    flex: 1;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-bar-inner {
    height: 100%;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-handle {
    width: 12px;
    height: 12px;
    background-color: var(--color-text-main);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform var(--transition-fast);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    pointer-events: none;
}

.progress-bar-outer:hover .progress-handle {
    transform: translate(-50%, -50%) scale(1);
}

.player-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 28px;
}

.player-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.player-btn:hover {
    color: var(--color-text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-play {
    width: 56px;
    height: 56px;
    background-color: var(--color-text-main);
    color: var(--color-bg-base);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-play:hover {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    box-shadow: 0 4px 20px rgba(220, 169, 44, 0.25);
    transform: scale(1.05);
}

.volume-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 160px;
    margin: 0 auto;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.volume-container:hover {
    opacity: 1;
}

.volume-icon {
    color: var(--color-text-muted);
}

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-text-main);
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb:hover {
    background-color: var(--color-primary);
}

/* Tracklist Panel Styling */
.tracklist-panel {
    display: flex;
    flex-direction: column;
}

.panel-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.track-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border-glass);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.track-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.track-row.active {
    background-color: rgba(220, 169, 44, 0.05);
    border-color: var(--color-border-glass-active);
}

.track-number {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    width: 32px;
}

.track-row.active .track-number {
    color: var(--color-primary);
}

.track-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.track-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

.badge-feat {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-left: 6px;
    padding: 2px 6px;
    background-color: rgba(220,169,44,0.06);
    border-radius: 4px;
    border: 1px solid var(--color-border-glass-active);
}

.track-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.track-length {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-right: 20px;
    font-variant-numeric: tabular-nums;
}

.track-play-row-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.track-row:hover .track-play-row-btn {
    background-color: var(--color-text-main);
    color: var(--color-bg-base);
}

.track-row.active .track-play-row-btn {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
}

.discography-disclaimer {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    border-top: 1px solid var(--color-border-glass);
    padding-top: 20px;
}

/* --- Tour Section --- */
.tour-section {
    padding: 140px 0;
    background-color: var(--color-bg-base);
}

.tour-table-container {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tour-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.tour-table th, .tour-table td {
    padding: 24px 32px;
}

.tour-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border-glass);
    background-color: rgba(255, 255, 255, 0.01);
}

.tour-table tbody tr {
    border-bottom: 1px solid var(--color-border-glass);
    transition: var(--transition-fast);
}

.tour-table tbody tr:last-child {
    border-bottom: none;
}

.tour-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.tour-date {
    display: flex;
    flex-direction: column;
}

.tour-date .day {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.tour-date .year {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.tour-venue {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

.tour-location {
    color: var(--color-text-muted);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.selling-fast {
    background-color: rgba(230, 92, 0, 0.1);
    color: hsl(24, 80%, 55%);
    border: 1px solid rgba(230, 92, 0, 0.2);
}

.on-sale {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.sold-out {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border-glass);
}

.tour-action {
    text-align: right;
}

/* --- Booking & Contact Section --- */
.booking-section {
    padding: 140px 0;
    position: relative;
    background-color: var(--color-bg-base);
    border-top: 1px solid var(--color-border-glass);
    overflow: hidden;
}

.booking-bg-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(220, 169, 44, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.booking-card {
    position: relative;
    z-index: 2;
    background-color: var(--color-bg-card-glass);
    border: 1px solid var(--color-border-glass);
    border-radius: 24px;
    padding: 56px 48px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(220, 169, 44, 0.05);
}

/* Custom Dropdown select box */
.select-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888888' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.select-control option {
    background-color: var(--color-bg-surface);
    color: var(--color-text-main);
}

textarea.form-control {
    resize: vertical;
}

/* Error States */
.error-msg {
    font-size: 0.78rem;
    color: #e65c00;
    display: none;
    margin-top: 4px;
}

.form-group.invalid .form-control {
    border-color: #e65c00;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Submission Spinner */
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-text-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Success Card */
.form-success-card {
    text-align: center;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.form-success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-success-card p {
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--color-text-muted);
    max-width: 320px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px 8px 8px;
    border: 1px solid var(--color-border-glass);
    border-radius: 999px;
    color: var(--color-text-muted);
    font-size: 0.76rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.social-links a span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(220, 169, 44, 0.12);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.64rem;
    font-weight: 800;
}

.social-links a:hover {
    border-color: var(--color-border-glass-active);
    color: var(--color-text-main);
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-list a:hover {
    color: var(--color-text-main);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-glass);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--color-text-main);
}

/* --- Keyframe Animations --- */
@keyframes zoomDrift {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.06) translate(-1%, -1%);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        top: 6px;
    }
    30% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        top: 26px;
    }
    100% {
        opacity: 0;
        top: 26px;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* CSS Animation classes */
.animate-fade-in {
    animation: fadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.animate-fade-in-delayed {
    animation: fadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.6s forwards;
    opacity: 0;
}
.animate-slide-up {
    animation: slideUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.animate-slide-up-delayed {
    animation: slideUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s forwards;
    opacity: 0;
}
.animate-slide-up-delayed-more {
    animation: slideUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .bio-image {
        height: 400px;
    }
    
    .music-player-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .player-panel {
        border-right: none;
        border-bottom: 1px solid var(--color-border-glass);
        padding-right: 0;
        padding-bottom: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    /* Responsive Header & Mobile Menu */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-base);
        border-top: 1px solid var(--color-border-glass);
        flex-direction: column;
        justify-content: flex-start;
        padding: 48px 24px;
        gap: 24px;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tour-table th:nth-child(4),
    .tour-table td:nth-child(4) {
        display: none; /* Hide Status Badge on small screens to fit */
    }
    
    .tour-table th, .tour-table td {
        padding: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .album-art-container {
        width: 220px;
        height: 220px;
    }

    .music-player-grid {
        padding: 24px 18px;
    }

    .player-panel,
    .tracklist-panel,
    .spotify-embed-container {
        min-width: 0;
        width: 100%;
    }
    
    .booking-card {
        padding: 32px 20px;
    }
}

/* --- Videos Page --- */
.videos-page {
    background: var(--color-bg-base);
}

.videos-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-height) + 90px) 0 90px;
    background:
        linear-gradient(90deg, rgba(8, 8, 10, 0.98) 0%, rgba(8, 8, 10, 0.84) 50%, rgba(8, 8, 10, 0.68) 100%),
        url("assets/hero_bg.jpg") center 32% / cover no-repeat;
}

.videos-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(transparent, var(--color-bg-base));
    pointer-events: none;
}

.videos-hero-glow {
    position: absolute;
    width: 680px;
    height: 680px;
    right: -180px;
    top: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 169, 44, 0.16), transparent 68%);
    pointer-events: none;
}

.videos-hero-content {
    position: relative;
    z-index: 2;
}

.video-page-title {
    max-width: 780px;
    margin: 12px 0 20px;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6.4rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.videos-hero-content > p {
    max-width: 680px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.channel-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    padding: 12px 18px 12px 12px;
    border: 1px solid var(--color-border-glass);
    border-radius: 999px;
    background: rgba(12, 12, 15, 0.68);
    backdrop-filter: blur(12px);
    transition: var(--transition-normal);
}

.channel-pill:hover {
    border-color: var(--color-border-glass-active);
    transform: translateY(-2px);
}

.youtube-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ff0033;
    color: #fff;
    font-size: 0.9rem;
    padding-left: 2px;
}

.channel-pill strong,
.channel-pill small {
    display: block;
}

.channel-pill strong {
    font-family: var(--font-heading);
    font-size: 0.96rem;
}

.channel-pill small {
    margin-top: 2px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.video-library {
    padding: 100px 0 120px;
}

.video-library-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.video-result-count {
    color: var(--color-text-muted);
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.video-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.video-filter {
    padding: 10px 17px;
    border: 1px solid var(--color-border-glass);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-filter:hover,
.video-filter:focus-visible {
    color: var(--color-text-main);
    border-color: rgba(255, 255, 255, 0.18);
}

.video-filter.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-text-dark);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.video-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    background: var(--color-bg-card-glass);
    animation: videoCardIn 0.5s both;
    animation-delay: var(--card-delay, 0ms);
    transition: var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-glass-active);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.video-thumbnail {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 0;
    background: #111;
    cursor: pointer;
}

.video-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.62));
    transition: var(--transition-normal);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.045);
}

.video-play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding-left: 4px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(8, 8, 10, 0.76);
    color: #fff;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(8px);
    transition: var(--transition-normal);
}

.video-thumbnail:hover .video-play,
.video-thumbnail:focus-visible .video-play {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-text-dark);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-thumbnail:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.video-duration {
    position: absolute;
    z-index: 2;
    right: 10px;
    bottom: 9px;
    padding: 4px 7px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.84);
    color: #fff;
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
}

.video-card-body {
    padding: 18px 18px 20px;
}

.video-type {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-type.lyric { color: #e8bf59; }
.video-type.official { color: #d99870; }

.video-card h3 {
    min-height: 2.7em;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 1.02rem;
    line-height: 1.35;
}

.video-card-body a {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.video-card-body a:hover {
    color: var(--color-primary);
}

.channel-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 64px;
    padding: 30px 34px;
    border: 1px solid var(--color-border-glass);
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(220, 169, 44, 0.08), rgba(255, 255, 255, 0.015));
}

.channel-cta p {
    color: var(--color-text-muted);
}

.video-modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    place-items: center;
    padding: 24px;
}

.video-modal.open {
    display: grid;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 2, 3, 0.86);
    backdrop-filter: blur(12px);
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 960px);
    padding: 20px;
    border: 1px solid var(--color-border-glass-active);
    border-radius: 20px;
    background: #0b0b0e;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.68);
}

.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.video-modal-header h2 {
    overflow: hidden;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-modal-close {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border-glass);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.video-frame-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.watch-youtube-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 600;
}

.modal-open {
    overflow: hidden;
}

@keyframes videoCardIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .videos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .videos-hero { min-height: 520px; padding-top: calc(var(--header-height) + 65px); }
    .videos-hero-content > p { font-size: 1rem; }
    .video-library { padding: 76px 0 90px; }
    .video-library-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .videos-grid { grid-template-columns: 1fr; gap: 18px; }
    .video-filters { flex-wrap: nowrap; margin-right: -24px; padding-right: 24px; overflow-x: auto; scrollbar-width: none; }
    .video-filter { flex: 0 0 auto; }
    .channel-cta { align-items: stretch; flex-direction: column; }
    .channel-cta .btn { width: 100%; }
    .video-modal { padding: 12px; }
    .video-modal-dialog { padding: 12px; border-radius: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    .video-card { animation: none; }
}

/* --- Albums Grid Styling --- */
.albums-grid-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.albums-grid-title h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    border-left: 3px solid var(--color-primary);
    padding-left: 14px;
}

.album-count {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.album-card {
    background-color: var(--color-bg-card-glass);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    padding: 16px;
    transition: var(--transition-normal);
    backdrop-filter: blur(8px);
    min-width: 0;
}

.album-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-glass-active);
    box-shadow: 0 15px 30px rgba(220, 169, 44, 0.08);
}

.album-cover-wrap {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.album-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.album-card:hover .album-cover-wrap img {
    transform: scale(1.05);
}

.cover-action {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(8, 8, 10, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--color-text-main);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition-fast);
}

.album-cover-wrap:hover .cover-action,
.album-cover-wrap:focus-visible .cover-action {
    opacity: 1;
    transform: translateY(0);
}

.album-cover-wrap:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.album-card-body {
    padding: 0 2px 3px;
}

.album-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 7px;
    line-height: 1.3;
}

.album-card h4 small {
    color: var(--color-text-muted);
    font-size: 0.74em;
    font-weight: 500;
}

.album-card-body p {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.album-meta-badge {
    font-size: 0.72rem;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .album-card {
        padding: 12px;
    }

    .album-card h4 {
        font-size: 0.95rem;
    }

    .cover-action {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .albums-grid-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }
}
