/* =========================================
   Venradio - Karnaval.com Style Main CSS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Outfit:wght@400;600;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Cyberpunk 2077 Inspired Dark Neon Theme */
    --bg-base: #050508;
    /* Ultra dark, almost black */
    --bg-header: #0a0a0f;
    /* Slightly lighter for navbar */
    --bg-card: #0f1016;
    /* Card backgrounds */
    --bg-card-hover: #181922;

    /* Vibrant Neon Gradients & Accents */
    --grad-primary: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    /* Cyan to Deep Purple */
    --grad-secondary: linear-gradient(135deg, #ff0055 0%, #ffaa00 100%);
    /* Hot Pink to Orange */

    --accent-color: #00f0ff;
    /* Neon Cyan */
    --accent-hover: #00c3d9;

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    /* Zinc-400 */
    --text-muted: #52525b;
    /* Zinc-600 */

    --border-light: rgba(0, 240, 255, 0.15);
    /* Faint neon cyan border */
    --neon-glow: 0 0 10px rgba(0, 240, 255, 0.4), 0 0 20px rgba(0, 240, 255, 0.2);

    /* Fonts - Emphasize Orbitron for Cyberpunk feel */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-cyber: 'Orbitron', sans-serif;

    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-bg: rgba(10, 10, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-glass: rgba(15, 16, 28, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* --- Dynamic Cyberpunk Background --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 240, 255, 0.05) 2px, rgba(0, 240, 255, 0.05) 4px),
        radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.1) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vh;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: CyberRotate 30s linear infinite;
}

@keyframes CyberRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Aurora Gradient Orbs */
@keyframes auroraFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(100px, -50px) scale(1.3); opacity: 0.6; }
    50% { transform: translate(-50px, 100px) scale(0.9); opacity: 0.3; }
    75% { transform: translate(-100px, -30px) scale(1.1); opacity: 0.5; }
}
@keyframes auroraFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    33% { transform: translate(-80px, 60px) scale(1.4); opacity: 0.5; }
    66% { transform: translate(60px, -80px) scale(0.8); opacity: 0.4; }
}

/* --- Unified Sticky Hub --- */
.sticky-hub {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: rgba(5, 5, 12, 0.85);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 240, 255, 0.05);
    display: flex;
    flex-direction: column;
}

/* --- Public Header (Navbar) --- */
.public-header {
    width: 100%;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo span {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    background: linear-gradient(90deg, #00f0ff, #7000ff, #ff0055, #00f0ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoShimmer 4s ease-in-out infinite;
}

@keyframes logoShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.search-bar {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    /* Sharper */
    border: 1px solid var(--border-light);
    background-color: rgba(0, 240, 255, 0.03);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-bar input:focus {
    background-color: rgba(0, 240, 255, 0.08);
    box-shadow: var(--neon-glow);
    border-color: var(--accent-color);
}

/* Arama Motoru Dropdown Animasyonları (Aşama 43) */
#searchResultsDropdown::-webkit-scrollbar {
    width: 6px;
}

#searchResultsDropdown::-webkit-scrollbar-track {
    background: transparent;
}

#searchResultsDropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.3);
    border-radius: 3px;
}

#searchResultsDropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 240, 255, 0.6);
}

.search-item:hover {
    background: rgba(0, 240, 255, 0.1) !important;
    transform: translateX(5px);
    box-shadow: inset 3px 0 0 var(--accent-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-btn,
.premium-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    /* Sharper edges */
    font-weight: 600;
    font-family: var(--font-cyber);
    cursor: pointer;
    transition: var(--transition-fast);
}

.login-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    /* Thin neon border */
}

.login-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--neon-glow);
    border-color: var(--accent-color);
}

.premium-btn {
    background: var(--grad-primary);
    color: white;
    border: none;
    box-shadow: var(--neon-glow);
}

.premium-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

/* --- PowerApp Style Sub-Navigation Pills --- */
.power-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    /* Darker strip */
}

.power-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-cyber);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.power-nav a:hover {
    color: white;
    background: rgba(0, 240, 255, 0.05);
}

.power-nav a.active {
    color: var(--accent-color);
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: var(--neon-glow);
}

/* --- Main Layout --- */
.public-layout {
    margin-top: calc(72px + 90px + 50px);
    /* Height of Hub (header+player+nav) */
    padding: 2rem 4rem 100px;
}

/* --- Hero Showcase (Top Slider Area) --- */
.hero-showcase {
    width: 100%;
    height: 450px;
    position: relative;
    padding: 2rem 4rem;
    display: flex;
    gap: 2rem;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent 50%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.15), transparent 50%);
}

.hero-main {
    flex: 2;
    background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop') center/cover;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.hero-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-color);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: var(--font-cyber);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.play-large-btn {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    /* Sharp */
    background: var(--grad-primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    cursor: pointer;
    box-shadow: var(--neon-glow);
    transition: var(--transition-fast);
}

.play-large-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.3);
}

.hero-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-card {
    flex: 1;
    border-radius: 16px;
    background: var(--bg-card);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
}

.hero-side .side-card {
    background: var(--bg-card);
    border-radius: 4px;
    /* Sharper */
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

/* --- PowerApp Style Structural Classes --- */
.power-section {
    position: relative;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.neon-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    margin: 0;
}

.pill-filters {
    display: flex;
    gap: 0.8rem;
}

.pill {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    /* Pills keep their round shape by design */
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pill:hover {
    color: white;
    background: rgba(0, 240, 255, 0.05);
}

.pill.active {
    background: var(--grad-primary);
    color: white;
    border: none;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.list-item-cyber {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 240, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: var(--transition-fast);
    cursor: pointer;
    min-width: 300px;
    margin-bottom: 1rem;
}

.list-item-cyber:hover {
    background: rgba(0, 240, 255, 0.06);
    box-shadow: var(--neon-glow);
    transform: translateX(5px);
}

.list-art {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.list-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-info {
    flex: 1;
}

.list-info h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    color: white;
}

.list-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.play-sm-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.list-item-cyber:hover .play-sm-btn {
    background: var(--accent-color);
    color: black;
    box-shadow: 0 0 10px var(--accent-color);
}

/* --- Section Title and Scrollers --- */
.side-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.side-card.grad-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(2ec, 72, 153, 0.2) 100%);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.side-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.side-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Horizontal Scrollers & Filters (Karnaval Style) --- */
.section-wrapper {
    padding: 2rem 4rem;
}

.genre-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.genre-container::-webkit-scrollbar {
    display: none;
}

.genre-badge {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    /* Sharper */
    font-weight: 700;
    font-family: var(--font-cyber);
    /* Cyberpunk font */
    color: white;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}

.genre-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
    border-color: var(--accent-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.view-all {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.view-all:hover {
    color: var(--text-primary);
}

.horizontal-scroller {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.horizontal-scroller::-webkit-scrollbar {
    display: none;
}

.radio-card {
    min-width: 220px;
    flex: 0 0 auto;
}

#popularRadiosContainer,
#communityPlaylistsContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    overflow-x: visible;
    /* Override horizontal scroller for grid */
}

#popularRadiosContainer .radio-card,
#communityPlaylistsContainer .radio-card {
    min-width: 0;
    /* Reset flex min-width */
    width: 100%;
}

#popularRadiosContainer .radio-art,
#communityPlaylistsContainer .radio-art {
    aspect-ratio: 1 / 1;
    /* Ensure perfect squares */
}

#popularRadiosContainer .radio-info h4,
#communityPlaylistsContainer .radio-info h4 {
    font-size: 0.95rem;
}

#popularRadiosContainer .radio-info p,
#communityPlaylistsContainer .radio-info p {
    font-size: 0.75rem;
}

#moodsContainer {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    overflow-x: visible;
}

#moodsContainer .radio-card {
    min-width: 0;
    width: 100%;
}

#moodsContainer .radio-art {
    aspect-ratio: 1 / 1;
}

#moodsContainer .radio-info h4 {
    font-size: 0.85rem;
}

#moodsContainer .radio-info p {
    font-size: 0.70rem;
}

.radio-art {
    width: 100%;
    aspect-ratio: 1/1;
    background: #111;
    border-radius: 4px;
    /* Sharper */
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.radio-art:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.radio-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.radio-art:hover img {
    transform: scale(1.05);
}

.radio-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding-left: 3px;
    opacity: 0;
    transition: var(--transition-fast);
    cursor: pointer;
}

.radio-art:hover .radio-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.radio-play-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: black;
}

.radio-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.radio-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Billboard Top 50 Chart List --- */
.chart-list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-list-item {
    display: flex;
    align-items: center;
    background: rgba(0, 240, 255, 0.02);
    /* Faint cyan */
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 4px;
    /* Sharper edges */
    padding: 1rem 1.5rem;
    gap: 1.5rem;
    transition: var(--transition-fast);
}

.chart-list-item:hover {
    background: rgba(0, 240, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    /* Neon hover */
    transform: translateX(5px);
}

.cyber-rank {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    width: 60px;
    text-align: center;
}

.cyber-stats {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trend-up {
    color: var(--accent-color);
    /* Cyan up */
    font-weight: bold;
    text-shadow: 0 0 5px var(--accent-color);
}

.trend-down {
    color: #ff0055;
    /* Neon Red/Pink down */
    font-weight: bold;
    text-shadow: 0 0 5px #ff0055;
}

.trend-neutral {
    color: var(--text-muted);
}

.chart-rank {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-cyber);
    color: var(--text-secondary);
    min-width: 40px;
}

.chart-list-item:nth-child(1) .chart-rank {
    color: #f59e0b;
}

/* Gold */
.chart-list-item:nth-child(2) .chart-rank {
    color: #9ca3af;
}

/* Silver */
.chart-list-item:nth-child(3) .chart-rank {
    color: #b45309;
}

/* Bronze */

.chart-art {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.chart-track-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.chart-track-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Pop-up Modal (Auth) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 4px;
    /* Sharper */
    width: 100%;
    max-width: 450px;
    position: relative;
    border: 1px solid var(--border-light);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.15), inset 0 0 20px rgba(0, 240, 255, 0.05);
    /* Cyber glow inside and out */
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.3s forwards;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: white;
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
}

/* Role Selector inside Modal */
.role-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.role-btn {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.role-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.role-btn.dinleyici:hover {
    border-color: #10b981;
}

.role-btn.sanatci:hover {
    border-color: #06b6d4;
}

.role-btn.editor:hover {
    border-color: #f59e0b;
}

.role-icon {
    font-size: 1.5rem;
}

/* Basic Forms */
.modal-form {
    display: none;
}

.modal-form.active {
    display: block;
    animation: fadeUp 0.3s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-input {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--grad-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Public Global Player (Cyberpunk Redesign) --- */
.public-player {
    position: relative;
    width: 100%;
    height: 100px;
    /* Increased height for better spacing */
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    /* Stack progress bar and content */
    justify-content: center;
    transition: var(--transition-smooth);
}

/* --- Progress Bar (Full Width Bottom) --- */
.cyber-progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    z-index: 10;
}

.cyber-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00f0ff, #7000ff, #ff0055);
    background-size: 200% 100%;
    animation: progressGradient 3s ease infinite;
    width: 0%;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6), 0 0 30px rgba(112, 0, 255, 0.3);
    position: relative;
    transition: width 0.1s linear;
}

@keyframes progressGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cyber-progress-bar::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -2px;
    width: 8px;
    height: 8px;
    background: white;
    box-shadow: 0 0 5px var(--accent-color);
    border-radius: 50%;
}

/* --- Player Content Layout --- */
.player-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    height: 100%;
    width: 100%;
}

.player-content .player-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 30%;
}

.cyber-art-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    /* Sharper */
    background: #000;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.cyber-art-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-content .track-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.player-content .track-info p {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-family: var(--font-cyber);
}

/* --- Center Controls --- */
.player-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    gap: 0.5rem;
}

.cyber-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Much better spacing */
}

.cyber-btn-sm {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    /* Larger */
    cursor: pointer;
    transition: var(--transition-fast);
}

.cyber-btn-sm:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
    transform: scale(1.1);
}

.cyber-btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Classic play circle */
    background: var(--text-primary);
    color: black;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 4px;
    /* Optical center for play triangle */
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.cyber-btn-play:hover {
    background: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color), 0 0 50px rgba(0, 240, 255, 0.3);
    transform: scale(1.08);
}

@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.2); }
}

.cyber-btn-play.playing {
    animation: playPulse 2s ease-in-out infinite;
}

.cyber-time {
    font-family: var(--font-cyber);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* --- Right Volume & Actions --- */
.player-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    width: 30%;
}

.cyber-action-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.3rem;
    /* Larger */
    cursor: pointer;
    transition: var(--transition-fast);
}

.cyber-action-btn:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cyber-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.cyber-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 0 5px var(--accent-color);
}

/* --- Social Features (Like, Share, Comments) --- */
.track-action-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.track-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.track-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.track-action-btn.liked {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
}


.comments-section {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* --- Mobile Responsiveness (Phase 23.3) --- */
/* --- PowerApp Structural Grid Utilities --- */
.moods-section {
    padding: 2rem;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* --- Mobile Responsiveness (Phase 26) --- */
@media (max-width: 768px) {
    body {
        padding-top: 130px;
        /* Exact height for mobile sticky hub (header 60px + player 70px) */
    }

    .public-layout {
        margin-top: 0;
        padding: 0 1rem 100px 1rem;
        /* Remove inherited top padding and adjust side padding for mobile */
    }

    .public-header {
        padding: 0 1rem;
        height: 60px;
    }

    .brand-logo {
        font-size: 1.4rem;
    }

    .search-bar {
        display: none;
        /* Hide search on mobile header for simplicity */
    }

    .header-actions {
        gap: 0.5rem;
    }

    .login-btn,
    .premium-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    /* Power Nav (Pills) */
    .power-nav {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .power-nav::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .power-nav a {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Player Adjustments */
    .public-player {
        height: 70px;
        /* Thinner on mobile */
    }

    .player-content {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .player-content .player-left {
        width: 50%;
        gap: 0.8rem;
    }

    .cyber-art-wrapper {
        width: 40px;
        height: 40px;
    }

    .player-content .track-info h4 {
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-content .track-info p {
        display: none;
        /* Hide artist name to save space */
    }

    .player-content .player-center {
        width: auto;
        flex: 1;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .cyber-controls {
        gap: 1rem;
    }

    .cyber-btn-sm {
        font-size: 1.2rem;
    }

    .cyber-btn-play {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cyber-time {
        display: none;
        /* Hide time on mobile */
    }

    .player-content .player-right {
        width: auto;
        gap: 0.5rem;
    }

    .volume-control,
    .share-btn {
        display: none;
        /* Hide volume and share on mobile sticky player */
    }

    .cyber-action-btn {
        font-size: 1.2rem;
    }

    /* Typography & Sections */
    .neon-title {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .power-section {
        padding-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .moods-section {
        padding: 1rem;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .list-item-cyber {
        min-width: 260px;
        /* Slightly smaller cards */
        padding: 0.8rem;
        gap: 0.8rem;
    }

    /* Billboard Chart */
    .chart-list-item {
        padding: 0.8rem 1rem;
        gap: 1rem;
        flex-wrap: wrap;
        /* Allow stats to drop to next line if needed */
    }

    .cyber-rank {
        font-size: 2rem;
        width: 45px;
    }

    .chart-art {
        width: 50px;
        height: 50px;
    }

    .chart-stats.cyber-stats {
        width: 100%;
        text-align: left;
        padding-left: calc(45px + 50px + 2rem);
        /* Align with text */
        margin-top: -0.5rem;
    }

    /* Pop-up Modal */
    .modal-box {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* ==========================================
   PREMIUM VISUAL ENHANCEMENTS (Phase 54)
   ========================================== */

/* --- Aurora Background Orbs --- */
body .aurora-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

/* --- Entrance Animations --- */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); }
    50% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.25), 0 0 60px rgba(112, 0, 255, 0.1); }
}

.power-section {
    animation: slideInUp 0.6s ease-out both;
}

.power-section:nth-child(1) { animation-delay: 0.1s; }
.power-section:nth-child(2) { animation-delay: 0.2s; }
.power-section:nth-child(3) { animation-delay: 0.3s; }
.power-section:nth-child(4) { animation-delay: 0.4s; }
.power-section:nth-child(5) { animation-delay: 0.5s; }

/* --- Premium Card Effects --- */
.radio-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    will-change: transform;
}

.radio-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 2;
}

.radio-card:hover .radio-art {
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.2), 0 0 0 1px rgba(0, 240, 255, 0.3);
}

/* --- Glassmorphism Modal --- */
.modal-box {
    background: rgba(12, 12, 20, 0.85);
    backdrop-filter: blur(40px) saturate(1.6);
    -webkit-backdrop-filter: blur(40px) saturate(1.6);
    border: 1px solid rgba(0, 240, 255, 0.12);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 240, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.modal-overlay.active .modal-box {
    animation: modalEntrance 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalEntrance {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Premium Sticky Player --- */
.public-player {
    background: rgba(5, 5, 12, 0.5);
    border-bottom: 1px solid rgba(0, 240, 255, 0.06);
    animation: glowPulse 4s ease-in-out infinite;
}

/* --- Neon Title Glow Animation --- */
.neon-title {
    position: relative;
    transition: text-shadow 0.3s ease;
}

.neon-title:hover {
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.3);
}

/* --- Premium Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.3), rgba(112, 0, 255, 0.3));
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.6), rgba(112, 0, 255, 0.6));
}

/* --- Chart List Premium Effects --- */
.chart-list-item {
    background: rgba(15, 16, 28, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-list-item:hover {
    background: rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 240, 255, 0.1);
    transform: translateX(8px);
}

.chart-list-item:hover .cyber-rank {
    -webkit-text-stroke: 2px var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* --- Premium Pill Filters --- */
.pill {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.pill:hover::before {
    opacity: 1;
}

.pill.active {
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
}

/* --- Genre Badge Premium --- */
.genre-badge {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.genre-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.genre-badge:hover::after {
    opacity: 1;
    animation: shineEffect 0.6s ease;
}

@keyframes shineEffect {
    from { transform: rotate(45deg) translateX(-100%); }
    to { transform: rotate(45deg) translateX(100%); }
}

/* --- Premium Search Bar --- */
.search-bar input {
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-bar input:focus {
    background: rgba(0, 240, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1), 0 0 20px rgba(0, 240, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

/* --- Premium Button Hover States --- */
.login-btn {
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.premium-btn {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.premium-btn:hover::before {
    transform: translateX(100%);
}

.premium-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.3), var(--neon-glow);
}

/* --- Animated Navigation --- */
.power-nav a {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.power-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.power-nav a:hover::after {
    width: 80%;
}

.power-nav a.active::after {
    width: 100%;
    box-shadow: 0 0 10px var(--accent-color);
}

/* --- Like Button Animation --- */
.track-action-btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.track-action-btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.track-action-btn:active {
    transform: scale(0.95);
}

.track-action-btn.liked {
    animation: likePopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes likePopIn {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* --- Volume Slider Premium --- */
.cyber-volume-slider {
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 4px;
    height: 5px;
    transition: all 0.2s;
}

.cyber-volume-slider:hover {
    height: 6px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.4), rgba(112, 0, 255, 0.4));
}

.cyber-volume-slider::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(0, 240, 255, 0.3);
    transition: all 0.2s;
}

.cyber-volume-slider:hover::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 15px var(--accent-color), 0 0 30px rgba(0, 240, 255, 0.4);
}

/* --- Player Art Vinyl Spin --- */
@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cyber-art-wrapper.playing {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.cyber-art-wrapper.playing img {
    animation: vinylSpin 8s linear infinite;
    border-radius: 50%;
}

/* --- Focus Visible for Accessibility --- */
*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* --- Selection Color --- */
::selection {
    background: rgba(0, 240, 255, 0.3);
    color: white;
}

/* --- Smooth Page Load --- */
.public-layout {
    animation: slideInUp 0.5s ease-out;
}

/* --- Mobile Premium Enhancements --- */
@media (max-width: 768px) {
    .sticky-hub {
        backdrop-filter: blur(25px) saturate(1.3);
    }

    .radio-card:hover {
        transform: translateY(-4px);
    }

    #popularRadiosContainer,
    #communityPlaylistsContainer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    #moodsContainer {
        grid-template-columns: repeat(3, 1fr);
    }

    .public-layout {
        margin-top: 140px;
        padding: 2rem 1rem 100px;
    }

    .modal-box {
        border-radius: 16px;
        max-height: 85vh;
        overflow-y: auto;
    }

    /* Hide shuffle/repeat on mobile sticky */
    #shuffleBtn, #repeatBtn {
        display: none;
    }
}

@media (max-width: 480px) {
    #popularRadiosContainer,
    #communityPlaylistsContainer {
        grid-template-columns: 1fr;
    }

    #moodsContainer {
        grid-template-columns: repeat(2, 1fr);
    }

    .neon-title {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.2rem;
    }
}

/* =========================================
   Podcasts Page Styles
   ========================================= */

.podcasts-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: rgba(5, 5, 12, 0.92);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 240, 255, 0.05);
}

.podcasts-header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.podcasts-back-btn {
    text-decoration: none;
    color: var(--accent-color);
    font-family: var(--font-cyber);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.podcasts-back-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--neon-glow);
}

.podcasts-page-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    margin-left: auto;
}

.podcasts-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 4rem;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.podcasts-filter-bar::-webkit-scrollbar {
    display: none;
}

.podcasts-filter-bar .pill {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

.podcasts-page-layout {
    margin-top: 140px;
    padding: 2rem 4rem 100px;
}

.podcasts-category-header {
    margin-bottom: 2rem;
}

/* Podcast Grid */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Podcast Card */
.podcast-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.podcast-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2), 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.podcast-card-art {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.podcast-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.podcast-card:hover .podcast-card-art img {
    transform: scale(1.08);
}

.podcast-card-art .podcast-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podcast-card:hover .podcast-play-overlay {
    opacity: 1;
}

.podcast-play-overlay button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #000;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transition: transform 0.2s;
}

.podcast-play-overlay button:hover {
    transform: scale(1.1);
}

.podcast-card-body {
    padding: 1.2rem;
}

.podcast-card-category {
    display: inline-block;
    font-family: var(--font-cyber);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
}

.podcast-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.podcast-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .podcasts-header-inner {
        padding: 1rem 2rem;
    }
    .podcasts-filter-bar {
        padding: 0.8rem 2rem;
        justify-content: flex-start;
    }
    .podcasts-page-layout {
        padding: 2rem 2rem 100px;
    }
    .podcast-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 640px) {
    .podcasts-header-inner {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    .podcasts-page-title {
        font-size: 1rem;
    }
    .podcasts-filter-bar {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    .podcasts-page-layout {
        padding: 1.5rem 1rem 80px;
        margin-top: 130px;
    }
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* =========================================
   Venist Dropdown Filter Styles
   ========================================= */

.venist-filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 4rem;
    background: rgba(0, 0, 0, 0.3);
}

.venist-filter-label {
    font-family: var(--font-cyber);
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.venist-dropdown {
    position: relative;
    min-width: 220px;
}

.venist-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 6px;
    color: #00ff88;
    font-family: var(--font-cyber);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.venist-dropdown-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
}

.venist-dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.venist-dropdown.open .venist-dropdown-arrow {
    transform: rotate(180deg);
}

.venist-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 255, 136, 0.1);
    animation: dropdownSlideIn 0.2s ease-out;
}

.venist-dropdown.open .venist-dropdown-menu {
    display: block;
}

@keyframes dropdownSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.venist-dropdown-item {
    padding: 0.7rem 1.2rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.venist-dropdown-item:last-child {
    border-bottom: none;
}

.venist-dropdown-item:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding-left: 1.5rem;
}

.venist-dropdown-item.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    font-weight: 600;
}

.venist-dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

.venist-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.venist-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.3);
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .venist-filter-bar {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 640px) {
    .venist-filter-bar {
        padding: 0.6rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .venist-dropdown {
        min-width: 180px;
    }
}

/* Academy Dropdown Specifics */
#academyDropdownBtn:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.3);
}

#academyDropdownMenu {
    border: 1px solid rgba(255, 0, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 0, 255, 0.1);
}

#academyDropdownMenu .venist-dropdown-item:hover {
    background: rgba(255, 0, 255, 0.1);
    color: #ff00ff;
}

#academyDropdownMenu .venist-dropdown-item.active {
    color: #ff00ff;
    background: rgba(255, 0, 255, 0.08);
}

#academyDropdownMenu::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 255, 0.3);
}

/* =========================================
   Mobile Hamburger Menu & Drawer Styles
   ========================================= */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    line-height: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid var(--border-light);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    transition: right 0.3s ease-in-out;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-drawer-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-search {
    margin-bottom: 2rem;
}

.drawer-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: white;
    outline: none;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex: 1;
}

.drawer-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.drawer-actions {
    margin-top: auto;
}

@media (max-width: 768px) {
    .power-nav {
        display: none !important;
    }
    
    #globalSearchContainer {
        display: none !important;
    }

    #mainHeaderActions #guestActions, 
    #mainHeaderActions #loggedInActions {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }

    .public-header {
        padding: 1rem 1.5rem !important;
    }
}

/* ==========================================
   Phase 2: Karaoke Mode Styles
   ========================================== */
#gpLyrics {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    white-space: pre-wrap;
    font-style: italic;
    transition: all 0.3s ease;
    scroll-behavior: smooth;
}

.lyric-line {
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.lyric-line:hover {
    color: rgba(255,255,255,0.8);
}

.lyric-line.active {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
    transform: scale(1.02) translateX(5px);
    transform-origin: left;
}

/* ==========================================
   Phase 1: PWA Install Banner Styles
   ========================================== */
.pwa-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 450px;
    background: rgba(15, 16, 28, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-color);
    box-shadow: var(--neon-glow);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pwa-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.pwa-text {
    flex: 1;
}

.pwa-text h4 {
    margin: 0 0 0.3rem 0;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.pwa-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.pwa-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
}

.pwa-dismiss-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.pwa-dismiss-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.pwa-install-btn {
    background: var(--grad-primary);
    border: none;
    color: white;
    font-weight: 700;
    font-family: var(--font-body);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    transition: var(--transition-fast);
}

.pwa-install-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .pwa-banner {
        width: 95%;
        bottom: 80px; /* Player'ın yukarısında durması için */
    }
}

/* ==========================================
   Phase 3: AI Mood Match Styles
   ========================================== */
.ai-mood-input {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.ai-mood-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.ai-generate-btn {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    color: white;
    border: none;
    padding: 0 2rem;
    font-weight: 700;
    font-family: var(--font-cyber);
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.5);
    transition: var(--transition-fast);
}

.ai-generate-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.2);
    box-shadow: 0 0 25px rgba(112, 0, 255, 0.8);
}

.ai-generate-btn:active {
    transform: scale(0.98);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    .ai-input-group {
        flex-direction: column;
    }
    .ai-generate-btn {
        padding: 1rem;
    }
}

/* ========================================= */
/* LIGHT MODE THEME OVERRIDES FOR PUBLIC.CSS */
/* ========================================= */
[data-theme="light"] {
    --bg-base: #f0f2f5;
    --bg-header: #ffffff;
    --bg-card: #f8fafc;
    --bg-card-hover: #e2e8f0;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --primary-color: #009eb3; 
    --primary-glow: #009eb380;
    --accent-color: #009eb3;
    
    --grad-primary: linear-gradient(135deg, #009eb3, #0284c7);
    --border-light: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] body {
    color: var(--text-primary);
    background-color: var(--bg-base);
}

[data-theme="light"] body::before, [data-theme="light"] body::after {
    display: none; /* Hide dark grid and aurora in light mode */
}

[data-theme="light"] .public-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
}

[data-theme="light"] .sticky-hub {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--border-light);
}

[data-theme="light"] .search-bar input {
    background-color: rgba(0,0,0,0.05);
    color: #000;
}

/* Make Audio Player Elegant Dark/Vibrant in Light Mode */
[data-theme="light"] .public-player {
    background: linear-gradient(90deg, #ff8c00, #ff512f) !important; /* Premium Turuncu Geçiş */
    border-bottom: none !important;
}

[data-theme="light"] .public-player .track-info h4 {
    color: #ffffff !important;
}
[data-theme="light"] .public-player .track-info p {
    color: #cbd5e1 !important;
}
[data-theme="light"] .cyber-time {
    color: #cbd5e1 !important;
}

/* Make Power-Nav Vibrant/White instead of muddy Gray */
[data-theme="light"] .power-nav {
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-light);
}

[data-theme="light"] .power-nav a {
    color: var(--text-secondary);
}

[data-theme="light"] .power-nav a:hover {
    color: var(--primary-color);
    background: rgba(0, 158, 179, 0.08);
}

[data-theme="light"] .power-nav a.active {
    color: #ffffff;
    background: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 158, 179, 0.3);
    border: none;
}

[data-theme="light"] .nav-menu ul li:hover, [data-theme="light"] .nav-menu ul li.active {
    background: rgba(0, 158, 179, 0.1);
    color: var(--primary-color);
}

[data-theme="light"] .form-input, [data-theme="light"] input, [data-theme="light"] textarea, [data-theme="light"] select {
    background: #ffffff !important;
    color: var(--text-primary) !important;
    border: 1px solid #cbd5e1 !important;
}

[data-theme="light"] .radio-art { background: #fff; }
[data-theme="light"] .chat-item { background: rgba(0,0,0,0.05) !important; color: #1e293b !important; }
[data-theme="light"] .chat-bubble-them { background: rgba(0,0,0,0.1) !important; color: #1e293b !important; }

/* === Light Mode: Mobile Drawer === */
[data-theme="light"] .mobile-drawer {
    background: rgba(255, 255, 255, 0.98) !important;
    border-left: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15) !important;
}

[data-theme="light"] .drawer-search input {
    background: rgba(0,0,0,0.05) !important;
    color: #1e293b !important;
    border-color: rgba(0,0,0,0.15) !important;
}

[data-theme="light"] .drawer-search input::placeholder {
    color: #94a3b8 !important;
}

[data-theme="light"] .close-drawer-btn {
    color: #1e293b !important;
}

[data-theme="light"] .drawer-nav a {
    color: #1e293b !important;
}

[data-theme="light"] .drawer-nav a:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .mobile-menu-toggle {
    color: #1e293b !important;
}
