/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Refined Gold Theme Colors */
    --gold-primary: #D4AF37;
    --gold-secondary: #F4D03F;
    --gold-dark: #B8860B;
    --gold-light: #F7DC6F;
    --gold-accent: #E8C547;
    --gold-muted: #C9B037;
    
    /* Enhanced Black Theme Colors */
    --black-primary: #0A0A0A;
    --black-secondary: #1C1C1E;
    --black-tertiary: #2C2C2E;
    --black-light: #3A3A3C;
    --black-surface: #48484A;
    
    /* Professional Glass Effects */
    --glass-bg: rgba(212, 175, 55, 0.08);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.25);
    --glass-highlight: rgba(212, 175, 55, 0.05);
    
    /* Professional Typography */
    --font-primary: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-secondary: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', monospace;
    
    /* Spacing - Compacto */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 50%, var(--black-tertiary) 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Professional Icon Styles */
.tab-icon, .section-icon, .stat-icon, .search-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tab-icon {
    margin-right: 8px;
}

.section-icon {
    margin-right: 10px;
    width: 22px;
    height: 22px;
}

.stat-icon {
    width: 24px;
    height: 24px;
}

.search-icon {
    width: 18px;
    height: 18px;
}

.empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    opacity: 0.5;
}

.copy-btn svg {
    width: 14px;
    height: 14px;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--glass-bg), transparent);
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Gold Bar Logo */
.gold-bar-logo {
    position: relative;
    width: 80px;
    height: 20px;
    margin: 0 auto var(--spacing-sm);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 50%, var(--gold-dark) 100%);
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.gold-bar-logo.small {
    width: 40px;
    height: 10px;
    margin: 0;
}

.gold-bar-logo .bar {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: inherit;
}

.gold-bar-logo .shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.1) 25%, 
        rgba(255, 223, 0, 0.4) 40%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 223, 0, 0.4) 60%, 
        rgba(255, 215, 0, 0.1) 75%, 
        transparent 100%
    );
    animation: goldShine 4s ease-in-out infinite;
    opacity: 0;
}

@keyframes goldShine {
    0% { 
        transform: translateX(-120%) rotate(-15deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(0%) rotate(-15deg);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateX(120%) rotate(-15deg);
        opacity: 0;
    }
}

/* Login Container */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--spacing-md);
}

.login-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    width: 100%;
    max-width: 400px;
    box-shadow: 
        0 20px 40px var(--glass-shadow),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Logo Container */
.logo-container {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.input-container {
    position: relative;
}

.input-container input {
    width: 100%;
    padding: var(--spacing-md);
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-container input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.input-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.input-container input:focus + .input-glow {
    opacity: 0.2;
}

/* Button Styles */
.login-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    color: var(--black-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-sm);
}

.login-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-btn.loading {
    color: transparent;
}

/* Loading Spinner */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--black-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner.large {
    width: 40px;
    height: 40px;
    border-width: 3px;
    border-top-color: var(--gold-primary);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Error Message */
.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    color: #ff6b6b;
    font-size: 0.9rem;
    text-align: center;
}

/* Contact Section */
.contact-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.contact-divider {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), rgba(244, 208, 63, 0.6), rgba(255, 215, 0, 0.5), transparent);
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.contact-divider span {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(35, 35, 35, 0.9));
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.8rem;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info {
    text-align: center;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
    opacity: 0.9;
}

.telegram-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 12px;
    color: #0088cc;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.telegram-contact:hover {
    background: rgba(0, 136, 204, 0.15);
    border-color: rgba(0, 136, 204, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.2);
}

.telegram-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.telegram-contact:hover::before {
    left: 100%;
}

.telegram-icon {
    width: 24px;
    height: 24px;
    color: #0088cc;
    transition: transform 0.3s ease;
}

.telegram-contact:hover .telegram-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #0088cc;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

.contact-handle {
    font-size: 14px;
    font-weight: 500;
    color: #0088cc;
    font-family: var(--font-secondary);
}

.external-link-icon {
    width: 16px;
    height: 16px;
    color: #0088cc;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.telegram-contact:hover .external-link-icon {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Dashboard Styles */
.dashboard-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content .logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 0;
}

.header-content .company-name {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.profile-email {
    font-size: 12px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin: 2px 0 0 0;
    opacity: 0.9;
}

.logout-btn {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: var(--radius-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    color: #ff6b6b;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(220, 53, 69, 0.3);
}

/* Dashboard Main */
.dashboard-main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    width: 100%;
}

.loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

/* Summary Section */
.summary-section h2 {
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.summary-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--glass-shadow);
    border-color: var(--gold-primary);
}

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
}

.card-content h3 {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.card-value {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Tabs */
.tabs-nav {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    overflow-x: auto;
    padding-bottom: var(--spacing-xs);
}

.tab-btn {
    background: rgba(28, 28, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.tab-btn:hover {
    color: white;
    border-color: var(--gold-accent);
    background: rgba(28, 28, 30, 0.9);
    transform: translateY(-1px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    color: var(--black-primary);
    border-color: var(--gold-primary);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Panel Card */
.panel-card {
    background: rgba(28, 28, 30, 0.85);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.panel-card h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.info-item label {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.info-item .value {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Services Header */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* Services Controls */
.services-controls {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.search-container {
    flex: 1;
}

.search-input-container {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-icon {
    position: absolute;
    right: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    pointer-events: none;
}

.filter-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-container label {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.service-filter {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.9rem;
    min-width: 200px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-filter:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.service-filter option {
    background: var(--black-secondary);
    color: white;
}

.services-stats {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.stat-item.active {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.stat-item.expired {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.stat-icon {
    font-size: 1rem;
}

/* Services Sections */
.services-section {
    margin-bottom: var(--spacing-xl);
}

.section-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid transparent;
}

.section-title.active {
    color: #22c55e;
    border-bottom-color: rgba(34, 197, 94, 0.3);
}

.section-title.expired {
    color: #ef4444;
    border-bottom-color: rgba(239, 68, 68, 0.3);
}

.section-icon {
    font-size: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-sm);
}

.service-card {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--glass-border);
    transition: all 0.3s ease;
}

.service-card.active::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.service-card.expired::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.service-card.warning::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.service-card.about-to-expire::before {
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.service-card.critical::before {
    background: linear-gradient(90deg, #f97316, #ea580c);
    animation: pulse 2s infinite;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--glass-shadow);
}

.service-card.active:hover {
    border-color: #22c55e;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
}

.service-card.expired:hover {
    border-color: #ef4444;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.2);
}

/* Service Header */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-sm);
}

.service-title {
    flex: 1;
}

.service-name-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.service-title h4 {
    color: var(--gold-primary);
    font-size: 1rem;
    margin: 0;
}

.service-subtitle {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    flex-wrap: wrap;
}

.service-key {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-style: italic;
}

.service-status-badge {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.service-status-badge.online {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.service-status-badge.offline {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.service-status-badge.maintenance {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.service-status-badge.other {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.service-status-badge .status-dot {
    width: 4px;
    height: 4px;
}

.service-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b7280;
}

.service-status.active .status-dot {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.service-status.warning .status-dot {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.service-status.about-to-expire .status-dot {
    background: #f97316;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

.service-status.critical .status-dot {
    background: #f97316;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
    animation: pulse 1.5s infinite;
}

.service-status.expired .status-dot {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.service-status.active .status-text {
    color: #22c55e;
}

.service-status.warning .status-text {
    color: #f59e0b;
}

.service-status.about-to-expire .status-text {
    color: #f97316;
}

.service-status.about-to-expire .status-text::before {
    content: "⚠️ ";
    margin-right: 2px;
}

.service-status.critical .status-text {
    color: #f97316;
}

.service-status.expired .status-text {
    color: #ef4444;
}



/* Service Expiration */
.service-expiration {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.service-expiration.expired {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.1);
}

.expiration-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.expiration-label {
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 500;
}

.expiration-date {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.expiration-countdown {
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 500;
}

.service-expiration.expired .expiration-countdown {
    color: #ef4444;
}

/* Service Details */
.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-xs);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-item label {
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 500;
}

.detail-item span {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Key Item Styles */
.key-item {
    grid-column: 1 / -1;
    margin-bottom: var(--spacing-xs);
}

.key-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: var(--spacing-xs);
}

.key-value {
    flex: 1;
    color: var(--gold-primary);
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    word-break: break-all;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.copy-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-sm);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold-primary);
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Empty State Improvements */
.empty-state {
    text-align: center;
    padding: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.6);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.empty-state small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Profile Styles */
.profile-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.financial-card {
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.financial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

.financial-card.saldo::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.financial-card.pontos::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.financial-card.cashback::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.financial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--glass-shadow);
    border-color: var(--gold-primary);
}

.financial-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.financial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.financial-content label {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.financial-value {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 16px var(--glass-shadow);
}

.stat-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Support Styles */
.support-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--glass-border);
}

.support-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.support-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.support-content {
    width: 100%;
}

.support-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.support-item {
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    gap: var(--spacing-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.15);
}

.support-item:hover::before {
    opacity: 1;
}

.support-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.support-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

/* Telegram Support Specific Styles */
.telegram-support .support-icon {
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: white;
}

.telegram-support:hover .support-icon {
    background: linear-gradient(135deg, #229ed9, #0088cc);
    transform: scale(1.1);
}

.telegram-support:hover .support-icon svg {
    transform: rotate(5deg);
}

/* FAQ Support Specific Styles */
.faq-support .support-icon {
    background: linear-gradient(135deg, var(--gold-primary), #ffd700);
    color: #1a1a1a;
}

.faq-support:hover .support-icon {
    background: linear-gradient(135deg, #ffd700, var(--gold-primary));
    transform: scale(1.1);
}

/* Status Support Specific Styles */
.status-support .support-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.status-support:hover .support-icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    transform: scale(1.1);
}

.support-info {
    flex: 1;
}

.support-info h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.support-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

/* Contact Actions */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: white;
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.telegram-link:hover {
    background: linear-gradient(135deg, #229ed9, #0088cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.3);
}

.telegram-link .link-icon {
    width: 18px;
    height: 18px;
}

.contact-handle {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
}

.telegram-handle {
    color: var(--gold-primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
}

.copy-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--radius-sm);
    padding: var(--spacing-xs);
    color: var(--gold-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

/* FAQ Topics */
.faq-topics {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.faq-topic {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-topic:last-child {
    border-bottom: none;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-dot.online {
    background: #22c55e;
    animation: pulse-green 2s infinite;
}

.status-text {
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.faq-list, .tech-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0 0 0;
}

.faq-list li, .tech-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: var(--spacing-md);
}

.faq-list li:before {
    content: "❓";
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

.tech-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.faq-list li:last-child, .tech-list li:last-child {
    border-bottom: none;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-card {
        padding: var(--spacing-lg);
        margin: var(--spacing-md);
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .dashboard-main {
        padding: var(--spacing-md);
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .tabs-nav {
        justify-content: center;
    }
    
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .services-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .service-title {
        width: 100%;
    }
    

    
    .service-details {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }
    
    .expiration-info {
        text-align: center;
    }
    
    .service-name-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .service-subtitle {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .support-section {
        grid-template-columns: 1fr;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
    }
    
    .support-icon {
        align-self: center;
    }
    
    .services-controls {
        padding: var(--spacing-sm);
    }
    
    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-filter {
        width: 100%;
        min-width: unset;
    }
    
    .search-input {
        font-size: 0.85rem;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
    }
    
    .financial-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .financial-icon {
        align-self: center;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .stat-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: var(--spacing-sm);
    }
    
    .login-card {
        padding: var(--spacing-md);
    }
    
    .gold-bar-logo {
        width: 60px;
        height: 15px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .summary-section h2 {
        font-size: 1.5rem;
    }
}

/* ===== USER MENU DROPDOWN ===== */
.user-menu {
    position: relative;
    z-index: 1000;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.user-trigger:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.2),
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.4),
        inset 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.user-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-trigger:hover .user-avatar::before {
    opacity: 1;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-name {
    color: var(--gold-primary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    color: var(--gold-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 320px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1001;
}

.dropdown-content {
    padding: 1.5rem;
}

/* Profile Section */
.user-profile-section {
    margin-bottom: 1rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4),
        inset 0 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.profile-avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg,
        rgba(212, 175, 55, 0.8),
        rgba(244, 208, 63, 0.6),
        rgba(232, 197, 71, 0.4),
        rgba(212, 175, 55, 0.8)
    );
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-info {
    flex: 1;
}

.profile-name {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.02em;
}

.profile-username {
    color: var(--gold-muted);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.6) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent
    );
    margin: 1rem 0;
    position: relative;
}

.dropdown-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 1px;
    background: var(--gold-primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}



/* Logout Button */
.logout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    color: #ff6b7a;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logout-button:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
    box-shadow: 
        0 4px 20px rgba(220, 53, 69, 0.2),
        0 0 15px rgba(220, 53, 69, 0.3);
    transform: translateY(-1px);
}

.logout-icon {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-dropdown {
        min-width: 280px;
        right: -1rem;
    }
    
    .user-trigger {
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
    }
    
    .user-avatar {
        width: 28px;
        height: 28px;
    }
    
    .user-name {
        font-size: 0.8rem;
    }
    
    .dropdown-content {
        padding: 1.25rem;
    }
}

/* Animation for dropdown */
[x-cloak] { display: none !important; }

.user-dropdown[x-transition] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-dropdown[x-transition][x-show] {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.user-dropdown[x-transition]:not([x-show]) {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
}