/* FEND.MPD Custom Styles - Mobile-First with Purple Accent */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent: #9b59b6;  /* Purple accent */
    --accent-hover: #8e44ad;  /* Darker purple on hover */
    --border: #333333;
    
    /* iOS safe area insets */
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-right: env(safe-area-inset-right, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-inset-left: env(safe-area-inset-left, 0px);
}

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

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overscroll-behavior: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
}

/* Loading Splash */
.loading-splash {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: var(--text-secondary);
}

.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 100vw;
    padding-top: var(--safe-area-inset-top);
    padding-right: var(--safe-area-inset-right);
    padding-bottom: var(--safe-area-inset-bottom);
    padding-left: var(--safe-area-inset-left);
}

/* Top Banner */
.top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.app-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.banner-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.album-art-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.album-art-mini {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    overflow: hidden;
    position: relative;
}

.album-art-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.album-art-mini span {
    position: relative;
    z-index: 0;
}

/* Content Area */
.content-area {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    padding-bottom: calc(120px + var(--safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Bottom Controls */
.bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    padding-bottom: calc(1rem + var(--safe-area-inset-bottom));
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-button {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s;
    min-width: 44px;
    min-height: 44px;
}

.nav-button:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.nav-button.active {
    color: var(--accent);
}

.playback-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    min-width: 44px;
    min-height: 44px;
}

.control-btn:hover {
    background: var(--bg-tertiary);
    transform: scale(1.1);
}

.play-btn {
    background: var(--accent);
    padding: 0.75rem;
}

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

/* Now Playing View */
.now-playing-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    gap: 2rem;
    padding-bottom: 2rem;
}

.album-art-large {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.album-art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.album-initial {
    font-size: 8rem;
    font-weight: bold;
    opacity: 0.3;
    position: relative;
    z-index: 0;
}

.track-info {
    text-align: center;
    max-width: 280px;
}

.track-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.track-artist {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

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

.progress-container {
    width: 100%;
    max-width: 280px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-tertiary);
    border-radius: 2px;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
}

.progress-bar::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Queue View */
.queue-view {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.queue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.queue-header h2 {
    font-size: 1.5rem;
}

.clear-all-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.clear-all-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.queue-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.queue-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: background 0.2s;
}

.queue-item:hover {
    background: var(--bg-tertiary);
}

.play-track-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

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

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

.track-name {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-duration {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.delete-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.delete-btn:hover {
    color: #ff4444;
}

/* Library View */
.library-view {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.library-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.tab {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    min-height: 44px;
}

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

.tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.library-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    min-height: 44px;
}

.action-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.grid-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    min-height: 44px;
}

.grid-item:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.item-art {
    width: 100%;
    aspect-ratio: 1;
    background: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    overflow: hidden;
    position: relative;
}

.item-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.item-art span {
    position: relative;
    z-index: 0;
}

.artist-item,
.genre-item {
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.artist-item .item-name,
.genre-item .item-name {
    font-size: 1.1rem;
    margin-bottom: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.item-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Detail View */
.detail-view {
    animation: slideIn 0.2s ease-out;
    padding-bottom: 2rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.back-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    min-height: 44px;
}

.back-btn:hover {
    text-decoration: underline;
}

.detail-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.primary-btn {
    background: var(--accent);
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: 24px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    min-height: 44px;
}

.primary-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.secondary-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: 24px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    min-height: 44px;
}

.secondary-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-item {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: background 0.2s;
    border: none;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.track-item:hover {
    background: var(--bg-tertiary);
}

.track-item:active {
    background: var(--accent);
    opacity: 0.8;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 300px);
    color: var(--text-secondary);
    padding: 3rem 1rem;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--bg-tertiary);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-state p {
    font-size: 1rem;
    margin-top: 1rem;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 300px);
    color: var(--text-secondary);
    padding: 3rem 1rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* Blazor Error UI */
#blazor-error-ui {
    background: #ffcc00;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .app-name {
        font-size: 1.3rem;
    }
    
    .content-area {
        padding-bottom: calc(140px + var(--safe-area-inset-bottom));
    }
    
    .bottom-controls {
        padding: 0.75rem;
        padding-bottom: calc(0.75rem + max(var(--safe-area-inset-bottom), 20px));
    }
    
    .playback-controls {
        gap: 0.75rem;
    }
    
    .album-art-large {
        width: 240px;
        height: 240px;
    }
    
    .album-initial {
        font-size: 6rem;
    }
    
    .item-grid, .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .detail-title {
        font-size: 1.5rem;
    }
    
    .empty-state {
        min-height: calc(100vh - 250px);
        padding: 2rem 1rem;
    }
    
    .empty-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .app-name {
        font-size: 1.2rem;
    }
    
    .playback-controls {
        gap: 0.5rem;
    }
    
    .control-btn {
        padding: 0.4rem;
    }
    
    .play-btn {
        padding: 0.6rem;
    }
    
    .content-area {
        padding: 0.75rem;
        padding-bottom: calc(140px + var(--safe-area-inset-bottom));
    }
    
    .item-grid, .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    .bottom-controls {
        padding-bottom: calc(1rem + max(var(--safe-area-inset-bottom), 25px)) !important;
    }
    
    .content-area {
        padding-bottom: calc(140px + max(var(--safe-area-inset-bottom), 25px)) !important;
    }
}

/* Touch Feedback */
@media (hover: none) and (pointer: coarse) {
    button:active, .grid-item:active, .tab:active {
        opacity: 0.7;
        transform: scale(0.98);
        transition: all 0.1s ease;
    }
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
}

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

playback-options {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

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

.option-btn.active {
    background: rgba(155, 89, 182, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.option-btn.active:hover {
    background: rgba(155, 89, 182, 0.3);
}

.option-btn svg {
    flex-shrink: 0;
}

.option-btn span {
    font-weight: 500;
}

/* Search Container */
.search-container {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    padding: 4px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    z-index: 1;
}

.search-clear-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.search-type-select {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 100px;
}

.search-type-select:hover {
    background: rgba(255, 255, 255, 0.08);
}

.search-type-select:focus {
    border-color: var(--accent);
}

.search-type-select option {
    background: #1a1a1a;
    color: white;
}

/* Search Results */
.search-results {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.search-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.search-results-header h3 {
    margin: 0;
    font-size: 18px;
    color: white;
    font-weight: 600;
}

.search-results .back-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.search-results .back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-results .detail-actions {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-results .track-list {
    flex: 1;
    overflow-y: auto;
}

.search-results .empty-state {
    padding: 40px 20px;
    text-align: center;
}

.search-results .loading-state {
    padding: 40px 20px;
}

/* Mobile Responsiveness for Search */
@media (max-width: 480px) {
    .search-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-type-select {
        width: 100%;
    }
    
    .playback-options {
        flex-wrap: wrap;
    }
    
    .option-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    gap: 1rem;
}

.pagination-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
    min-height: 44px;
    min-width: 120px;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-info {
    flex: 1;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .pagination-controls {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1rem;
        min-width: 90px;
        font-size: 0.9rem;
    }
    
    .pagination-info {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pagination-controls {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pagination-btn {
        width: 100%;
    }
    
    .pagination-info {
        order: -1;
        width: 100%;
    }
}

/* ============================================
   NOW PLAYING ICON BUTTON STYLES
   Add these styles to your existing app.css
   ============================================ */

/* Replace/update the album-art-button styles with this: */

.now-playing-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(155, 89, 182, 0.2);
    border: 2px solid #9b59b6;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.now-playing-btn:hover {
    background: rgba(155, 89, 182, 0.4);
    border-color: #b370cf;
    transform: scale(1.05);
}

.now-playing-btn:active {
    transform: scale(0.95);
}

.now-playing-btn svg {
    color: #9b59b6;
    transition: color 0.2s ease;
}

.now-playing-btn:hover svg {
    color: #b370cf;
}

/* Optional: Add a pulse animation when playing */
@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(155, 89, 182, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0);
    }
}

.now-playing-btn.playing {
    animation: pulse-ring 2s ease-out infinite;
}

/* Keep settings button consistent */
.settings-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.settings-btn:active {
    transform: scale(0.95);
}

.settings-btn svg {
    color: #fff;
}