/* ===========================================
   WINKOW DESIGN SYSTEM - Based on Figma Design
   =========================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Colors */
    --wk-color-primary: #0678B4;
    --wk-color-primary-light: #539DF3;
    --wk-color-primary-alpha: rgba(83, 157, 243, 0.37);

    --wk-color-background: #FFFFFF;
    --wk-color-surface: #F7F7F7;
    --wk-color-surface-dark: #1F1F22;
    --wk-color-surface-darker: #151011;

    --wk-color-text-primary: #151011;
    --wk-color-text-secondary: #C5C3CA;
    --wk-color-text-light: #F7F7F7;
    --wk-color-text-muted: #AFAFB0;

    --wk-color-border: rgba(235, 235, 255, 0.05);
    --wk-color-border-dark: #151011;

    /* Typography */
    --wk-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --wk-font-family-display: 'DM Sans', var(--wk-font-family);

    /* Font Sizes */
    --wk-text-xs: 10px;
    --wk-text-sm: 14px;
    --wk-text-base: 16px;
    --wk-text-lg: 18px;
    --wk-text-xl: 20px;
    --wk-text-2xl: 22px;
    --wk-text-3xl: 36px;
    --wk-text-4xl: 80px;

    /* Font Weights */
    --wk-font-normal: 400;
    --wk-font-medium: 500;
    --wk-font-semibold: 600;
    --wk-font-bold: 700;

    /* Spacing */
    --wk-spacing-xs: 4px;
    --wk-spacing-sm: 8px;
    --wk-spacing-md: 16px;
    --wk-spacing-lg: 24px;
    --wk-spacing-xl: 32px;
    --wk-spacing-2xl: 40px;

    /* Border Radius */
    --wk-radius-sm: 4px;
    --wk-radius-md: 6px;
    --wk-radius-lg: 11px;
    --wk-radius-xl: 16px;
    --wk-radius-2xl: 24px;
    --wk-radius-full: 999px;

    /* Shadows */
    --wk-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --wk-shadow-md: 0 4px 12px rgba(20, 20, 43, 0.1);

    /* Layout */
    --wk-sidebar-width: 90px;
    --wk-header-height: 85px;
    --wk-player-height: 80px;
}

/* ===========================================
   BASE STYLES
   =========================================== */

.wk-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background: var(--wk-color-background);
    font-family: var(--wk-font-family);
    color: var(--wk-color-text-primary);
}

/* ===========================================
   HEADER
   =========================================== */

.wk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--wk-header-height);
    padding: 21px 45px 21px 92px;
    background: var(--wk-color-background);
}

.wk-header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.wk-header-logo img {
    height: 44px;
    object-fit: contain;
}

.wk-header-divider {
    width: 2px;
    height: 100%;
    background: var(--wk-color-text-secondary);
    border-radius: var(--wk-radius-full);
}

.wk-header-client-logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.wk-header-menu {
    display: flex;
    align-items: center;
    gap: 11px;
}

.wk-header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--wk-color-text-secondary);
    transition: color 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.wk-header-icon-btn:hover {
    color: var(--wk-color-text-primary);
    opacity: 1;
}

.wk-header-icon-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}

.wk-user-greet {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 12px;
    background: #ECECEC;
    border-radius: var(--wk-radius-lg);
    cursor: pointer;
}

.wk-user-greet-text {
    font-size: var(--wk-text-lg);
    font-weight: var(--wk-font-semibold);
    color: var(--wk-color-text-primary);
}

/* ===========================================
   MAIN CONTAINER
   =========================================== */

.wk-main-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* ===========================================
   NAVIGATION SIDEBAR
   =========================================== */

.wk-sidebar {
    width: var(--wk-sidebar-width);
    padding: 0 10px;
    padding-bottom: 100px;
}

/* Sidebar wrapper - normal flow on desktop */
.wk-sidebar-wrapper {
    display: block;
}

/* Sidebar overlay - hidden on desktop */
.wk-sidebar-overlay {
    display: none;
}

.wk-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--wk-color-surface);
    border-radius: var(--wk-radius-xl);
    padding: 12px 0;
    height: 100%;
}

.wk-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    gap: 0;
    width: 100%;
    position: relative;
}

.wk-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    border-radius: var(--wk-radius-full);
    cursor: pointer;
    color: var(--wk-color-text-secondary);
    transition: all 0.2s;
    z-index: 1;
}

.wk-nav-item:hover {
    color: var(--wk-color-text-primary);
}

.wk-nav-item.active {
    color: var(--wk-color-primary);
}

/* .wk-nav-item.active::before {
    content: '';
    position: absolute;
    inset: 5px;
    background: var(--wk-color-primary-alpha);
    border-radius: var(--wk-radius-full);
    z-index: -1;
} */

.wk-nav-indicator {
    position: absolute;
    top: 17px;
    left: 50%;
    width: 38px;
    height: 38px;
    background: var(--wk-color-primary-alpha);
    border-radius: var(--wk-radius-full);
    z-index: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
}

.wk-nav-item svg {
    width: 24px;
    height: 24px;
}

/* ===========================================
   CONTENT AREA
   =========================================== */

.wk-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: var(--wk-radius-2xl) var(--wk-radius-2xl) 0 0;
    background: var(--wk-color-background);
    padding-bottom: var(--wk-player-height);
}

.wk-content-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ===========================================
   FEATURED SLIDER
   =========================================== */

.wk-slider {
    position: relative;
    width: 100%;
    height: 594px;
    overflow: hidden;
    background: var(--wk-color-background);
}

.wk-slider-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wk-slider-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(24, 25, 29, 0) 0%, rgba(24, 25, 29, 1) 100%);
    opacity: 0.2;
}

.wk-slider-content {
    position: absolute;
    left: 130px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    z-index: 2;
}

.wk-slider-label {
    font-size: 17px;
    font-weight: var(--wk-font-medium);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.wk-slider-title {
    font-size: var(--wk-text-3xl);
    font-weight: var(--wk-font-bold);
    color: white;
    line-height: 1.1;
}

.wk-slider-channel-logo {
    height: 49px;
    object-fit: contain;
}

.wk-slider-meta {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: var(--wk-text-xl);
    font-weight: var(--wk-font-medium);
    color: white;
}

.wk-slider-meta-dot {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
}

.wk-slider-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px 4px;
    border: 2px solid var(--wk-color-text-light);
    border-radius: var(--wk-radius-sm);
    background: transparent;
    color: var(--wk-color-text-light);
    font-size: 24px;
    font-weight: var(--wk-font-semibold);
    cursor: pointer;
    width: 115px;
    height: 36px;
    justify-content: center;
}

.wk-slider-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
}

.wk-slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    background: rgba(247, 247, 247, 0.1);
    backdrop-filter: blur(14px);
    cursor: pointer;
    pointer-events: auto;
    border: none;
    transition: background 0.2s;
}

.wk-slider-arrow:hover {
    background: rgba(247, 247, 247, 0.2);
}

.wk-slider-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(247, 247, 247, 0.2);
    border-radius: 50%;
}

.wk-slider-arrow svg {
    width: 24px;
    height: 24px;
    color: white;
}

.wk-slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.wk-slider-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.wk-slider-dot-inner {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.2s;
}

.wk-slider-dot.active .wk-slider-dot-inner {
    width: 33px;
    height: 20px;
    background: var(--wk-color-primary);
    border-radius: 10px;
}

/* ===========================================
   SECTION HEADERS
   =========================================== */

.wk-section {
    padding: 0 30px;
    position: relative;
}

.wk-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    margin-bottom: 8px;
}

.wk-section-title {
    font-size: var(--wk-text-lg);
    font-weight: var(--wk-font-semibold);
    color: var(--wk-color-text-primary);
}

/* ===========================================
   THUMBNAIL GRID / CAROUSEL
   =========================================== */

.wk-thumbnail-row {
    display: flex;
    gap: 24px;
    padding: 2px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.wk-thumbnail-row::-webkit-scrollbar {
    display: none;
}

.wk-thumbnail {
    flex-shrink: 0;
    width: 200px;
    cursor: pointer;
}

.wk-thumbnail-image {
    position: relative;
    width: 200px;
    height: 200px;
    background: var(--wk-color-surface-darker);
    border-radius: var(--wk-radius-md);
    overflow: hidden;
}

.wk-thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wk-thumbnail-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
}

.wk-thumbnail-icon {
    color: var(--wk-color-text-light);
}

.wk-thumbnail-icon svg {
    width: 24px;
    height: 24px;
}

.wk-thumbnail-name {
    font-size: var(--wk-text-xl);
    font-weight: var(--wk-font-bold);
    color: var(--wk-color-text-light);
    text-align: center;
}

.wk-thumbnail-play-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    background: var(--wk-color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.wk-thumbnail-play-btn svg {
    width: 14px;
    height: 14px;
    color: white;
    margin-left: 2px;
}

.wk-thumbnail-fav {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--wk-color-text-light);
}

.wk-thumbnail-fav svg {
    width: 18px;
    height: 18px;
}

.wk-thumbnail-content {
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wk-thumbnail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 26px;
}

.wk-thumbnail-logo {
    height: 26px;
    object-fit: contain;
}

.wk-thumbnail-demo {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px 6px;
    border: 2px solid var(--wk-color-text-primary);
    border-radius: var(--wk-radius-sm);
    background: transparent;
    font-size: var(--wk-text-xs);
    font-weight: var(--wk-font-semibold);
    color: var(--wk-color-text-primary);
}

.wk-thumbnail-demo svg {
    width: 8px;
    height: 8px;
}

.wk-thumbnail-info {
    display: flex;
    flex-direction: column;
}

.wk-thumbnail-genre {
    font-size: 15px;
    font-weight: var(--wk-font-bold);
    color: var(--wk-color-text-primary);
    line-height: 20px;
}

.wk-thumbnail-rhythm {
    font-size: var(--wk-text-sm);
    font-weight: var(--wk-font-medium);
    color: var(--wk-color-text-primary);
    line-height: 20px;
}

/* ===========================================
   CTA SECTION
   =========================================== */

.wk-cta {
    background: var(--wk-color-surface-darker);
    border-radius: var(--wk-radius-2xl);
    padding: 52px 55px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 30px;
}

.wk-cta-content {
    display: flex;
    flex-direction: column;
    gap: 23px;
    max-width: 424px;
}

.wk-cta-title {
    font-family: var(--wk-font-family-display);
    font-size: var(--wk-text-2xl);
    font-weight: var(--wk-font-bold);
    color: white;
    line-height: 1.4;
}

.wk-cta-description {
    font-family: var(--wk-font-family-display);
    font-size: var(--wk-text-base);
    font-weight: var(--wk-font-normal);
    color: white;
    opacity: 0.8;
    line-height: 1.75;
}

.wk-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 258px;
    height: 55px;
    background: var(--wk-color-primary);
    border: none;
    border-radius: 52px;
    font-family: var(--wk-font-family-display);
    font-size: var(--wk-text-base);
    font-weight: var(--wk-font-bold);
    color: var(--wk-color-text-light);
    cursor: pointer;
    box-shadow: var(--wk-shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wk-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 20, 43, 0.15);
}

/* ===========================================
   GENRE SECTION
   =========================================== */

.wk-genre-section {
    padding: 6px 40px;
}

.wk-genre-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    margin-bottom: 6px;
}

.wk-genre-title {
    font-size: var(--wk-text-2xl);
    font-weight: var(--wk-font-bold);
    color: var(--wk-color-text-primary);
}

.wk-genre-pills {
    display: flex;
    gap: 10px;
}

.wk-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border: 2px solid var(--wk-color-text-primary);
    border-radius: 3px;
    background: var(--wk-color-surface);
    font-size: var(--wk-text-base);
    font-weight: var(--wk-font-bold);
    color: var(--wk-color-text-primary);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.wk-pill:hover {
    background: var(--wk-color-text-secondary);
}

.wk-pill.active {
    background: var(--wk-color-text-primary);
    color: var(--wk-color-text-light);
}

/* ===========================================
   FILTERS BAR
   =========================================== */

.wk-filters {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 29px 30px;
}

.wk-filter-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 4px 2px 12px;
    background: var(--wk-color-surface);
    border: 2px solid var(--wk-color-text-primary);
    border-radius: 5px;
    cursor: pointer;
    min-width: 100px;
}

.wk-filter-dropdown-text {
    font-size: var(--wk-text-base);
    font-weight: var(--wk-font-bold);
    color: var(--wk-color-text-primary);
}

.wk-filter-dropdown svg {
    width: 24px;
    height: 24px;
}

.wk-filter-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wk-filter-title-text {
    font-size: var(--wk-text-2xl);
    font-weight: var(--wk-font-bold);
    color: var(--wk-color-text-primary);
}

.wk-filter-title-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: black;
    border-radius: 12px;
}

.wk-filter-title-arrow svg {
    width: 16px;
    height: 16px;
    color: white;
}

/* ===========================================
   BOTTOM PLAYER
   =========================================== */

.wk-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--wk-player-height);
    background: var(--wk-color-surface-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 25px;
    z-index: 1000;
}

.wk-player-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
}

.wk-player-controls {
    display: flex;
    align-items: center;
    gap: 9px;
}

.wk-player-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--wk-color-text-light);
    border-radius: 50%;
    cursor: pointer;
    color: var(--wk-color-text-light);
    transition: all 0.2s;
}

.wk-player-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wk-player-btn.active {
    background: var(--wk-color-primary);
    color: var(--wk-color-text);
}

.wk-player-btn.active:hover {
    background: var(--wk-color-primary-hover, var(--wk-color-primary));
    filter: brightness(1.1);
}

.wk-player-btn svg {
    width: 19px;
    height: 19px;
}

.wk-player-btn-forward svg {
    width: 24px;
    height: 24px;
}

.wk-player-track-details {
    display: flex;
    align-items: center;
    gap: 22px;
}

.wk-player-track-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wk-player-artist {
    font-size: var(--wk-text-sm);
    font-weight: var(--wk-font-semibold);
    color: #FCFCFC;
    letter-spacing: -0.28px;
}

.wk-player-title {
    font-size: var(--wk-text-sm);
    font-weight: var(--wk-font-normal);
    color: rgba(252, 252, 252, 0.65);
    letter-spacing: -0.28px;
}

.wk-player-center {
    display: flex;
    align-items: center;
    padding: 0 32px;
}

.wk-player-volume {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 173px;
}

.wk-player-volume-icon {
    color: var(--wk-color-text-light);
}

.wk-player-volume-icon svg {
    width: 24px;
    height: 24px;
}

.wk-player-volume-bar {
    flex: 1;
    height: 4px;
    background: rgba(197, 195, 202, 0.5);
    border-radius: var(--wk-radius-full);
    overflow: hidden;
}

.wk-player-volume-level {
    width: 50%;
    height: 100%;
    background: var(--wk-color-text-light);
    border-radius: var(--wk-radius-full);
}

.wk-player-likes {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 58px;
}

.wk-player-like-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--wk-color-text-muted);
    transition: color 0.2s;
}

.wk-player-like-btn:hover {
    color: var(--wk-color-text-light);
}

.wk-player-like-btn svg {
    width: 24px;
    height: 24px;
}

.wk-player-right {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
    padding-left: 32px;
}

.wk-player-channel-logo {
    height: 49px;
    object-fit: contain;
}

.wk-player-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--wk-color-surface-dark);
    border: 1px solid var(--wk-color-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--wk-color-text-light);
    transform: rotate(90deg);
}

.wk-player-expand-btn svg {
    width: 16px;
    height: 16px;
}

/* ===========================================
   CAROUSEL ARROWS
   =========================================== */

.wk-carousel-arrows {
    position: absolute;
    top: 48px;
    bottom: 90px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    pointer-events: none;
}

.wk-carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    background: rgba(31, 31, 34, 0.8);
    backdrop-filter: blur(14px);
    border: 1px solid var(--wk-color-border);
    border-radius: var(--wk-radius-full);
    cursor: pointer;
    pointer-events: auto;
    color: var(--wk-color-text-light);
}

.wk-carousel-arrow svg {
    width: 16px;
    height: 16px;
}

/* ===========================================
   SCROLLBAR STYLES
   =========================================== */

.wk-content::-webkit-scrollbar {
    width: 8px;
}

.wk-content::-webkit-scrollbar-track {
    background: transparent;
}

.wk-content::-webkit-scrollbar-thumb {
    background: var(--wk-color-text-secondary);
    border-radius: var(--wk-radius-full);
}

.wk-content::-webkit-scrollbar-thumb:hover {
    background: var(--wk-color-text-primary);
}

/* ===========================================
   FOOTER SPACER
   =========================================== */

.wk-footer-spacer {
    height: 90px;
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

@media (max-width: 1200px) {
    .wk-header {
        padding: 21px 30px 21px 30px;
    }

    .wk-sidebar {
        width: 70px;
    }

    .wk-slider {
        height: 400px;
    }

    .wk-slider-content {
        left: 60px;
    }
}

@media (max-width: 768px) {
    /* Hide standalone sidebar, show inside wrapper */
    .wk-sidebar {
        display: block;
        width: 100%;
        padding: 0;
    }

    .wk-slider {
        height: 300px;
    }

    .wk-slider-title {
        font-size: var(--wk-text-2xl);
    }

    .wk-cta {
        flex-direction: column;
        padding: 30px;
    }

    .wk-player {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
    }
}


/* ===========================================
   DROPDOWNS
   =========================================== */

.wk-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 6px;
    padding: 10px;
    width: max-content;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s;
}

.wk-dropdown.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.wk-dropdown-title {
    font-size: 18px;
    font-weight: var(--wk-font-semibold);
    color: var(--wk-color-text-secondary);
    /* #C5C3CA */
    text-align: center;
    padding: 0 10px;
}

.wk-dropdown-items {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.wk-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 19px;
    border-radius: 5px;
    cursor: pointer;
    background: white;
    transition: background 0.2s;
}

.wk-dropdown-item:hover {
    background: var(--wk-color-surface);
}

.wk-dropdown-item.active {
    border: 1px solid #B1D3F6;
    background: white;
}

.wk-dropdown-item-text {
    font-size: 18px;
    font-weight: var(--wk-font-medium);
    color: #352F30;
    text-align: center;
}

/* ===========================================
   FULLSCREEN PLAYER OVERLAY
   =========================================== */

.wk-player-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000D14;
    /* Fallback */
    z-index: 900;
    /* Below .wk-player (1000) */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    overflow: hidden;
    padding-bottom: var(--wk-player-height);
}

.wk-player-fullscreen.active {
    transform: translateY(0);
}

/* Background Layer (Image + Gradient) */
.wk-player-fullscreen-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Behind content */
    pointer-events: none;
}

.wk-player-fullscreen-bg-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60%;
    /* Cover right side */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wk-player-fullscreen-gradient {
    position: absolute;
    inset: 0;
    /* Gradient from left (dark) to right (transparent) */
    background: linear-gradient(90deg, #000D14 30%, rgba(0, 13, 20, 0.8) 50%, rgba(0, 13, 20, 0) 100%);
}


.wk-player-fullscreen-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 130px;
    /* Match padding from Figma */
    align-items: center;
    /* Vertically center content */
    justify-content: flex-start;
    z-index: 2;
    /* On top of background */
}

.wk-player-fullscreen-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Gap handled by margins/padding for precise control */
    max-width: 600px;
    color: white;
}

.wk-player-fullscreen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--wk-color-text-light);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
}

.wk-player-fullscreen-header svg {
    color: var(--wk-color-primary);
    width: 24px;
    height: 24px;
}

.wk-player-fullscreen-title {
    font-family: 'Brush Script MT', cursive;
    font-size: 130px;
    /* Match approximate size from Figma */
    color: white;
    margin: 0;
    line-height: 1.1;
    font-weight: normal;
}

.wk-player-fullscreen-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin-top: 24px;
}

.wk-player-fullscreen-meta svg {
    width: 20px;
    height: 20px;
}

.wk-player-fullscreen-stats {
    font-size: 16px;
    color: #AFAFB0;
    margin-top: 12px;
    font-weight: 600;
}

.wk-player-fullscreen-artists {
    margin-top: 32px;
    font-size: 18px;
    color: #AFAFB0;
    line-height: 1.6;
}

/* Close button style matching Figma (Top Right) */
.wk-player-fullscreen-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(31, 31, 34, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.wk-player-fullscreen-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.wk-player-fullscreen-close-btn svg {
    width: 24px;
    height: 24px;
}

.wk-player-expand-btn.expanded {
    transform: rotate(180deg);
}

/* ===========================================
   MOBILE RESPONSIVENESS
   =========================================== */

/* Header - Hamburger and Logo Logic */
.wk-header-hamburger {
    display: none;
    /* Hidden on desktop */
}

.wk-logo-mobile {
    display: none;
    /* Hidden on desktop */
}

/* Nav Label Default Hidden */
.wk-nav-label {
    display: none;
}

/* Desktop Client Logo - Ensure logical size (auto/constrained by container but not tiny) */
.wk-header-client-logo {
    height: auto;
    max-height: 50px;
    /* Limit height to match logo logic */
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {

    /* Header Adjustments */
    .wk-header {
        height: 60px;
        padding: 10px 15px;
    }

    /* Stack logos vertically on mobile */
    .wk-header-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    /* Reduce Winkow logo by 50% on mobile */
    .wk-logo-winkow {
        width: 90px;
        height: 17px;
    }

    /* Reduce client logo by 50% on mobile */
    .wk-logo-cliente {
        height: 22px !important;
        max-height: 22px;
    }

    /* Show hamburger button on mobile */
    .wk-header-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--wk-color-primary);
        margin-right: 8px;
    }

    .wk-header-hamburger:hover {
        color: var(--wk-color-text-primary);
    }

    .wk-header-hamburger svg {
        width: 24px;
        height: 24px;
    }

    .wk-header-divider {
        display: none;
    }

    /* Sidebar slide-in menu for mobile */
    .wk-sidebar-wrapper {
        position: fixed;
        left: 0;
        top: 60px; /* Below header */
        bottom: 0;
        width: 250px;
        background: var(--wk-color-surface);
        z-index: 200;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .wk-sidebar-wrapper.open {
        transform: translateX(0);
    }

    /* Overlay when menu is open */
    .wk-sidebar-overlay {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 199;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .wk-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Override sidebar styles for mobile drawer */
    .wk-sidebar-wrapper .wk-sidebar {
        display: block !important;
        width: 100%;
        height: 100%;
        padding: 20px 0;
        background: transparent;
    }

    .wk-sidebar-wrapper .wk-nav {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        height: auto;
        border-radius: 0;
        padding: 0;
        justify-content: flex-start;
        background: var(--wk-color-surface);
    }

    .wk-sidebar-wrapper .wk-nav-list {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 12px 0;
        gap: 0;
        align-items: stretch;
    }

    .wk-sidebar-wrapper .wk-nav-item {
        width: 100%;
        height: 56px;
        border-radius: 0;
        display: flex !important;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 0 24px;
        gap: 16px;
        color: var(--wk-color-text-primary);
    }

    .wk-sidebar-wrapper .wk-nav-item svg {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
    }

    .wk-sidebar-wrapper .wk-nav-label {
        display: block !important;
        font-size: 16px;
        font-weight: 500;
        color: inherit;
    }

    .wk-sidebar-wrapper .wk-nav-indicator {
        display: none !important;
    }

    .wk-sidebar-wrapper .wk-nav-item.active {
        background: rgba(6, 120, 180, 0.08);
        color: var(--wk-color-primary);
    }

    .wk-sidebar-wrapper .wk-nav-item:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .wk-user-greet-text {
        display: none;
    }

    .wk-user-greet {
        padding: 6px;
        border-radius: 50%;
    }

    /* Content Area */
    .wk-content {
        border-radius: 0;
    }

    /* Carousel Adjustments */
    .wk-slider {
        height: 60vh;
        max-height: 480px;
        min-height: 350px;
    }

    .wk-slider-content {
        bottom: 50px;
        left: 20px;
        right: 20px;
        top: auto;
        transform: none;
        align-items: flex-start;
    }

    .wk-slider-title {
        font-size: 32px;
        line-height: 1.1;
    }

    .wk-slider-meta {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .wk-slider-image {
        object-position: center center;
    }

    /* Ensure arrows are visible on mobile if desired, or at least not hidden by old CSS */
    .wk-slider-arrows {
        display: flex;
    }

    .wk-slider-arrow {
        width: 40px;
        /* Smaller touch targets for arrows so they don't block content */
    }

    /* Thumbnail Rows */
    .wk-thumbnail-row {
        gap: 12px;
    }

    .wk-thumbnail {
        width: 140px;
    }

    .wk-thumbnail-image {
        width: 140px;
        height: 140px;
    }

    /* CTA Section */
    .wk-cta {
        flex-direction: column;
        padding: 30px 20px;
        margin: 0 15px;
        text-align: center;
        gap: 20px;
    }

    .wk-cta-content {
        align-items: center;
    }

    /* Bottom Player Improvements */
    .wk-player {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        grid-template-areas:
            "details likes"
            "controls right";
        height: auto;
        padding: 10px 16px;
        gap: 12px;
        background: var(--wk-color-surface-dark);
    }

    .wk-player-left {
        display: contents;
    }

    .wk-player-track-details {
        grid-area: details;
        display: flex;
        align-items: center;
        gap: 10px;
        /* Allow wrapping if text is long, or hide overflow? */
        overflow: hidden;
    }

    .wk-player-controls {
        grid-area: controls;
        margin-top: 5px;
    }

    .wk-player-likes {
        grid-area: likes;
        display: flex !important;
        justify-content: flex-end;
        width: auto;
    }

    .wk-player-right {
        grid-area: right;
        padding-left: 0;
        justify-content: flex-end;
        gap: 15px;
    }

    /* Hide Volume and Likes (actually just volume now) on mobile */
    .wk-player-center {
        display: none !important;
    }

    /* Adjust icon sizes for mobile if needed */
    .wk-player-btn {
        width: 36px;
        height: 36px;
    }

    /* Ensure text truncates properly */
    .wk-player-artist,
    .wk-player-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
        /* Approximate constraint */
    }

    /* Additional Mobile Refinements */
    .wk-player-controls {
        gap: 8px;
    }

    .wk-player-btn {
        padding: 6px;
    }

    .wk-player-track-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        /* Enable truncation */
    }

    .wk-player-artist,
    .wk-player-title {
        font-size: 13px;
    }

    .wk-player-channel-logo {
        height: 36px !important;
        width: 36px;
        border-radius: 4px;
        object-fit: cover;
    }

    .wk-player-expand-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    /* Fullscreen Player Adjustments for Mobile */
    .wk-player-fullscreen-content {
        padding: 30px;
    }

    .wk-player-fullscreen-title {
        font-size: 40px;
    }
}