/* 
 * Ultimate DJ & Music Production Platform
 * Ultimate Visual Feast & Komi Full Suite
 * Inspired by solardo.komi.io
 * Author: XBT Yazılım Hizmetleri
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg-dark: #040508;
    --bg-card: rgba(18, 22, 32, 0.75);
    --bg-card-hover: rgba(24, 30, 48, 0.9);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 242, 254, 0.4);
    
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-purple: #9d4edf;
    --accent-magenta: #f72585;
    --accent-gold: #ffd700;
    
    --text-main: #ffffff;
    --text-muted: #cbd5e1;
    --text-dim: #64748b;
    
    --glass-blur: blur(24px) saturate(180%);
    --shadow-luxury: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.2);
    --shadow-neon: 0 0 25px rgba(0, 242, 254, 0.5), 0 0 50px rgba(157, 78, 223, 0.3);
    
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

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

/* Custom Sleek Dark Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 0px;
}
::-webkit-scrollbar-track {
    background: #040508;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00f2fe, #9d4edf);
    border-radius: 10px;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #09090b;
    color: #ffffff;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background: #09090b url('../media/ultimate_dj_backdrop.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(12, 14, 20, 0.55) 0%, rgba(6, 7, 10, 0.88) 100%), linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(16px) brightness(0.68) saturate(140%);
    z-index: 0;
}

.app-wrapper {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    background: rgba(16, 16, 20, 0.85);
    backdrop-filter: blur(20px);
    padding: 32px 32px 80px;
    min-height: 100vh;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.95);
}

/* Top Bar: Live Status & Language Switcher */
.top-lang-picker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.top-dj-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dj-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
}

.bpm-telemetry-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 16px #ef4444; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.lang-flags-row {
    display: flex;
    gap: 6px;
}

.lang-btn {
    background: #27272a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a1a1a6;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.lang-btn.active, .lang-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Solardo Profile Split Header (Exact Match to User Screenshot) */
.solardo-hero-split {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 28px;
    align-items: start;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .solardo-hero-split {
        grid-template-columns: 1fr;
    }
    .solardo-avatar-side {
        order: -1;
    }
}

/* Executive Letter Bio Document with Uploaded DJ Photo Background */
.solardo-bio-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.88) 0%, rgba(8, 10, 16, 0.96) 100%), url('../media/bio_dj_bg.jpg') center/cover no-repeat;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 24px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), inset 0 0 40px rgba(0, 242, 254, 0.08);
}

.bio-letter-header {
    margin-bottom: 6px;
}

.bio-main-quote {
    font-family: 'Playfair Display', 'Cinzel', 'Georgia', serif;
    font-size: 23px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    line-height: 1.45;
    background: linear-gradient(135deg, #ffffff 40%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: -0.2px;
    filter: drop-shadow(0 2px 10px rgba(0, 242, 254, 0.25));
}

.bio-letter-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Continuous Executive Letter Paragraphs (No Icons, No Fragmented Boxes) */
.bio-letter-paragraph {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 15px;
    line-height: 1.85;
    color: #e2e8f0;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.bio-letter-paragraph:hover {
    color: #ffffff;
}

.bio-letter-paragraph.highlight-paragraph {
    color: #ffffff;
    font-weight: 600;
    background: rgba(0, 242, 254, 0.06);
    border-left: 2px solid #00f2fe;
    padding: 10px 16px;
    border-radius: 0 10px 10px 0;
}

.bio-letter-footer {
    margin-top: 10px;
}

.bio-badge-bottom {
    align-self: flex-start;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00f2fe;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(0, 242, 254, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(0, 242, 254, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.bio-badge-bottom:hover {
    background: rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
    color: #ffffff;
}

.solardo-avatar-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solardo-avatar-wrapper {
    position: relative;
    width: 220px;
    margin: 0 auto 18px;
}

.spinning-vinyl-disc {
    position: absolute;
    top: -12px;
    right: -42px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, #111 25%, #222 30%, #111 40%, #1a1a1a 50%, #0d0d0d 70%, #000 100%);
    border: 3px solid #27272a;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.95), inset 0 0 15px rgba(255, 255, 255, 0.15);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinVinyl 10s linear infinite;
    pointer-events: none;
}

.vinyl-center-label {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: radial-gradient(circle, #00f2fe 0%, #0066ff 100%);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.7);
}

/* Metallic Turntable Tonearm Needle (Ultra-Creative Audio Hardware Detail) */
.turntable-tonearm {
    position: absolute;
    top: -25px;
    right: -15px;
    z-index: 3;
    pointer-events: none;
    transform: rotate(18deg);
    transform-origin: top right;
    transition: transform 0.5s ease;
}

.tonearm-pivot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, #e2e8f0 0%, #64748b 100%);
    border: 2px solid #00f2fe;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
}

.tonearm-arm {
    width: 3px;
    height: 110px;
    background: linear-gradient(180deg, #94a3b8, #cbd5e1, #475569);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.tonearm-headshell {
    width: 14px;
    height: 22px;
    background: #00f2fe;
    border-radius: 4px;
    margin: -4px auto 0;
    box-shadow: 0 0 12px #00f2fe;
}

/* Interactive Live DJ Synth Pad Matrix Section */
.dj-soundboard-matrix {
    background: rgba(24, 24, 27, 0.85);
    backdrop-filter: blur(25px);
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 102, 255, 0.1);
}

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

.soundboard-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.soundboard-title i {
    color: #00f2fe;
    margin-right: 6px;
}

.soundboard-sub {
    font-size: 11.5px;
    color: #a1a1a6;
}

.synth-pads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .synth-pads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.synth-pad {
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.9), rgba(24, 24, 27, 0.95));
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.synth-pad:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: #00f2fe;
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.35);
}

.synth-pad:active {
    transform: scale(0.95);
    background: linear-gradient(135deg, #00f2fe, #0066ff);
    box-shadow: 0 0 30px #00f2fe;
}

.synth-pad:active .pad-label {
    color: #ffffff;
}

.pad-icon {
    font-size: 20px;
}

.pad-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #e2e8f0;
}

.solardo-avatar-card {
    position: relative;
    z-index: 1;
    width: 220px;
    height: 290px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 102, 255, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.solardo-avatar-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(0, 242, 254, 0.45);
}

.avatar-live-equalizer {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.avatar-live-equalizer span {
    width: 3px;
    background: #00f2fe;
    border-radius: 2px;
    animation: eqBounce 0.8s infinite ease-in-out alternate;
}

.avatar-live-equalizer span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.avatar-live-equalizer span:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.avatar-live-equalizer span:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.avatar-live-equalizer span:nth-child(4) { height: 80%; animation-delay: 0.4s; }
.avatar-live-equalizer span:nth-child(5) { height: 50%; animation-delay: 0.15s; }

.solardo-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kubs-brand-header {
    text-align: center;
    margin: 20px 0 14px;
}

.kubs-brand-emblem {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00f2fe;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6), 0 0 40px rgba(0, 102, 255, 0.4);
    margin: 0 auto 10px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kubs-brand-emblem:hover {
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.8), 0 0 50px rgba(0, 102, 255, 0.6);
}

.kubs-domain-tag {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #00f2fe;
    text-transform: uppercase;
    margin-top: 4px;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.solardo-logo-title {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 30%, #00f2fe 70%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2px;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.4));
}

.logo-soundwave-bar {
    width: 120px;
    height: 20px;
    margin: 0 auto 14px;
}

.soundwave-svg {
    width: 100%;
    height: 100%;
}

.solardo-social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.solardo-social-row a {
    color: #a1a1a6;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.solardo-social-row a:hover {
    color: #00f2fe;
    transform: translateY(-3px) scale(1.15);
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.6));
}

.solardo-pills-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 8px;
    padding: 8px 12px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
}

.solardo-pill {
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.solardo-pill:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.solardo-pill.active {
    background: rgba(0, 242, 254, 0.12);
    color: #00f2fe;
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
}
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.solardo-pill:hover {
    opacity: 0.85;
}

/* Sections & Headings */
.komi-section {
    margin-bottom: 36px;
}

.komi-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.komi-section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Single Hero / Banner Cards */
.komi-hero-banner {
    background: #27272a;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.komi-hero-banner:hover {
    background: #3f3f46;
    transform: translateY(-2px);
}

.solardo-card-cover-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.solardo-card-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solardo-hero-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.solardo-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
}

.solardo-card-artist {
    font-size: 13px;
    color: #a1a1a6;
}

/* Music 3-Column Grid (Adapted for Wider Wrapper) */
.solardo-music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
}

.solardo-music-card {
    background: #27272a;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.solardo-music-card:hover {
    background: #3f3f46;
    transform: translateY(-2px);
}

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

.solardo-play-pill {
    align-self: flex-start;
    padding: 5px 16px;
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

/* Tour Horizontal Scroll Carousel (Exact Screenshot Match) */
.solardo-tour-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 10px 20px 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.solardo-tour-grid::-webkit-scrollbar {
    display: none;
}

.solardo-tour-card-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 340px;
    padding-left: 20px;
    margin-top: 10px;
}

.solardo-date-box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100px;
    height: 105px;
    background: #27272a;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.date-inner-frame {
    width: 100%;
    height: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.solardo-date-month {
    font-size: 13px;
    font-weight: 800;
    color: #a1a1a6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solardo-date-day {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin: 2px 0;
}

.solardo-date-year {
    font-size: 12px;
    font-weight: 700;
    color: #a1a1a6;
}

.solardo-tour-card {
    flex: 1;
    background: #222225;
    border-radius: 14px;
    padding: 20px 24px 20px 95px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.solardo-tour-venue {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.solardo-tour-city {
    font-size: 13.5px;
    color: #a1a1a6;
    margin-bottom: 6px;
}

.solardo-ticket-btn {
    align-self: flex-start;
    padding: 6px 20px;
    border-radius: 20px;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.solardo-ticket-btn:hover {
    background: #ffffff;
    color: #000000;
}

.solardo-ticket-btn.sold-out {
    border-color: #71717a;
    color: #71717a;
}
    margin-top: 4px;
}

/* Videos Grid */
.solardo-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Playlist Card */
.solardo-playlist-card {
    background: #27272a;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.solardo-playlist-card:hover {
    background: #3f3f46;
}

.playlist-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.playlist-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.playlist-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.playlist-artist {
    font-size: 12px;
    color: #a1a1a6;
    margin-bottom: 4px;
}

.spotify-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 14px;
    background: #1db954;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
}

/* TikTok Portrait Carousel (Exact Match to User Screenshot) */
.solardo-tiktok-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.tiktok-card {
    position: relative;
    flex: 0 0 165px;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: #27272a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.25s ease;
}

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

.tiktok-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tiktok-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 10px;
}

.tiktok-caption {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    text-align: center;
    line-height: 1.3;
}

.tiktok-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-left: 3px;
    margin: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

/* Mailing List Card */
.solardo-mailing-card {
    background: #27272a;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
}

.mailing-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mailing-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}

.mailing-text {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.mailing-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 16px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* Solardo Komi Footer */
.solardo-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #27272a;
}

.komi-footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 4px;
}

.komi-footer-sub {
    font-size: 12px;
    color: #71717a;
}

.artist-subtitle {
    font-size: 13px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 18px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 20px;
}

.artist-tagline {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.social-strip {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 20px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.social-icon-btn:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #ffffff;
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 12px 25px rgba(0, 242, 254, 0.5);
}

/* EXPANDED FLEX FIT NAVIGATION BAR */
.pills-nav-wrapper {
    position: sticky;
    top: 16px;
    z-index: 100;
    margin-bottom: 28px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.pills-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(10, 14, 24, 0.92);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 242, 254, 0.15);
    overflow: hidden;
}

.pill-item {
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pill-item:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border-color: rgba(0, 242, 254, 0.5);
    transform: translateY(-2px);
}

.pill-item.active {
    background: linear-gradient(135deg, #1c2438, #2e1a4e);
    color: #ffffff;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 22px rgba(0, 242, 254, 0.45);
    position: relative;
}

.pill-item.active::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Section Header */
.section-title {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-main);
    margin: 36px 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-nav-arrows {
    display: flex;
    gap: 8px;
}

.carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

/* 
 * KOMI CARD DESIGN SYSTEM (EXACT MATCH TO USER SCREENSHOT)
 */
.komi-hero-banner {
    position: relative;
    background: #232326;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px 24px 20px 100px;
    margin-top: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    min-height: 125px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.komi-music-list {
    padding-left: 45px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.komi-music-card {
    position: relative;
    background: #232326;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px 24px 20px 95px;
    display: flex;
    align-items: center;
    min-height: 125px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.komi-music-card:hover,
.komi-hero-banner:hover {
    background: #2b2b30;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.komi-music-cover-wrap,
.komi-hero-cover-wrap {
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    width: 125px;
    height: 125px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.komi-music-cover-img,
.komi-hero-cover-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.komi-cover-play-icon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.komi-music-card:hover .komi-cover-play-icon,
.komi-hero-banner:hover .komi-cover-play-icon {
    opacity: 1;
}

.komi-cover-play-icon i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding-left: 3px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.komi-section-heading {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.komi-music-content,
.komi-hero-text-box {
    margin-left: 0;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.komi-music-title,
.komi-hero-title-text {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
}

.komi-music-artist,
.komi-hero-artist-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #a1a1a6;
    font-weight: 500;
    margin-bottom: 8px;
}

.komi-play-pill {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.komi-music-card:hover .komi-play-pill,
.komi-hero-banner:hover .komi-play-pill {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* 
 * KOMI LATEST VIDEOS CAROUSEL (EXACT MATCH TO SCREENSHOT 7)
 */
.video-carousel-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.komi-video-card {
    min-width: 280px;
    max-width: 310px;
    height: 175px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    transition: all 0.35s ease;
}

.komi-video-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 242, 254, 0.3);
}

.komi-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.komi-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 5, 8, 0.95) 0%, rgba(4, 5, 8, 0.3) 50%, rgba(4, 5, 8, 0.1) 100%);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.komi-video-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.komi-video-play-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: auto;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.komi-video-card:hover .komi-video-play-icon {
    transform: scale(1.15);
    background: var(--accent-cyan);
}

/* CHART LIST WRAPPER */
.chart-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

/* KOMI TOUR CAROUSEL */
.tour-carousel-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tour-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.komi-tour-card {
    min-width: 290px;
    max-width: 320px;
    background: rgba(24, 28, 40, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px 20px 16px 135px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.komi-tour-card:hover {
    background: rgba(34, 40, 58, 0.95);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.2);
}

.tour-date-box-komi {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: rgba(36, 42, 58, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.tour-date-month {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.tour-date-day {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 2px 0;
}

.tour-date-year {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 700;
}

.komi-tour-venue {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.komi-tour-city {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.komi-ticket-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.komi-tour-card:hover .komi-ticket-pill {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.komi-ticket-pill.sold-out {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
    border-color: rgba(255, 71, 87, 0.4);
}

/* KOMI MUSIC CAROUSEL */
.music-carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.music-card-komi {
    background: rgba(24, 28, 40, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-card-komi:hover {
    background: rgba(34, 40, 58, 0.95);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 20px rgba(0, 242, 254, 0.2);
}

.komi-track-cover {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.komi-track-details {
    flex: 1;
    min-width: 0;
}

.komi-track-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.komi-track-artist {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.komi-play-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.music-card-komi:hover .komi-play-pill {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

/* KOMI TRACK MODAL POPUP WINDOW */
.komi-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.komi-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.komi-modal-box {
    background: #11141f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    width: 100%;
    max-width: 480px;
    padding: 28px 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 40px rgba(0, 242, 254, 0.2);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.komi-modal-overlay.active .komi-modal-box {
    transform: translateY(0) scale(1);
}

.komi-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.komi-modal-back-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.komi-modal-back-btn:hover {
    background: var(--accent-cyan);
    color: #000;
}

.komi-modal-header-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex: 1;
    text-align: center;
    padding: 0 12px;
}

.komi-modal-cover-wrapper {
    text-align: center;
    margin-bottom: 24px;
}

.komi-modal-cover-img {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.komi-modal-video-iframe {
    width: 100%;
    height: 260px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 254, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
}

.komi-modal-artist-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.komi-modal-artist-badge img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.komi-modal-track-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
}

.komi-modal-platforms-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.komi-platform-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.komi-platform-row:last-child {
    border-bottom: none;
}

.komi-platform-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.komi-platform-play-btn {
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.komi-platform-play-btn:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.komi-modal-footer {
    text-align: center;
    font-size: 11px;
    color: var(--text-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.komi-modal-footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Store Links Grid */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.link-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.3);
}

.link-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-icon {
    font-size: 24px;
    color: var(--accent-cyan);
}

/* ULTRA LUXURY EDITORIAL BIO STORY SECTION */
.bio-card {
    background: linear-gradient(145deg, rgba(14, 19, 32, 0.95), rgba(7, 9, 14, 0.98));
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.bio-card::before {
    content: '💎';
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 36px;
    opacity: 0.25;
    filter: drop-shadow(0 0 10px #00f2fe);
}

.bio-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(157, 78, 223, 0.18), transparent 70%);
    pointer-events: none;
}

.bio-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.4;
    border-left: 4px solid var(--accent-cyan);
    padding-left: 20px;
    filter: drop-shadow(0 2px 10px rgba(0, 242, 254, 0.25));
}

.bio-timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bio-paragraph-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: all 0.3s ease;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bio-paragraph-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 242, 254, 0.3);
    transform: translateX(4px);
}

.bio-paragraph-icon {
    font-size: 20px;
    color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 242, 254, 0.25);
}

.bio-paragraph-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 500;
}

.bio-final-badge {
    margin-top: 24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(157, 78, 223, 0.15));
    border: 1px solid rgba(0, 242, 254, 0.4);
    border-radius: 16px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 242, 254, 0.2);
}

/* Floating WhatsApp Support Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-widget:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Footer Credit */
.footer-bar {
    text-align: center;
    margin-top: 54px;
    font-size: 13px;
    color: var(--text-dim);
}

.footer-credit {
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Responsive Layout */
@media (max-width: 600px) {
    .app-wrapper { padding: 16px 12px 70px; }
    .hero-card { padding: 32px 18px; }
    .artist-title { font-size: 32px; }
    .bio-quote { font-size: 19px; }
    .bio-card { padding: 28px 18px; }
    .pill-item { padding: 7px 12px; font-size: 12px; }
    .music-carousel-wrapper { grid-template-columns: 1fr; }
    .komi-hero-banner { padding: 18px 16px; min-height: 100px; }
    .komi-hero-cover-wrap { width: 95px; height: 95px; left: -10px; }
    .komi-hero-text-box { margin-left: 95px; }
    .komi-hero-title-text { font-size: 15px; }
    .komi-modal-cover-img { width: 200px; height: 200px; }
    .komi-video-card { min-width: 230px; height: 145px; }
}
}

/* Ultimate Floating Mini Audio Player Bar */
.floating-audio-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 9999;
    width: 90%;
    max-width: 600px;
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 20px;
    padding: 10px 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 102, 255, 0.2);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-audio-bar.active {
    transform: translateX(-50%) translateY(0);
}

.floating-player-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-cover-img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.floating-track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.floating-track-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.floating-artist-name {
    font-size: 11.5px;
    color: #a1a1a6;
}

.floating-equalizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    margin-right: 8px;
}

.floating-equalizer-bars span {
    width: 3px;
    background: #0066ff;
    border-radius: 2px;
    animation: eqBounce 1s infinite ease-in-out alternate;
}

.floating-equalizer-bars span:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.floating-equalizer-bars span:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.floating-equalizer-bars span:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.floating-equalizer-bars span:nth-child(4) { height: 80%; animation-delay: 0.4s; }

@keyframes eqBounce {
    0% { height: 20%; }
    100% { height: 100%; }
}

.floating-play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0066ff;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.5);
    transition: transform 0.2s ease;
}

.floating-play-btn:hover {
    transform: scale(1.08);
}

.floating-close-btn {
    background: none;
    border: none;
    color: #a1a1a6;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.floating-close-btn:hover {
    color: #ffffff;
}
