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

:root {
    /* Основные цвета */
    --bg-color: #0A0A0A;
    --text-color: #FFFFFF;
    --hint-color: #888888;
    --secondary-bg-color: #1A1A1A;
    --card-bg: #141414;
    
    /* Фиолетовая палитра */
    --primary: #a54bff;
    --primary-dark: #8a3ae8;
    --primary-light: #b873ff;
    --primary-gradient: linear-gradient(135deg, #a54bff 0%, #b873ff 100%);
    
    /* Желтая палитра */
    --accent: #FBBF24;
    --accent-dark: #F59E0B;
    --accent-light: #FCD34D;
    --accent-gradient: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    
    /* Дополнительные цвета */
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    /* Градиенты */
    --bg-gradient: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0F0F0F 100%);
    --card-gradient: linear-gradient(135deg, #141414 0%, #1F1F1F 100%);
    --button-gradient: linear-gradient(135deg, #a54bff 0%, #b873ff 100%);
    --accent-button-gradient: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    
    /* Тени */
    --shadow-sm: 0 1px 2px 0 rgba(165, 75, 255, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(165, 75, 255, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(165, 75, 255, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(165, 75, 255, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-color);
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInApp 0.8s ease-out 0.5s forwards;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(165, 75, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(165, 75, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes fadeInApp {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
    -webkit-user-select: none;
    user-select: none;
    min-height: 100vh;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--secondary-bg-color);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Header */
.header {
    background: transparent;
    padding: 0px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(187, 134, 252, 0.3);
    position: relative;
    border-bottom: 2px solid var(--primary);
    overflow: hidden;
    height: 140px;
    min-height: 140px;
}

/* Logo Styles - Image-based */
.logo {
    margin-bottom: 0px;
    margin-top: -100px;
    position: relative;
    display: inline-block;
}

.logo-image {
    height: 320px;
    width: auto;
    transition: all 0.3s ease;
    animation: logoAppear 0.8s ease-out;
    object-fit: contain;
    /* Для PNG с прозрачным фоном - просто добавляем свечение */
    filter: 
        drop-shadow(0 0 8px rgba(255,255,255,0.6))
        drop-shadow(0 0 16px rgba(255,255,255,0.4))
        drop-shadow(0 0 24px rgba(165,75,255,0.2));
    border-radius: 0px;
    background: transparent;
    display: block;
}

.logo-image:hover {
    transform: translateY(-1px) scale(1.02);
    filter: 
        drop-shadow(0 0 12px rgba(165,75,255,0.8))
        drop-shadow(0 0 20px rgba(165,75,255,0.6))
        drop-shadow(0 0 28px rgba(165,75,255,0.4));
}

/* Адаптивные размеры логотипа */
@media (max-width: 375px) {
    .logo-image {
        height: 240px;
    }
}

@media (min-width: 414px) and (max-width: 768px) {
    .logo-image {
        height: 280px;
    }
}

@media (min-width: 769px) {
    .logo-image {
        height: 360px;
    }
}

/* Старые стили для букв удалены - теперь используем изображение */

/* Старые неоновые эффекты для букв удалены */

/* Footer */
.footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.footer-link {
    color: rgba(165, 75, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-link:hover {
    color: #a54bff;
    opacity: 1;
}

/* Адаптивность футера */
@media (max-width: 375px) {
    .footer {
        bottom: 15px;
    }
    .footer-link {
        font-size: 11px;
    }
}

/* Старые сегментированные полосы удалены */

/* Анимация появления логотипа */
@keyframes logoAppear {
    0% { 
        opacity: 0; 
        transform: translateY(-20px) scale(0.8);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

.logo {
    animation: logoAppear 0.8s ease-out;
}

/* Старые анимации для букв удалены */

.user-name {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
    z-index: 3;
}

.refresh-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(165, 75, 255, 0.4);
    z-index: 3;
}

.refresh-btn:active {
    transform: translateY(-50%) rotate(180deg) scale(0.9);
    background: rgba(255,255,255,0.3);
}

.refresh-btn.spinning {
    animation: spin 1s linear infinite;
    transform: translateY(-50%);
}

/* Tabs */
.tabs {
    display: flex;
    background: linear-gradient(90deg, #0F0F0F 0%, #1A1A1A 50%, #0F0F0F 100%);
    padding: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.tab {
    flex: 1;
    min-width: 80px;
    padding: 12px 10px;
    background: transparent;
    border: none;
    font-size: 14px;
    color: var(--hint-color);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
}

/* Мобильная оптимизация табов */
@media (max-width: 480px) {
    .tab {
        padding: 16px 8px;
        font-size: 13px;
        min-height: 44px;
        border-radius: 12px 12px 0 0;
    }
}

.tab:hover {
    background: rgba(165, 75, 255, 0.1);
    color: var(--primary);
}

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
    background: rgba(165, 75, 255, 0.1);
    box-shadow: 0 -2px 10px rgba(165, 75, 255, 0.2);
}

/* Content */
.content {
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-content.active {
    display: block;
}

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

/* Card */
.card {
    background: var(--card-gradient);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(165, 75, 255, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.4);
}

.card:hover::before {
    opacity: 1;
}

/* Мобильная оптимизация карточек */
@media (max-width: 480px) {
    .card {
        margin-bottom: 12px;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
}

.card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 500;
}

/* Profile Info */
.profile-info {
    margin-top: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--secondary-bg-color);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: var(--hint-color);
    font-size: 14px;
}

.info-row .value {
    font-weight: 600;
    font-size: 14px;
}

/* Progress Card */
.progress-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    border: 2px solid var(--primary);
    color: white;
    box-shadow: 0 8px 32px rgba(187, 134, 252, 0.2);
}

.progress-card h3 {
    color: white;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 16px;
    color: white;
    z-index: 1;
}

.progress-message {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

/* Success Card */
.success-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border: 2px solid var(--accent);
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(3, 218, 198, 0.3);
}

.success-card h3 {
    color: white;
}

.free-count {
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0;
}

.hint {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Мобильная оптимизация кнопок */
@media (max-width: 480px) {
    .btn {
        padding: 16px 24px;
        min-height: 44px;
        font-size: 16px;
        border-radius: 12px;
        margin-top: 12px;
    }
}

.btn-primary {
    background: var(--button-gradient);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.btn-success {
    background: var(--accent-button-gradient);
    color: white;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(251, 191, 36, 0.4);
}

.btn-success:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.btn-secondary {
    background: var(--card-gradient);
    color: var(--text-color);
    border: 1px solid rgba(165, 75, 255, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 15px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.btn-secondary:active {
    transform: scale(0.98);
    opacity: 0.9;
}

/* Состояние загрузки кнопок */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    animation: pulse 1.5s ease-in-out infinite;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.7;
    }
    50% { 
        opacity: 1;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.social-btn.vk {
    background: #0077FF;
    color: white;
}

.social-btn.telegram {
    background: #0088cc;
    color: white;
}

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

/* History List */
.history-list {
    margin-top: 15px;
}

.history-item {
    padding: 18px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 4px solid var(--info);
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.history-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(187, 134, 252, 0.2);
    border-left-color: var(--primary);
}

.history-item.free {
    border-left-color: var(--success);
}

.history-item.rated {
    border-left-color: var(--warning);
}

.history-date {
    font-size: 12px;
    color: var(--hint-color);
    margin-bottom: 5px;
}

.history-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

.history-status.paid {
    background: #DBEAFE;
    color: #1E40AF;
}

.history-status.free {
    background: #D1FAE5;
    color: #065F46;
}

.history-admin {
    font-size: 12px;
    color: var(--hint-color);
    margin-top: 5px;
}

.history-rating {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.history-comment {
    font-size: 13px;
    font-style: italic;
    color: var(--hint-color);
    margin-top: 5px;
}

.rate-btn {
    margin-top: 8px;
    padding: 6px 12px;
    font-size: 12px;
}

.empty-state {
    text-align: center;
    color: var(--hint-color);
    padding: 30px;
    font-size: 14px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* Мобильная оптимизация статистики */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 16px;
    }
}

.stat-item {
    background: var(--card-gradient);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.3);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--hint-color);
}

/* Info Text */
.info-text {
    font-size: 14px;
    line-height: 1.6;
}

.info-text p {
    margin-bottom: 10px;
}

.info-text strong {
    color: var(--primary);
}

/* Admin Sections */
.admin-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--secondary-bg-color);
}

.admin-section:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Search Box */
.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--secondary-bg-color);
    border-radius: 8px;
    font-size: 14px;
    background: var(--bg-color);
    color: var(--text-color);
}

.input:focus {
    outline: none;
    border-color: var(--primary);
}

.textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 2px solid var(--secondary-bg-color);
    border-radius: 8px;
    font-size: 14px;
    background: var(--bg-color);
    color: var(--text-color);
    resize: vertical;
    font-family: inherit;
}

.textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Search Results */
.search-results {
    margin-top: 15px;
}

.guest-item {
    padding: 18px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.guest-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(187, 134, 252, 0.3);
    border-color: var(--primary);
}

.guest-item:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.guest-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.guest-info {
    font-size: 13px;
    color: var(--hint-color);
}

.guest-purchases {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 8px;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Guests List */
.guests-list {
    margin-top: 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Мобильная оптимизация модальных окон */
@media (max-width: 480px) {
    .modal {
        padding: 10px;
        align-items: flex-end;
    }
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--primary);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

/* Мобильная оптимизация содержимого модальных окон */
@media (max-width: 480px) {
    .modal-content {
        border-radius: 16px 16px 0 0;
        padding: 20px;
        max-height: 85vh;
        max-width: 100%;
        margin: 0;
    }
}

.modal-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

/* Hookah Counter Styles */
.hookah-counter {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
    text-align: center;
}

.counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-counter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    background: #6c5ce7;
    border: 2px solid #6c5ce7;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-counter:hover {
    background: #5f3dc4;
    border-color: #5f3dc4;
    transform: scale(1.1);
}

.btn-counter:disabled {
    background: #555;
    border-color: #555;
    cursor: not-allowed;
    transform: none;
}

.hookah-count {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    min-width: 30px;
    text-align: center;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.star-btn {
    padding: 12px;
    background: var(--secondary-bg-color);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

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

.star-btn.selected {
    background: var(--warning);
    border-color: var(--warning);
    color: white;
}

/* Анимации и эффекты */
@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(139, 92, 246, 0.6);
    }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

/* Улучшенные эффекты для карточек */
.card:hover .stat-value {
    animation: glow 2s ease-in-out infinite;
}

/* Градиентные тексты */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .social-btn {
        padding: 16px;
        font-size: 16px;
        min-height: 44px;
    }
    
    .content {
        padding: 12px;
    }
    
    .header {
        padding: 16px 20px;
    }
    
    .refresh-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Hide admin tab by default */
.admin-only {
    display: none;
}

