@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #0a0a0c;
    --bg-card: #111114;
    --bg-elevated: #18181c;
    --border: rgba(255, 255, 255, 0.06);
    
    --text: #f0f0f2;
    --text-muted: #8b8b95;
    
    --primary: #E74C3C;
    --primary-dark: #c0392b;
    --primary-light: #ff6b5b;
    --primary-glow: rgba(231, 76, 60, 0.15);
    
    --discord: #5865F2;
    
    --success: #22c55e;
    --error: #ef4444;
    
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================== TYPOGRAPHY ==================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title-lg {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn i { font-size: 1rem; }

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-elevated);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

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

.btn-white:hover {
    background: var(--text);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn.disabled-btn {
    background: #3a3a3a;
    cursor: not-allowed;
}

.btn.disabled-btn:hover {
    transform: none;
    box-shadow: none;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 12, 0.95);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.logo-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
    background: var(--bg-elevated);
}

.header-actions {
    display: flex;
    gap: 8px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, var(--primary-glow), transparent),
        radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.05), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 560px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), transparent);
    pointer-events: none;
}

.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-float-card i {
    color: var(--primary);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-card);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* ==================== ABOUT ==================== */
.about-intro {
    margin-bottom: 60px;
}

.about-intro-content {
    max-width: 700px;
}

.features-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

.feature-big {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 24px;
}

.feature-big-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--primary-glow);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-big-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-big-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-big-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-list i {
    color: var(--success);
    font-size: 0.8rem;
}

.features-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s ease;
}

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

.feature-card-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-elevated);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card-icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== SERVER ==================== */
.server-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.server-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.server-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Модификаторы для разных серверов */
.server-card--main {
    border-color: rgba(231, 76, 60, 0.2);
}

.server-card--prism {
    border-color: rgba(243, 156, 18, 0.2);
}

.server-card--static {
    border-color: rgba(52, 152, 219, 0.2);
}

.server-card--loom {
    border-color: rgba(127, 140, 141, 0.2);
}

/* Старый класс для обратной совместимости */
.server-main {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.server-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.server-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #555;
}

.status-online .status-dot {
    background: var(--success);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse-glow 2s infinite;
}

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

.status-online { color: var(--success); }
.status-offline { color: var(--error); }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.8); }
}

.server-badge-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    background: var(--primary-glow);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 6px;
    color: var(--primary-light);
}

.server-card-content,
.server-main-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.server-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.server-desc {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.server-connection {
    display: flex;
    gap: 20px;
}

.connection-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 10px 16px;
    background: var(--bg);
    border-radius: 8px;
}

.connection-item i {
    color: var(--primary);
}

.server-progress-wrapper {
    margin-bottom: 24px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.server-progress {
    height: 8px;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0;
}

.server-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-box {
    text-align: center;
    padding: 16px;
    background: var(--bg);
    border-radius: 10px;
}

.stat-box-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-box-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.server-actions {
    display: flex;
    gap: 12px;
    padding: 24px 32px;
    border-top: 1px solid var(--border);
}

.server-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ==================== CAPABILITIES ==================== */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.capability-item {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.capability-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.capability-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.capability-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.capability-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==================== FAQ ==================== */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-header .section-desc {
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--bg);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==================== ANIMATIONS ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-right {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    /* Сетка серверов: 2 колонки на планшетах */
    .servers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-header {
        text-align: center;
    }
    
    .faq-header .section-desc {
        margin: 0 auto 24px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav, .header-actions {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-float-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .features-small {
        grid-template-columns: 1fr;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .server-card-content,
    .server-main-content {
        padding: 20px;
    }
    
    .server-actions {
        flex-direction: column;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .server-connection {
        flex-direction: column;
        gap: 10px;
    }
    
    .server-stats-row {
        grid-template-columns: 1fr;
    }
}

/* ==================== NEW SERVER STYLES ==================== */
/* Стили для карточек серверов */

.dot-orange { background: #f39c12; box-shadow: 0 0 10px rgba(243, 156, 18, 0.4); }
.dot-blue { background: #3498db; box-shadow: 0 0 10px rgba(52, 152, 219, 0.4); }
.dot-grey { background: #7f8c8d; }

.tag-orange {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.15);
    border-color: rgba(243, 156, 18, 0.3);
}

.tag-blue {
    color: #3498db;
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.tag-grey {
    color: #95a5a6;
    background: rgba(149, 165, 166, 0.15);
    border-color: rgba(149, 165, 166, 0.3);
}

.bar-orange { background: linear-gradient(90deg, #d35400, #f39c12); }
.bar-blue { background: linear-gradient(90deg, #2980b9, #3498db); }

.stats-opacity { opacity: 0.5; }

.btn-dev {
    cursor: default;
    width: 100%;
    justify-content: center;
    border: none;
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-dev:hover {
    transform: none;
    box-shadow: none;
}

.btn-active-dev {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn-early-dev {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
}

.btn-planned {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    opacity: 0.8;
}

/* ==================== GAME TABS ==================== */
.game-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.game-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-elevated);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-tab i {
    font-size: 1.2rem;
}

.game-tab:hover {
    border-color: var(--primary);
    color: var(--text);
    background: var(--bg-card);
}

.game-tab.active {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary-light);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.game-tab.active i {
    color: var(--primary);
}

/* GTA V специфичные стили */
.servers-grid--single {
    display: flex;
    justify-content: center;
}

.servers-grid--single .server-card {
    max-width: 500px;
    width: 100%;
}

.server-card--gtav {
    border-color: rgba(155, 89, 182, 0.2);
}

.dot-purple { 
    background: #9b59b6; 
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.4); 
}

.tag-purple {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.15);
    border-color: rgba(155, 89, 182, 0.3);
}

.bar-purple { 
    background: linear-gradient(90deg, #8e44ad, #9b59b6); 
}

.btn-gtav-dev {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.btn-gtav-play {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-gtav-play:hover {
    background: linear-gradient(135deg, #a66bbe 0%, #9b59b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

/* FiveM статусы */
.status-online-purple { color: #9b59b6; }
.status-offline-purple { color: var(--error); }

.dot-purple-online { 
    background: #9b59b6; 
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
    animation: pulse-glow-purple 2s infinite;
}

@keyframes pulse-glow-purple {
    0%, 100% { box-shadow: 0 0 10px rgba(155, 89, 182, 0.5); }
    50% { box-shadow: 0 0 20px rgba(155, 89, 182, 0.8); }
}

@media (max-width: 480px) {
    .game-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .game-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}