/* ========== YOUR EXISTING CSS (unchanged) ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #0f0f0f;
    font-family: 'Roboto', sans-serif, system-ui;
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.top-nav {
    padding: 8px 16px;
    background: #0f0f0f;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2a2a2a;
    flex-shrink: 0;
}
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo .jnsing {
    font-weight: 900;
    color: #00bcd4;
    font-size: 1rem;
    letter-spacing: -0.3px;
}
.logo .music {
    font-weight: 500;
    color: #aaa;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.mode-link {
    background: #222;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #333;
    white-space: nowrap;
}
.mode-link:hover { border-color: #00bcd4; }
.search-magnifier {
    background: transparent;
    border: none;
    color: #00bcd4;
    font-size: 1.2rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.search-magnifier:hover { background: #1f1f1f; }
.account-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #333;
    transition: border-color 0.2s;
    flex-shrink: 0;
    position: relative;
    z-index: 20000;
}
.account-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.account-icon:hover { border-color: #00bcd4; }

.sticky-audio-controls {
    position: sticky;
    top: 0;
    z-index: 90;
    background: #0f0f0f;
    padding: 8px 12px 0 12px;
    flex-shrink: 0;
}
.audio-controls {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #2c2c2c;
}
.play-pause-btn {
    background: #00bcd4;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.shuffle-btn, .repeat-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
}
.shuffle-btn.active, .repeat-btn.active {
    color: #00bcd4;
    background: rgba(0,188,212,0.12);
}
.repeat-one-indicator {
    position: absolute;
    bottom: 2px;
    right: 6px;
    font-size: 0.55rem;
    font-weight: bold;
    color: #00bcd4;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 0px 3px;
}
.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: #aaa;
    position: relative;
}
.progress-bar-wrapper {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.progress-bar-fill {
    height: 100%;
    background: #00bcd4;
    border-radius: 4px;
    width: 0%;
    position: relative;
    z-index: 1;
}
.progress-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #00bcd4;
    border-radius: 50%;
    cursor: grab;
    z-index: 2;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    transition: transform 0.1s;
    touch-action: none;
}
.progress-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}
.progress-thumb::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: rgba(0,188,212,0.2);
    pointer-events: none;
}
.progress-tooltip {
    position: fixed;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1000;
    white-space: nowrap;
    font-family: monospace;
    transform: translate(-50%, -20px);
    display: none;
}
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 20000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    padding: 20px;
}
.search-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
}
.search-modal-card {
    background: #1a1a1a;
    border-radius: 32px;
    width: 100%;
    max-width: 500px;
    margin-top: 20vh;
    border: 1px solid #333;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    overflow: hidden;
}
.search-modal-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #2a2a2a;
    background: #111;
}
.search-modal-header h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #00bcd4;
}
.close-modal-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-modal-btn:hover { background: #2a2a2a; color: white; }
.search-modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal-search-input {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 40px;
    padding: 14px 20px;
    font-size: 16px;
    color: white;
    outline: none;
    width: 100%;
}
.modal-search-input:focus { border-color: #00bcd4; background: #1a1a1a; }
.modal-search-btn {
    background: #00bcd4;
    border: none;
    color: #000;
    padding: 12px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.modal-search-btn:active { background: #0097a7; }
.app {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 12px 0 12px;
    overflow-y: auto;
    align-items: center;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    width: 100%;
}
.list-switch-control {
    width: 100%;
    background: #161616;
    padding: 8px 12px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 100001;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    flex-shrink: 0;
}
.switch-tab-btn {
    flex: 1;
    max-width: 130px;
    background: transparent;
    border: none;
    color: #777;
    padding: 12px 4px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.switch-tab-btn.active {
    background: #00bcd4;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.4);
}
.lyrics-toggle-btn {
    flex: 1;
    max-width: 130px;
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
    font-size: 0.72rem;
    font-weight: bold;
    padding: 12px 4px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    text-transform: uppercase;
    text-align: center;
}
.lyrics-toggle-btn.has-lyrics { border-color: #00bcd4; color: #00bcd4; background: rgba(0,188,212,0.08); }
.results-list {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 90px;
}
.hidden-view {
    display: none !important;
}
.song-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}
.song-card:hover { background: #222; }
.song-card.now-playing { background: #1a2e30; border-left: 3px solid #00bcd4; }
.song-info { flex: 1; overflow: hidden; }
.song-title { font-weight: 600; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 10px; }
.song-artist { font-size: 0.75rem; color: #aaa; margin-top: 2px; }
.play-btn { color: #00bcd4; font-size: 1.1rem; padding-left: 2px; }
.lyrics-display-panel {
    position: fixed !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
}
.lyrics-display-panel.expanded-videoke {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100vw !important; 
    height: calc(100vh - 54px) !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    border-radius: 0 !important;
    background: #050505 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: all !important;
    opacity: 1 !important;
}
#player {
    width: 100% !important;
    height: 100% !important;
    border: none;
}
.placeholder {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding: 40px 20px;
    width: 100%;
}
.lib-tab-bar {
    display: flex;
    background: #111;
    border-bottom: 1px solid #2a2a2a;
    width: 100%;
    max-width: 560px;
    flex-shrink: 0;
}
.lib-tab-btn {
    flex: 1;
    padding: 10px 0;
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.lib-tab-btn.active { color: #00bcd4; border-bottom-color: #00bcd4; }
.lib-action-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    width: 100%;
    max-width: 560px;
}
.lib-action-search {
    flex: 1;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 7px 14px;
    color: #ccc;
    font-size: 0.82rem;
    outline: none;
}
.lib-action-search:focus { border-color: #00bcd4; }
.lib-create-btn {
    background: #00bcd4;
    color: #000;
    border: none;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}
.lib-content {
    width: 100%;
    max-width: 560px;
    flex: 1;
    padding-bottom: 90px;
}
.lib-playlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-bottom: 90px;
}
.lib-playlist-tile {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 12px 8px;
    cursor: pointer;
    position: relative;
    border: 1px solid #2c2c2c;
    transition: background 0.15s;
    text-align: center;
}
.lib-tile-icon { font-size: 2rem; margin-bottom: 6px; }
.lib-tile-name {
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lib-tile-count { font-size: 0.68rem; color: #666; margin-top: 3px; }
.lib-tile-delete {
    position: absolute;
    top: 4px; right: 6px;
    background: transparent;
    border: none;
    color: #444;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 1;
}
.lib-track-list-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #1a1a1a;
    border-radius: 30px;
}
.lib-back-btn {
    background: transparent;
    border: none;
    color: #00bcd4;
    font-size: 1.2rem;
    cursor: pointer;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lib-track-list-title { flex: 1; font-weight: 600; font-size: 0.95rem; }
.lib-track-filter {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 0.75rem;
    color: #ccc;
    width: 110px;
    outline: none;
}
.lib-track-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 6px;
    cursor: pointer;
}
.lib-track-item.now-playing { background: #0d2426; border-left: 3px solid #00bcd4; }
.lib-track-num { font-size: 0.72rem; color: #555; width: 18px; text-align: right; flex-shrink: 0; }
.lib-track-info { flex: 1; min-width: 0; }
.lib-track-title { font-size: 0.84rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lib-track-artist { font-size: 0.7rem; color: #666; margin-top: 1px; }
.lib-track-actions { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }
.lib-track-btn {
    background: transparent; border: none; font-size: 1rem; cursor: pointer;
    padding: 4px; color: #aaa; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
}
.lib-track-btn.liked { color: #ff2a54; }
.lib-track-play-btn { color: #00bcd4; }
.lib-track-menu-wrapper { position: relative; }
.lib-track-dropdown {
    display: none; position: absolute; top: 100%; right: 0; margin-top: 4px;
    background: #1e1e1e; border: 1px solid #333; border-radius: 10px;
    min-width: 160px; z-index: 500; box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}
.lib-track-dropdown.open { display: block; }
.lib-track-dropdown-item { padding: 11px 14px; font-size: 0.83rem; cursor: pointer; color: #ddd; }
.card-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.action-icon-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 50%;
    color: #aaa;
}
.action-icon-btn.liked { color: #ff2a54; }
.song-card-menu-wrapper, .track-menu-wrapper { position: relative; }
.song-card-dropdown, .track-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    min-width: 170px;
    z-index: 500;
    box-shadow: 0 4px 16px rgba(0,0,0,0.6);
    overflow: hidden;
}
.song-card-dropdown.open, .track-dropdown.open { display: block; }
.song-card-dropdown-item, .track-dropdown-item {
    padding: 11px 14px;
    font-size: 0.83rem;
    cursor: pointer;
    color: #ddd;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    padding: 20px;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}
.playlist-selector-list { max-height: 200px; overflow-y: auto; margin-bottom: 14px; }
.playlist-select-option {
    background: #252525;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 6px;
}
.pull-to-refresh-spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    transition: height 0.1s ease;
    z-index: 100000;
    overflow: hidden;
    pointer-events: none;
}
.pull-to-refresh-spinner .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #00bcd4;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.auth-dropdown {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.auth-dropdown-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #ddd;
    transition: background 0.1s;
}
.auth-dropdown-item:hover { background: #2a2a2a; }

.signin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 20px;
}
.signin-card {
    background: #1a1a1a;
    border-radius: 32px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    border: 1px solid #333;
}
.signin-card h2 {
    margin-bottom: 16px;
    color: #00bcd4;
}
.signin-card p {
    margin-bottom: 24px;
    color: #aaa;
}
.google-signin-btn {
    background: #00bcd4;
    border: none;
    color: #000;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.subscription-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(12px);
    z-index: 19999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 20px;
}
.subscription-card {
    background: #1a1a1a;
    border-radius: 32px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    border: 1px solid #333;
}
.subscription-card h2 {
    margin-bottom: 16px;
    color: #00bcd4;
}
.subscription-card p {
    margin-bottom: 24px;
    color: #aaa;
}
.subscribe-btn {
    background: #00bcd4;
    border: none;
    color: #000;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.subscribe-btn:active { background: #0097a7; }
.subscribe-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.qr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    z-index: 30000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.qr-card {
    background: #1a1a1a;
    border-radius: 32px;
    padding: 24px;
    max-width: 90vw;
    width: 400px;
    text-align: center;
    border: 1px solid #333;
}
.qr-card img {
    width: 250px;
    height: 250px;
    margin: 16px auto;
    background: white;
    border-radius: 16px;
    padding: 8px;
}
.qr-status {
    font-size: 0.9rem;
    color: #00bcd4;
    margin-top: 12px;
}
.close-qr-btn {
    margin-top: 16px;
    background: #333;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
}

/* ========== ACCOUNT MODAL STYLES ========== */
.account-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 30000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.account-modal-overlay.active {
    display: flex;
}
.account-modal {
    background: #1e293b;
    border-radius: 20px;
    padding: 24px;
    max-width: 400px;
    width: 100%;
    border: 1px solid #334155;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.account-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.account-modal-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.account-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f59e0b;
}
.account-info-box {
    background: #0f172a;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #334155;
}
.account-info-row {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}
.account-info-row:last-child {
    margin-bottom: 0;
}
.account-info-label {
    font-weight: 600;
    color: #f59e0b;
    min-width: 100px;
    font-size: 0.9rem;
}
.account-info-value {
    color: #e2e8f0;
    font-size: 0.9rem;
    flex: 1;
    word-break: break-all;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}
.status-badge.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}
.status-badge.inactive {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}
.subscribe-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border: none;
    border-radius: 12px;
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}
.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}
.subscribe-button:active {
    transform: translateY(0);
}
.close-account-btn {
    width: 100%;
    padding: 12px;
    background: #334155;
    border: none;
    border-radius: 12px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}
.close-account-btn:hover {
    background: #475569;
}

/* ========== ADMIN PANEL STYLES ========== */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
    z-index: 30000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.admin-modal-overlay.active {
    display: flex;
}
.admin-modal {
    background: #0f172a;
    border-radius: 20px;
    padding: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #334155;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}
.admin-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #334155;
}
.admin-modal-icon {
    width: 40px;
    height: 40px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.admin-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc2626;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.admin-stat-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #334155;
    text-align: center;
}
.admin-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}
.admin-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}
.admin-users-list {
    background: #1e293b;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #334155;
}
.admin-users-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 12px;
}
.admin-user-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #0f172a;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #334155;
}
.admin-user-item:last-child {
    margin-bottom: 0;
}
.admin-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.admin-user-info {
    flex: 1;
    min-width: 0;
}
.admin-user-email {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.admin-user-status {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 2px;
}
.admin-user-status.online {
    color: #22c55e;
}
.admin-user-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}
.admin-user-badge.online {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}
.admin-user-badge.offline {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}
.close-admin-btn {
    width: 100%;
    padding: 12px;
    background: #334155;
    border: none;
    border-radius: 12px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 16px;
}
.close-admin-btn:hover {
    background: #475569;
}