:root {
    --bg-dark: #0f0f0f;
    --bg-lighter: #1a1a2e;
    --bg-card: #16213e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent-purple: #d946ef;
    --accent-red: #ff006e;
    --accent-cyan: #00d9ff;
    --glow-purple: 0 0 20px rgba(217, 70, 239, 0.6);
    --glow-red: 0 0 20px rgba(255, 0, 110, 0.6);
    --error: #ef4444;
    --success: #10b981;
    --border: #2d2d3d;
}

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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--glow-purple);
    }
    50% {
        box-shadow: var(--glow-red);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    border-bottom: 2px solid var(--accent-purple);
    box-shadow: var(--glow-purple);
    padding: 25px 0;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInFromTop 0.5s ease-out;
}

.header h1 {
    font-size: 32px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));
    transition: width 0.3s ease-out;
}

.nav-link:hover {
    color: var(--accent-purple);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logout {
    color: var(--accent-red);
}

.nav-logout:hover {
    color: #ff0055;
    text-shadow: var(--glow-red);
}

/* Login Page */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.6s ease-out;
}

.login-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--accent-purple);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.3), var(--glow-purple);
    backdrop-filter: blur(10px);
}

.login-box h1 {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
}

.login-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 500;
}

.user-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.login-sso {
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 600px) {
    .user-selection {
        grid-template-columns: repeat(3, 1fr);
    }
}

.user-button {
    padding: 30px 20px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border: 2px solid var(--accent-purple);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.user-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.3), transparent);
    transition: left 0.5s ease-out;
}

.user-button:hover {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5), inset 0 0 20px rgba(217, 70, 239, 0.2);
    transform: translateY(-4px);
}

.user-button:hover::before {
    left: 100%;
}

.user-button:active {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(217, 70, 239, 0.8);
}

.user-button span {
    font-size: 28px;
}

.user-selected {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--accent-purple);
    animation: fadeIn 0.3s ease-out;
}

.user-selected p {
    margin: 0;
    font-size: 14px;
}

.user-selected strong {
    color: var(--accent-cyan);
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent-red);
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    padding: 0;
    transition: all 0.2s ease-out;
}

.btn-link:hover {
    color: var(--accent-purple);
    text-shadow: var(--glow-purple);
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #0f0f0f;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
}

/* Buttons */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease-out;
    z-index: 0;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));
    color: white;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.7), 0 0 20px rgba(255, 0, 110, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: var(--text-primary);
    border: 2px solid var(--accent-purple);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--accent-red);
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    transition: all 0.2s ease-out;
    display: flex;
    align-items: center;
}

.btn-remove:hover {
    color: #ff0055;
    text-shadow: var(--glow-red);
    transform: scale(1.2);
}

.btn-youtube {
    display: inline-block;
    background: linear-gradient(90deg, #ff0000, #ff006e);
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    margin-top: 10px;
    transition: all 0.3s ease-out;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.7);
    transform: translateY(-2px);
}

/* Messages */
.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    border-left: 4px solid var(--accent-red);
    color: #ff6b9d;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 6px;
    animation: fadeIn 0.3s ease-out;
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-left: 4px solid var(--success);
    color: var(--success);
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 6px;
    animation: fadeIn 0.3s ease-out;
}

.message {
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 6px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--accent-purple);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.3), var(--glow-purple);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease-out;
}

.close:hover {
    color: var(--accent-purple);
    text-shadow: var(--glow-purple);
    transform: scale(1.3);
}

.modal-content h2 {
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-buttons button {
    flex: 1;
    min-width: 120px;
}

/* Home Page */
.main {
    padding: 20px 0;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.songs-container {
    margin-bottom: 40px;
}

.songs-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    font-size: 22px;
    margin: 0;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.display-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.limit-btn {
    padding: 6px 12px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border: 1px solid var(--accent-purple);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.limit-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.search-sort-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #0f0f0f 0%, #16213e 100%);
    border: 2px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease-out;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 12px rgba(217, 70, 239, 0.2);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 0;
}

@media (max-width: 768px) {
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .songs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 15px 0;
    }

    .header h1 {
        font-size: 24px;
    }

    .nav {
        flex-direction: row;
        gap: 15px;
        width: 100%;
        font-size: 12px;
    }

    .nav-link {
        font-size: 13px;
    }

    .login-box {
        padding: 25px 15px;
    }

    .login-box h1 {
        font-size: 24px;
    }

    .login-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .user-selection {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .user-button {
        padding: 20px 15px;
        font-size: 15px;
    }

    .sort-controls {
        gap: 6px;
    }

    .sort-btn {
        padding: 6px 10px;
        font-size: 11px;
        flex: 1;
        min-width: 50px;
    }

    .song-card {
        margin-bottom: 12px;
    }

    .song-card-content {
        padding: 12px;
    }

    .song-cover {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .song-card-footer {
        padding: 10px 12px;
    }

    .btn-youtube {
        padding: 6px 10px;
        font-size: 11px;
    }

    .modal-content {
        padding: 20px;
        width: 95%;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons button {
        min-width: auto;
    }
}

.songs-column h2 {
    font-size: 20px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.search-box {
    margin-bottom: 15px;
}

.search-box input {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0f0f0f 0%, #16213e 100%);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease-out;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.sort-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.sort-btn {
    padding: 8px 14px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border: 2px solid var(--accent-purple);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.sort-btn:hover {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.sort-btn:active {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
    border-color: var(--accent-cyan);
    color: white;
}

.search-result-count {
    font-size: 13px;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(217, 70, 239, 0.05));
    border-radius: 6px;
    border-left: 3px solid var(--accent-cyan);
}

.songs-list {
    max-height: 700px;
    overflow-y: auto;
}

.song-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeIn 0.4s ease-out;
}

.song-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.song-card-content {
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.song-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

/* Grid Card Layout */
.song-card-item {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeIn 0.4s ease-out;
}

.song-card-item:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 12px rgba(217, 70, 239, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.song-card-item .song-cover {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 4px;
}

.song-card-item .song-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.song-card-item .song-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

.song-card-item .song-artist {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.song-card-item .song-album {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

.song-card-item .song-duration {
    font-size: 11px;
    color: var(--accent-cyan);
    font-weight: 500;
    margin: 2px 0 0 0;
}

.song-actions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    justify-content: flex-end;
}

.btn-youtube-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(90deg, #ff0000, #ff006e);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    text-decoration: none;
}

.btn-youtube-small:hover {
    box-shadow: 0 0 12px rgba(255, 0, 110, 0.5);
    transform: scale(1.05);
}

.btn-remove-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 4px;
    color: var(--accent-red);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.btn-remove-small:hover {
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.song-info {
    flex: 1;
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 6px;
    gap: 8px;
}

.song-header h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

.song-artist {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 4px 0;
}

.song-album {
    color: var(--text-secondary);
    font-size: 12px;
    font-style: italic;
    margin: 2px 0;
}

.song-duration {
    display: inline-block;
    color: var(--accent-cyan);
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

.song-card-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

.no-link {
    color: var(--text-secondary);
    font-size: 12px;
}

.empty-state {
    text-align: center;
    color: var(--text-secondary);
    padding: 50px 20px;
    font-style: italic;
    animation: fadeIn 0.4s ease-out;
}

/* Admin View Styles */
.admin-card {
    border-left: 4px solid var(--accent-red);
}

.admin-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-user-list {
    background: linear-gradient(135deg, #0f0f0f 0%, #16213e 100%);
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid var(--border);
}

.user-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background-color: #1a1a2e;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.user-badge.has-song {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border-color: var(--success);
}

.user-badge.no-song {
    background-color: rgba(255, 0, 110, 0.15);
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.youtube-status {
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    animation: fadeIn 0.3s ease-out;
}

/* Account Page */
.account-container {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.account-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--accent-purple);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.2), var(--glow-purple);
}

.account-card h2 {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 24px;
}

.account-info {
    background: linear-gradient(135deg, #0f0f0f 0%, #16213e 100%);
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.account-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.account-info strong {
    color: var(--accent-cyan);
}

.password-section {
    margin-top: 25px;
}

.password-section h3 {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 25px 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));
    border-radius: 5px;
    box-shadow: inset 0 0 10px rgba(217, 70, 239, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 15px rgba(217, 70, 239, 0.6);
}
