/* assets/css/style.css */
:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #9c27b0;
    --secondary-dark: #7b1fa2;
    --accent-color: #ff4081;
    --background: #1a1a2e;
    --surface: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --border-radius: 12px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.png');
    opacity: 0.1;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* News Section */
.news-section {
    padding: 4rem 0;
    background: var(--surface);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.news-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Servers Section */
.servers-section {
    padding: 4rem 0;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.server-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
    border-left: 4px solid var(--success);
}

.server-card.maintenance {
    border-left-color: var(--warning);
}

.server-card.offline {
    border-left-color: var(--error);
}

.server-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.server-card.maintenance .server-status {
    background: var(--warning);
}

.server-card.offline .server-status {
    background: var(--error);
}

.server-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.server-players, .server-version {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Download Section */
.download-section {
    padding: 4rem 0;
    background: var(--surface);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.download-size {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.download-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
}

/* Auth Pages */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-top: 0;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.auth-form {
    background: var(--surface);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
}

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

.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
}

/* Skins Page */
.skins-page {
    padding: 2rem 0;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.skins-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.skin-upload, .skin-preview {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.upload-area:hover, .upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(233, 30, 99, 0.05);
}

.upload-area i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-area input {
    display: none;
}

.upload-info {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.skin-display {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skin-image {
    max-width: 100%;
    max-height: 200px;
}

.no-skin {
    color: var(--text-secondary);
}

.skin-url code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    display: block;
    word-break: break-all;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    padding: 2rem;
}

.mobile-nav ul {
    list-style: none;
    margin-top: 4rem;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: background 0.3s;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav, .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section .container,
    .download-content,
    .auth-container,
    .skins-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .text-center {
        text-align: center;
    }
}

/* News Page Styles */
.news-page {
    padding: 2rem 0;
    background: var(--background);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.news-item-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.news-item-title {
    margin-bottom: 1rem;
}

.news-item-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.news-item-title a:hover {
    color: var(--primary-color);
}

.news-item-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-item-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-item-link:hover {
    text-decoration: underline;
}

/* News Article */
.news-article {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.news-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.news-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-meta {
    color: var(--text-secondary);
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.news-content p {
    margin-bottom: 1.5rem;
}

.news-footer {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.no-news {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 3rem;
    background: var(--surface);
    border-radius: var(--border-radius);
}

/* ===== FIXED ADMIN STYLES ===== */
.admin-page {
    background: #0f0f23;
    min-height: 100vh;
    margin-top: 80px; /* Учитываем высоту header */
}

.admin-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Sidebar */
.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-right: 1px solid #2d2d4d;
    padding: 0;
    position: fixed;
    left: 0;
    top: 80px; /* Отступ от header */
    height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #2d2d4d;
    background: rgba(233, 30, 99, 0.1);
}

.admin-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.admin-info h3 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.admin-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar-nav {
    padding: 1.5rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #a0a0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary-color);
}

.nav-item.active {
    color: white;
    background: rgba(233, 30, 99, 0.15);
    border-left-color: var(--primary-color);
}

.nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.nav-indicator {
    margin-left: auto;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
}

.nav-item.active .nav-indicator {
    opacity: 1;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid #2d2d4d;
    margin-top: auto;
}

.back-to-site {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a0c0;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-site:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Main Content */
.admin-main {
    margin-left: 280px;
    flex: 1;
    background: #0f0f23;
    min-height: calc(100vh - 80px);
}

.admin-header {
    background: #1a1a2e;
    border-bottom: 1px solid #2d2d4d;
    padding: 1.5rem 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.user-greeting {
    color: #a0a0c0;
    font-size: 0.9rem;
}

/* Notifications */
.notification {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    margin: 0 2rem 1.5rem;
    border-radius: 8px;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.notification.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
}

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

/* Admin Content */
.admin-content {
    padding: 2rem;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #1a1a2e;
    border: 1px solid #2d2d4d;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.stat-card.primary::before { background: var(--primary-color); }
.stat-card.success::before { background: #4caf50; }
.stat-card.warning::before { background: #ff9800; }
.stat-card.info::before { background: #2196f3; }

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card.primary .stat-icon { background: rgba(233, 30, 99, 0.1); color: var(--primary-color); }
.stat-card.success .stat-icon { background: rgba(76, 175, 80, 0.1); color: #4caf50; }
.stat-card.warning .stat-icon { background: rgba(255, 152, 0, 0.1); color: #ff9800; }
.stat-card.info .stat-icon { background: rgba(33, 150, 243, 0.1); color: #2196f3; }

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.stat-content p {
    color: #a0a0c0;
    margin: 0;
    font-size: 0.9rem;
}

.stat-trend {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-card.primary .stat-trend { color: var(--primary-color); }
.stat-card.success .stat-trend { color: #4caf50; }
.stat-card.warning .stat-trend { color: #ff9800; }
.stat-card.info .stat-trend { color: #2196f3; }

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.card {
    background: #1a1a2e;
    border: 1px solid #2d2d4d;
    border-radius: 12px;
    overflow: hidden;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #2d2d4d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-content {
    padding: 1.5rem;
}

/* User List */
.user-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid #2d2d4d;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.user-info {
    flex: 1;
}

.user-info strong {
    color: white;
    display: block;
    font-size: 0.9rem;
}

.user-info span {
    color: #a0a0c0;
    font-size: 0.8rem;
}

.user-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.user-status.admin {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.user-status.user {
    background: rgba(160, 160, 192, 0.1);
    color: #a0a0c0;
    border: 1px solid rgba(160, 160, 192, 0.3);
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid #2d2d4d;
}

.news-item h4 {
    color: white;
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.news-item p {
    color: #a0a0c0;
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.news-date {
    color: #666687;
    font-size: 0.75rem;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.header-info h2 {
    color: white;
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
}

.header-info p {
    color: #a0a0c0;
    margin: 0;
    font-size: 0.9rem;
}

/* Data Table */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #2d2d4d;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a2e;
}

.data-table th {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-color);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #2d2d4d;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid #2d2d4d;
    color: #a0a0c0;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.user-id {
    color: #666687;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.user-info-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar.small {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.user-details strong {
    color: white;
    display: block;
    font-size: 0.9rem;
}

.user-email {
    color: #a0a0c0;
}

.registration-date {
    color: #666687;
    font-size: 0.85rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.admin {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.status-badge.user {
    background: rgba(160, 160, 192, 0.1);
    color: #a0a0c0;
    border: 1px solid rgba(160, 160, 192, 0.3);
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem;
    font-size: 0.8rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tabs */
.tabs-container {
    margin-top: 1rem;
}

.tabs-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4d;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: #a0a0c0;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    color: white;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

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

/* News Grid Admin */
.news-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.news-card-admin {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #2d2d4d;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.news-card-admin:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.news-header h3 {
    color: white;
    margin: 0;
    font-size: 1rem;
    flex: 1;
}

.news-date {
    color: #666687;
    font-size: 0.8rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.news-excerpt {
    color: #a0a0c0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.news-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.news-actions .btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
    min-width: auto;
}

.news-actions .inline-form {
    display: inline;
    margin: 0;
}

.actions .btn-sm {
    padding: 0.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-form {
    display: inline;
    margin: 0;
}

/* Forms */
.news-form, .settings-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #2d2d4d;
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: #666687;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Settings */
.settings-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid #2d2d4d;
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
}

.stat-info {
    flex: 1;
}

.stat-info span {
    color: #a0a0c0;
    font-size: 0.85rem;
    display: block;
}

.stat-info strong {
    color: white;
    font-size: 0.9rem;
}

/* No Data States */
.no-data {
    text-align: center;
    padding: 3rem 2rem;
    color: #666687;
}

.no-data i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-data p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        top: 90px;
        left: 20px;
        z-index: 1000;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.75rem;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .admin-content {
        padding: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid-admin {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .actions {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        flex-wrap: wrap;
    }
    .news-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .news-actions .btn-sm {
        width: 100%;
        justify-content: center;
    }
    
    .actions {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .actions .btn-sm {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .admin-header {
        padding: 1rem;
    }
    
    .admin-content {
        padding: 0.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .data-table {
        font-size: 0.8rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem;
    }
    
        .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PROFILE PAGE STYLES ===== */
.profile-page {
    background: var(--background);
    min-height: 100vh;
    padding: 2rem 0;
}

.profile-header {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.profile-avatar {
    font-size: 5rem;
    color: var(--primary-color);
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-email {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.profile-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-section {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.profile-section h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-item label {
    color: var(--text-secondary);
    font-weight: 500;
}

.info-item span {
    color: var(--text-primary);
    font-weight: 600;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-card:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.action-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.action-card span {
    font-weight: 600;
    text-align: center;
}

/* ===== DOWNLOAD PAGE STYLES ===== */
.download-page {
    background: var(--background);
    min-height: 100vh;
    padding: 2rem 0;
}

.download-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    box-shadow: var(--shadow);
    align-items: center;
}

.download-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.download-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.download-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.download-actions {
    margin-top: 2.5rem;
}

.download-meta {
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.download-meta p {
    margin-bottom: 0.5rem;
}

.download-preview img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.installation-steps {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.installation-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.step h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== USER DROPDOWN STYLES ===== */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background 0.3s;
}

.user-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.user-name {
    font-weight: 500;
    color: var(--text-primary);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.user-dropdown a:hover {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-color);
}

.user-dropdown a i {
    width: 16px;
    text-align: center;
}

/* ===== FIXED ADMIN BUTTONS ===== */
.news-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.news-actions .btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
    min-width: auto;
    flex-shrink: 0;
}

.news-actions .inline-form {
    display: inline;
    margin: 0;
}

.actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.actions .btn-sm {
    padding: 0.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Улучшенная адаптивность для таблиц */
@media (max-width: 768px) {
    .news-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }
    
    .news-actions .btn-sm {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .actions {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .actions .btn-sm {
        width: 100%;
        padding: 0.75rem;
    }
    
    .data-table {
        font-size: 0.75rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .user-info-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .news-grid-admin {
        grid-template-columns: 1fr;
    }
    
    .news-card-admin {
        padding: 1rem;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-date {
        margin-left: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Улучшенные стили для кнопок */
.btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
    background: rgba(76, 175, 80, 0.3);
    transform: translateY(-1px);
}

.btn-danger {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn-danger:hover {
    background: rgba(244, 67, 54, 0.3);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* === Sakura Petals (Fixed Working Version) === */
#sakuraContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 2000; /* Поверх всего, включая header */
}

.sakura-petal {
    position: absolute;
    top: -50px;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    will-change: transform;
    filter: drop-shadow(0 2px 4px rgba(255,182,193,0.7));
}

@keyframes sakura-fall {
    0% {
        transform: translateY(-50px) translateX(0) rotate(0deg);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--sway-distance)) rotate(360deg);
        opacity: 0;
    }
}

@keyframes sakura-sway {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
    75% { transform: translateX(-10px); }
}

.petal-small {
    width: 20px;
    height: 20px;
}

.petal-medium {
    width: 25px;
    height: 25px;
}

.petal-large {
    width: 30px;
    height: 30px;
}

/* Обновленные стили кнопок с анимациями */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Анимация для основной кнопки */
.btn-primary {
    background: var(--gradient);
    color: white;
    position: relative;
    z-index: 1;
}

.btn-primary::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.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(233, 30, 99, 0.4),
        0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Анимация для вторичной кнопки */
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: calc(var(--border-radius) - 2px);
}

.btn-secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Анимация для outline кнопки */
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* Эффект пульсации для привлечения внимания */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
}

/* Анимация загрузки для кнопок */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Адаптивные улучшения для мобильных устройств */
@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn:hover {
        transform: none !important;
    }
    
    .btn:active {
        transform: scale(0.98) !important;
    }
}

/* Улучшенная доступность */
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus:not(:focus-visible) {
    outline: none;
}

/* Стили для статусов серверов */
.server-card {
    transition: all 0.3s ease;
    cursor: default; /* Убираем курсор-указатель */
}

.server-card.online {
    border-left: 4px solid var(--success);
}

.server-card.offline {
    border-left: 4px solid var(--error);
}

.server-card.maintenance {
    border-left: 4px solid var(--warning);
}

.server-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.server-status.loading {
    background: var(--warning);
    animation: pulse 1.5s infinite;
}

.server-status.error {
    background: var(--error);
}

.server-card.online .server-status {
    background: var(--success);
}

.server-card.offline .server-status {
    background: var(--error);
}

.server-card.maintenance .server-status {
    background: var(--warning);
}

.loading-server, .error-server {
    text-align: center;
    padding: 2rem;
}

.status-update-info, .status-update-time {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* Анимация пульсации */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Для страницы поддержки */
.status-item {
    cursor: default; /* Убираем курсор-указатель */
}

.status-item.loading .status-dot {
    background: var(--warning);
    animation: pulse 1.5s infinite;
}

.status-item.online .status-dot {
    background: var(--success);
}

.status-item.offline .status-dot {
    background: var(--error);
}

.status-item.maintenance .status-dot {
    background: var(--warning);
}
