/* Character Card Styles */
.character-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.125rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.character-card:hover {
    border-color: rgba(107, 114, 128, 0.6);
}

.character-header {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
    padding: 1rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.5);
}

.online-status {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.4);
}

.privacy-tag {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.125rem;
}

.privacy-hidden {
    background-color: rgba(127, 29, 29, 0.3);
    color: rgb(252, 165, 165);
}

.privacy-visible {
    background-color: rgba(6, 78, 59, 0.3);
    color: rgb(110, 231, 183);
}

/* Toggle form animation */
.privacy-form-toggle {
    transition: all 0.3s ease-in-out;
}

/* Server summary cards */
.server-summary-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.125rem;
    padding: 1rem;
}

/* Character grid responsive */
@media (min-width: 768px) {
    .character-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Character card faction backgrounds */
.character-card-alliance {
    background-color: rgba(0, 70, 255, 0.1);
}

.character-card-horde {
    background-color: rgba(255, 0, 0, 0.1);
}

.character-card-neutral {
    background-color: rgba(128, 128, 128, 0.1);
}

/* Character card hover effects */
.character-card {
    transition: all 0.3s ease;
    position: relative;
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.character-card > * {
    position: relative;
    z-index: 2;
}

/* Gold text colors */
.gold-text {
    color: #FFD700;
}

.silver-text {
    color: #C0C0C0;
}

.copper-text {
    color: #B87333;
}

/* Online status indicator */
.online-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}

.online-indicator.online {
    background-color: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.online-indicator.offline {
    background-color: #6B7280;
}

/* Character level badge */
.level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Privacy tag styling */
.privacy-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-tag.hidden {
    background-color: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.privacy-tag.visible {
    background-color: rgba(16, 185, 129, 0.2);
    color: #A7F3D0;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Add to existing site.css */

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: rgba(30, 0, 0, 0.95);
    border: 3px solid rgba(220, 38, 38, 0.7);
    border-radius: 0.375rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    border-bottom: 2px solid rgba(220, 38, 38, 0.5);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fca5a5;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i {
    color: #f87171;
}

.modal-body {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 0.25rem;
}

.modal-body p {
    color: #fecaca;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Delete modal specific */
.delete-modal .modal-content {
    background: linear-gradient(to bottom, rgba(30, 0, 0, 0.95), rgba(50, 0, 0, 0.95));
    border: 3px solid rgba(220, 38, 38, 0.8);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.delete-modal .modal-header {
    border-bottom-color: rgba(248, 113, 113, 0.6);
}

/* Button styles */
.btn-danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: 2px solid rgba(248, 113, 113, 0.5);
    font-weight: bold;
    font-family: 'Cinzel', serif;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.2);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: rgba(248, 113, 113, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.9), rgba(31, 41, 55, 0.9));
    color: #d1d5db;
    border: 2px solid rgba(75, 85, 99, 0.6);
    font-weight: bold;
    font-family: 'Cinzel', serif;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.9), rgba(55, 65, 81, 0.9));
    border-color: rgba(107, 114, 128, 0.8);
    transform: translateY(-2px);
}

/* Layout improvements */
.section-card {
    background: rgba(17, 24, 39, 0.7);
    border: 2px solid rgba(75, 85, 99, 0.4);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: rgba(120, 53, 15, 0.5);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.section-header {
    border-bottom: 2px solid rgba(120, 53, 15, 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fbbf24;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
}

/* Account details box */
.account-details-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(17, 24, 39, 0.6));
    border: 2px solid rgba(120, 53, 15, 0.4);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

/* Statistics section - match original style */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.375rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:hover {
    border-color: rgba(120, 53, 15, 0.6);
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.25rem;
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 0.875rem;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick links - match original style */
.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-link {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 0.375rem;
    padding: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.quick-link:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(120, 53, 15, 0.5);
    transform: translateX(5px);
    text-decoration: none;
}

.quick-link i {
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
}

.quick-link span {
    color: #e5e7eb;
    font-weight: 500;
}

/* Recent tickets styling */
.ticket-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.4);
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.ticket-item:hover {
    border-color: rgba(120, 53, 15, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.ticket-subject {
    font-weight: bold;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.ticket-number {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.ticket-preview {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.ticket-date {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Game server accounts */
.server-account-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(75, 85, 99, 0.4);
    border-radius: 0.5rem;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.server-account-card.online {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(6, 78, 59, 0.1);
}

.server-account-card.offline {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(127, 29, 29, 0.1);
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.online {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.offline {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* User level badge */
.user-level-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.8), rgba(180, 83, 9, 0.8));
    color: #fbbf24;
    font-weight: bold;
    border-radius: 0.375rem;
    border: 1px solid rgba(180, 83, 9, 0.5);
    font-family: 'Cinzel', serif;
}

/* Grid layout fixes */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .main-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Delete account button */
.btn-delete-account {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.8), rgba(185, 28, 28, 0.9));
    color: #fca5a5;
    border: 2px solid rgba(239, 68, 68, 0.5);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.btn-delete-account:hover {
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.9), rgba(220, 38, 38, 1));
    border-color: rgba(239, 68, 68, 0.8);
    color: #fecaca;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.3);
}

/* Edit account button */
.btn-edit-account {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.8), rgba(180, 83, 9, 0.9));
    color: #fbbf24;
    border: 2px solid rgba(245, 158, 11, 0.5);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.btn-edit-account:hover {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.9), rgba(217, 119, 6, 1));
    border-color: rgba(245, 158, 11, 0.8);
    color: #fde68a;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

/* Chart specific styles */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.chart-no-data {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    padding: 2rem;
}

.chart-tooltip {
    background-color: rgba(21, 23, 30, 0.95);
    border: 1px solid rgba(199, 179, 119, 0.3);
    border-radius: 4px;
    padding: 8px 12px;
    color: #e2e8f0;
    font-size: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.chart-legend {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: #e2e8f0;
}

/* Responsive chart adjustments */
@media (max-width: 768px) {
    .chart-container {
        height: 250px;
    }
    
    .chart-legend {
        font-size: 10px;
    }
}

/* Chart specific styles */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.chart-no-data {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    padding: 2rem;
}

/* Responsive chart adjustments */
@media (max-width: 768px) {
    .chart-container {
        height: 250px;
    }
    
    .chart-legend {
        font-size: 10px;
    }
    
    .grid-cols-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* Flex utilities */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.h-full {
    height: 100%;
}

/* Text colors */
.text-gray-500 {
    color: #6b7280;
}

/* Events Section */
.events-section {
    margin-top: 60px;
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .events-section {
        padding: 0 2rem;
    }
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Event Card */
.event-card {
    background: #15171e;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.125rem;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 179, 119, 0.5);
    box-shadow: 0 10px 25px -5px rgba(199, 179, 119, 0.1);
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 20;
    transition: border-color 0.5s ease;
}

.event-card:hover::before {
    border-color: rgba(199, 179, 119, 0.3);
}

/* Event Image */
.event-image-container {
    height: 16rem;
    overflow: hidden;
    position: relative;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.event-date {
    position: absolute;
    bottom: 0.75rem;
    left: 1rem;
    color: #c7b377;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 0.125rem;
    backdrop-filter: blur(8px);
}

/* Event Content */
.event-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.event-card:hover .event-title {
    color: #c7b377;
}

.event-description {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.event-meta {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.event-poster {
    color: #c7b377;
    margin-right: 0.25rem;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(199, 179, 119, 0.2);
}

.section-title {
    font-size: 1.875rem;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    color: #e5e7eb;
}

.section-title span {
    color: #c7b377;
}

.section-button {
    color: #c7b377;
    font-size: 0.875rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Cinzel', serif;
}

.section-button:hover {
    color: white;
}

.section-button i {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}

/* No Events Message */
.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #6b7280;
    font-size: 1.125rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.4);
    border-radius: 0.5rem;
}

/* Event Category Badges */
.event-category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.625rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.5rem;
    border-radius: 0.125rem;
    backdrop-filter: blur(8px);
}

.event-category.holiday {
    background: rgba(163, 53, 238, 0.2);
    color: #d8b4fe;
    border: 1px solid rgba(163, 53, 238, 0.3);
}

.event-category.pvp {
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.event-category.pve {
    background: rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.event-category.timewalking {
    background: rgba(245, 158, 11, 0.2);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.event-category.world {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.event-category.event {
    background: rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.event-category.pet {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Admin Toggle Switch Styles */
.admin-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.admin-toggle-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.admin-toggle-label {
    position: relative;
    display: block;
    cursor: pointer;
    width: 60px;
    height: 30px;
    background-color: #4b5563; /* gray-700 */
    border-radius: 30px;
    transition: background-color 0.2s;
}

.admin-toggle-label .admin-toggle-inner {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 28px;
    height: 28px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s;
}

.admin-toggle-checkbox:checked + .admin-toggle-label {
    background-color: #059669; /* green-600 */
}

.admin-toggle-checkbox:checked + .admin-toggle-label .admin-toggle-inner {
    transform: translateX(30px);
}

/* Language Switcher Styles */
.language-switcher-btn {
    min-width: 100px;
    justify-content: space-between;
}

.language-switcher-dropdown {
    backdrop-filter: blur(10px);
    background: rgba(21, 23, 30, 0.95);
    border: 1px solid rgba(199, 179, 119, 0.2);
}

.language-switcher-item {
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.language-switcher-item:hover {
    border-left-color: rgba(199, 179, 119, 0.3);
    background: rgba(199, 179, 119, 0.08);
    transform: translateX(2px);
}

.mobile-language-item {
    min-width: 60px;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-language-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animation for language dropdown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-switcher-dropdown {
    animation: fadeInDown 0.2s ease-out;
}

/* Active language indicator */
.language-switcher-item.active {
    position: relative;
}

.language-switcher-item.active::after {
    content: '';
    position: absolute;
    right: 12px;
    width: 8px;
    height: 8px;
    background-color: #c7b377;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(199, 179, 119, 0.5);
}
