/* Profile Page Styles */

/* Profile Hero Section with Background */
.profile-hero {
    position: relative;
    padding: 4rem 0;
  
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Light Theme Profile Hero */
[data-theme="light"] .profile-hero {
    background: linear-gradient(135deg, 
        rgba(245, 242, 232, 0.95) 0%, 
        rgba(232, 226, 212, 0.98) 50%, 
        rgba(245, 242, 232, 0.95) 100%);
}

[data-theme="light"] .profile-hero::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(184, 114, 44, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 114, 44, 0.05) 0%, transparent 50%);
}

.profile-card {
    position: relative;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    background: var(--glass-bg);
    z-index: 1;
}

/* Glass effect override for profile card */
.profile-card.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-glass);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-avatar {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-red);
    box-shadow: var(--shadow-neon);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent-red);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-neon);
}

.avatar-upload:hover {
    transform: scale(1.1);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-weight: 900;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-email {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.profile-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Profile Tabs Section */
.profile-tabs-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.profile-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    pointer-events: none;
}

/* Light Theme Profile Tabs Section */
[data-theme="light"] .profile-tabs-section {
    background: linear-gradient(135deg, 
        rgba(245, 242, 232, 0.95) 0%, 
        rgba(232, 226, 212, 0.98) 50%, 
        rgba(245, 242, 232, 0.95) 100%);
}

[data-theme="light"] .profile-tabs-section::before {
    background: 
        radial-gradient(circle at 30% 30%, rgba(184, 114, 44, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(184, 114, 44, 0.05) 0%, transparent 50%);
}

.tabs-container {
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

/* Glass effect override for tabs container */
.tabs-container.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-glass);
}

.tabs-header {
    display: flex;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: space-between;
    -ms-overflow-style: none;
}

.tabs-header::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1.25rem 2rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    font-family: 'Nord', sans-serif;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

.tab-btn.active {
    color: var(--accent-red);
    background: var(--card-bg);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-red);
    box-shadow: var(--shadow-neon);
}

.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Tab Content Styles */
.tab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tab-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tab-grid-4 .tab-item {
    min-height: 200px;
}

.tab-item {
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tab-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glass);
    border-color: var(--accent-red);
}

.tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.tab-item:hover::before {
    opacity: 1;
}

.tab-item-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-neon);
}

.tab-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.tab-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tab-item-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}



.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
    gap: 1rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.setting-item:last-child {
    border-bottom: none;
}


.setting-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}

.setting-text h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.setting-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.setting-control {
    display: flex;
    align-items: center;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--accent-red);
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch.active::before {
    transform: translateX(26px);
}

/* Language Selector */
.language-selector {
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.language-selector:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 64, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-hero {
        padding: 2rem 0;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .profile-name {
        font-size: 2rem;
    }

    .profile-stats {
        justify-content: center;
    }

    .profile-actions {
        justify-content: center;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 1.5rem;
    }

    .tab-grid {
        grid-template-columns: 1fr;
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 1.75rem;
    }


    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced Button Styles */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline-primary {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.btn-outline-primary:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.btn-outline-secondary {
    border-color: var(--glass-border);
    color: var(--text-secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--glass-bg);
    border-color: var(--accent-red);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Enhanced Form Controls */
.form-check-input:checked {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

.form-check-input:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 64, 0.25);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1060;
}

.toast {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glass);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hover Effects */
.tab-item:hover .tab-item-icon {
    animation: pulse 0.6s ease-in-out;
}

.profile-avatar:hover .avatar-upload {
    transform: scale(1.1);
    box-shadow: var(--shadow-neon);
}

/* Responsive Enhancements */
@media (max-width: 576px) {
    .profile-hero {
        padding: 1.5rem 0;
    }
    
    .profile-card {
        padding: 1rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* Modal Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tabSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.active {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* Light Theme Modal Overlay */


.modal-content {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    animation: modalSlideIn 0.3s ease-out;
}
[data-theme="light"] .modal-content {
    background: var(--primary-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

.modal.active .modal-content {
    transform: scale(1);
}

/* Tab Content Animations */
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: tabSlideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

/* Modal Form Styles */
.profile-form .form-group {
    margin-bottom: 1.5rem;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.profile-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-form input,
.profile-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    color: var(--text-primary);
    transition: var(--transition);
}

.profile-form input:focus,
.profile-form select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 64, 0.25);
}

/* Light Theme Form Focus */
[data-theme="light"] .profile-form input:focus,
[data-theme="light"] .profile-form select:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 114, 44, 0.25);
}

.profile-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

/* Avatar Upload Section */
.avatar-upload-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-red);
    box-shadow: var(--shadow-neon);
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Settings Styles */
.security-settings,
.notification-settings,
.privacy-settings,
.language-settings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-settings .form-group {
    margin-bottom: 1.5rem;
}

.language-settings .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    color: var(--text-primary);
    transition: var(--transition);
}

.language-settings .form-select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 64, 0.25);
}

/* Light Theme Language Select Focus */
[data-theme="light"] .language-settings .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 114, 44, 0.25);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .profile-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .avatar-upload-section {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-form .form-actions {
        flex-direction: column;
    }
    
    .profile-form .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
} 



/* Modal Content Styles */
.policy-content,
.terms-content,
.kvkk-content {
    color: var(--text-primary);
    line-height: 1.6;
}

.policy-content h3,
.terms-content h3,
.kvkk-content h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-content h4,
.terms-content h4,
.kvkk-content h4 {
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.policy-content p,
.terms-content p,
.kvkk-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.policy-content ul,
.terms-content ul,
.kvkk-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--text-secondary);
}

.policy-content li,
.terms-content li,
.kvkk-content li {
    margin-bottom: 0.5rem;
}

/* Settings Section Styles */
.settings-section {
    padding: 1rem 0;
    display: grid;
    gap: 1rem;
}

/* Language Selector Styles */
.language-selector {
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.language-selector:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 64, 0.25);
}

/* Light Theme Toggle Switch */
[data-theme="light"] .toggle-switch {
    background: rgba(139, 105, 20, 0.3);
}

[data-theme="light"] .toggle-switch.active {
    background: var(--accent-red);
}

[data-theme="light"] .language-selector:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 114, 44, 0.25);
} 

/* Settings Grid Styles */
.settings-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
}

.setting-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glass);
}

.setting-item:last-child {
    border-bottom: 1px solid var(--glass-border);
}

.setting-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}



.setting-text h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.setting-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.setting-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Toggle Switch Styles */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--accent-red);
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch.active::before {
    transform: translateX(26px);
}

/* Language Selector Styles */
.language-selector {
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
}

.language-selector:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 64, 0.25);
}

/* Light Theme Settings */
[data-theme="light"] .setting-item {
    background: var(--glass-bg);
    border-color: var(--glass-border);
}

[data-theme="light"] .setting-item:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-glass);
}

[data-theme="light"] .setting-icon {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    color: var(--accent-red);
}

[data-theme="light"] .toggle-switch {
    background: rgba(139, 105, 20, 0.3);
}

[data-theme="light"] .toggle-switch.active {
    background: var(--accent-red);
}

[data-theme="light"] .language-selector:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 114, 44, 0.25);
} 