:root {
    --primary-color: #facc15;        /* yellow-400 */
    --text-color: #1e293b;           /* slate-800 */
    --background-color: #fefce8;     /* yellow-50 */
    --card-bg: #fff;                 /* white */
    --border-color: #fde68a;         /* yellow-300 */
    --hover-color: #fef9c3;          /* yellow-100 */
    --active-color: #fcd34d;         /* yellow-300 */
}

[data-theme="dark"] {
    --primary-color: #facc15;        /* yellow-400 stays consistent */
    --text-color: #fefce8;           /* yellow-50 */
    --background-color: #2d2b2b;     /* dark yellow-brown tone */
    --card-bg: #3a3736;              /* warm dark neutral */
    --border-color: #a16207;         /* yellow-700 */
    --hover-color: #3f3f1e;          /* dim yellow-gray hover */
    --active-color: #ca8a04;         /* yellow-600 */
}

#theme-toggle {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.2s, color 0.2s;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
}

.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--card-bg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-brand span {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.header-brand h1 {
    font-weight: 600;
    font-size: 1.25rem;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
}
.main-layout {
    display: flex;
    flex-direction: row;;
}
.sidebar {
    flex :1;
}

.profiles-container {
    display: flex;
    overflow-x: scroll;
    
    scrollbar-width: none;
    -ms-overflow-style: none;
    
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    padding: 20px;
    border-radius: 10px;
    width: 120px;
    text-align: center;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.profile-name {
    font-weight: bold;
    font-size: 14px;
    min-height: 20px;
    min-width: 100%;
}
.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-button {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-button:hover {
    background-color: var(--hover-color);
}

/* Main Content Styles */
.app-main {
    flex: 1;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.category-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.category-button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
}

.category-button:hover {
    background-color: var(--hover-color);
}

.category-button.active {
    background-color: var(--primary-color);
    color: white;
}

.artists-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.artist-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.artist-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 1fr));
    gap: 0.75rem;
}

.artist-name {
    padding: 0.75rem 1rem;
    background-color: var(--card-bg);
    border-radius: 0.375rem;
    cursor: pointer;
    min-height: 48px;
    
}

.artist-name:hover {
    background-color: var(--hover-color);
    border-color: var(--primary-color);
}

/* Footer Styles */
.app-footer {
    background-color: var(--card-bg);
    padding: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    width: max-content;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    width: max-content;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
}

.social-links a:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
}


/* Responsive Design */
@media (max-width: 768px) {
    
    .app-header {
        padding: 1rem;
    }
    .main-layout {
        flex-direction: column;
    }
    .artists-container {
        flex-direction: column;
    }

    .app-main {
        padding: 1rem;
    }

    .artist-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .artist-list {
        grid-template-columns: 1fr;
    }

    .footer-links {
      justify-content: start;
        flex-direction: column;
        gap: 0.75rem;
    }
}