/* ===== ОБНОВЛЕННЫЙ CSS С ЦВЕТОВОЙ ПАЛИТРОЙ ДРАКОНА ===== */

/* Переменные для цветов дракона */
:root {
    --dragon-gold: #FFD700;
    --dragon-orange: #FF4500;
    --dragon-red: #8B0000;
    --dragon-dark-red: #8B0000;
    --dragon-brown: #B87333;
    --dragon-dark: #1a1a1a;
    --dragon-gray: #2f2f2f;
    --dragon-light: #f0d8c5;
    --dragon-fire: #FF4500;
    --dragon-success: #27ae60;
}

/* Основные стили сайта */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: 
        url('./assets/images/bg.jpg') center/cover fixed;
    min-height: 100vh;
    color: #e0e0e0;
    overflow-x: hidden;
    padding-top: 10px;
    margin-top: 200px;
}

/* Новый логотип lineage.png с эффектами дракона */
#main-logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 59px;
    background: linear-gradient(145deg, rgba(255, 69, 0, 0.1), rgba(255, 215, 0, 0.05)), 
                url('./assets/images/lineage.png') no-repeat center center;
    background-size: contain;
    z-index: 100;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

#main-logo:hover {
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.8)) 
            drop-shadow(0 0 25px rgba(255, 215, 0, 0.4));
    transform: translateX(-50%) scale(1.05);
}

/* Убираем старый логотип */
#logo {
    display: none !important;
}

/* Основной контейнер с обновленной цветовой схемой */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.container {
    display: flex;
    gap: 20px;
    width: 100%;
    min-height: 500px;
}

.left-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* ОСНОВНОЙ КОНТЕНТ С ЦВЕТАМИ ДРАКОНА */
.main-content {
    flex: 1;
    background: linear-gradient(145deg, rgba(47, 47, 47, 0.95), rgba(26, 26, 26, 0.95));
    border-radius: 12px;
    padding: 25px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(139, 0, 0, 0.3);
    border: 1px solid rgba(184, 115, 51, 0.5);
    min-height: 400px;
    overflow-y: auto;
    position: relative;
}

.main-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 69, 0, 0.8), 
        rgba(255, 215, 0, 0.8),
        rgba(255, 69, 0, 0.8),
        transparent
    );
    border-radius: 12px 12px 0 0;
}

/* СТИЛИ ДЛЯ ПРОКРУТКИ */
.main-content::-webkit-scrollbar {
    width: 10px;
}

.main-content::-webkit-scrollbar-track {
    background: rgba(47, 47, 47, 0.8);
    border-radius: 5px;
}

.main-content::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.8), 
        rgba(255, 215, 0, 0.8));
    border-radius: 5px;
    border: 2px solid rgba(47, 47, 47, 0.8);
}

.main-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, 
        rgba(255, 215, 0, 0.9), 
        rgba(184, 115, 51, 0.9));
}

/* ЗАГОЛОВКИ С ОГНЕННЫМ ЭФФЕКТОМ */
h1, .content-title {
    color: #FFD700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid rgba(255, 69, 0, 0.7);
    font-family: 'Cinzel', 'Segoe UI', Tahoma, sans-serif;
    text-align: center;
    font-size: 24px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.7),
        0 0 10px rgba(255, 69, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
}

.content-title:before {
    content: '🐉';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.content-title:after {
    content: '🐉';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* СЧЕТЧИК ПОСЕЩЕНИЙ - ОБНОВЛЕННЫЙ */
.counter-container {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.8), 
        rgba(26, 26, 26, 0.8));
    border-radius: 10px;
    border: 1px solid rgba(184, 115, 51, 0.6);
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.counter-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent
    );
    transition: 0.5s;
    z-index: 0;
}

.counter-container:hover {
    border-color: #FFD700;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 69, 0, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.counter-container:hover:before {
    left: 100%;
}

.counter-container a {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.counter-container a img {
    border-radius: 6px;
    filter: sepia(0.3) brightness(0.9) contrast(1.1);
    transition: all 0.5s ease;
    transform: scale(0.98);
    opacity: 0.9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.counter-container:hover a img {
    filter: sepia(0) brightness(1.1) contrast(1.2);
    transform: scale(1.03);
    opacity: 1;
    box-shadow: 
        0 8px 20px rgba(255, 69, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.counter-container:after {
    content: '🔥 Посещения огненного королевства 🔥';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    font-size: 11px;
    color: #FFD700;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 0 5px rgba(255, 69, 0, 0.5);
    font-family: 'Cinzel', sans-serif;
}

.counter-container:hover:after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* БЫСТРЫЕ ССЫЛКИ С ЦВЕТАМИ ТЕМАТИКИ ДРАКОНА */
.quick-link {
    display: inline-block;
    padding: 14px 25px;
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.9), 
        rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(184, 115, 51, 0.7);
    border-radius: 8px;
    color: #f0d8c5;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Cinzel', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px;
    position: relative;
    overflow: hidden;
    font-size: 13px;
}

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

.quick-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
    color: #ffffff;
}

.quick-link:hover:before {
    left: 100%;
}

.quick-link-register {
    background: linear-gradient(145deg, 
        rgba(255, 69, 0, 0.8), 
        rgba(139, 0, 0, 0.8));
    border-color: #FFD700;
    color: #FFD700;
}

.quick-link-download {
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.8), 
        rgba(139, 0, 0, 0.8));
    border-color: #FF6347;
    color: #ffffff;
}

.quick-link-rules {
    background: linear-gradient(145deg, 
        rgba(0, 100, 0, 0.8), 
        rgba(85, 107, 47, 0.8));
    border-color: #8B4513;
    color: #f0d8c5;
}

.quick-link-about {
    background: linear-gradient(145deg, 
        rgba(128, 0, 0, 0.8), 
        rgba(75, 0, 0, 0.8));
    border-color: #FF4500;
    color: #ffffff;
}

.quick-link-cp {
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.8), 
        rgba(255, 215, 0, 0.3));
    border-color: #FFD700;
    color: #FFD700;
}

/* ЭФФЕКТЫ ОГНЯ ДЛЯ ТЕКСТА */
.fire-text {
    animation: fire-glow 2s infinite;
}

@keyframes fire-glow {
    0%, 100% { 
        text-shadow: 
            0 0 5px rgba(255, 69, 0, 0.8),
            0 0 10px rgba(255, 69, 0, 0.6),
            0 0 20px rgba(255, 69, 0, 0.4); 
    }
    50% { 
        text-shadow: 
            0 0 10px rgba(255, 69, 0, 1),
            0 0 20px rgba(255, 69, 0, 0.8),
            0 0 30px rgba(255, 69, 0, 0.6),
            0 0 40px rgba(255, 69, 0, 0.4); 
    }
}

/* ЗАКАТНЫЙ ГРАДИЕНТ ДЛЯ РАЗДЕЛОВ */
.content-section {
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.7), 
        rgba(26, 26, 26, 0.7));
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(184, 115, 51, 0.5);
    position: relative;
    overflow: hidden;
}

.content-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 69, 0, 0.5), 
        transparent
    );
}

/* ===== ОКНО СТАТУСА ===== */
.status-window {
    background: linear-gradient(145deg, 
        rgba(26, 18, 11, 0.95), 
        rgba(42, 31, 26, 0.95));
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 25px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 215, 0, 0.1),
        0 0 15px rgba(139, 0, 0, 0.3);
    border: 1px solid rgba(184, 115, 51, 0.7);
    position: relative;
    overflow: hidden;
}

.status-window:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 10%, 
        rgba(211, 84, 0, 0.8) 30%, 
        rgba(255, 69, 0, 1) 50%, 
        rgba(211, 84, 0, 0.8) 70%, 
        transparent 90%
    );
}

.status-title {
    font-family: 'Cinzel', 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFD700;
    text-align: center;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 69, 0, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(184, 115, 51, 0.7);
    position: relative;
}

.status-title:after {
    content: '⚔️';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.7;
}

.status-display {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 69, 0, 0.3);
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.server-status-output {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 14px;
}

.server-status-output b {
    color: #FFD700;
    font-size: 15px;
    display: inline-block;
    margin-right: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.server-status-output font[color="#008B00"],
.server-status-output font[color="#CD2626"] {
    font-size: 15px;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 6px;
    display: inline-block;
    margin: 8px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.server-status-output font[color="#008B00"] {
    background: linear-gradient(145deg, 
        rgba(0, 100, 0, 0.3), 
        rgba(39, 174, 96, 0.2));
    border: 1px solid rgba(0, 100, 0, 0.5);
    animation: pulse-green 2s infinite;
    color: #90EE90 !important;
}

.server-status-output font[color="#CD2626"] {
    background: linear-gradient(145deg, 
        rgba(139, 0, 0, 0.3), 
        rgba(255, 69, 0, 0.2));
    border: 1px solid rgba(139, 0, 0, 0.5);
    color: #FF6347 !important;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { 
        box-shadow: 
            0 0 5px rgba(39, 174, 96, 0.2),
            0 3px 8px rgba(0,0,0,0.4); 
    }
    50% { 
        box-shadow: 
            0 0 15px rgba(39, 174, 96, 0.4),
            0 5px 15px rgba(0,0,0,0.5); 
    }
}

@keyframes pulse-red {
    0%, 100% { 
        box-shadow: 
            0 0 5px rgba(255, 69, 0, 0.2),
            0 3px 8px rgba(0,0,0,0.4); 
    }
    50% { 
        box-shadow: 
            0 0 15px rgba(255, 69, 0, 0.4),
            0 5px 15px rgba(0,0,0,0.5); 
    }
}

.status-info {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(184, 115, 51, 0.5);
    font-size: 12px;
    color: #95a5a6;
}

.status-info .update-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-style: italic;
}

.status-info .update-time:before {
    content: '🔥';
    font-size: 12px;
    animation: fire-flicker 1s infinite alternate;
}

@keyframes fire-flicker {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== МЕНЮ ===== */
.menu {
    background: linear-gradient(145deg, 
        rgba(139, 0, 0, 0.15), 
        rgba(0, 0, 0, 0.2));
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 215, 0, 0.1),
        0 0 20px rgba(139, 0, 0, 0.4);
    border: 1px solid rgba(184, 115, 51, 0.6);
    position: relative;
    overflow: hidden;
}

.menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 10%, 
        rgba(255, 69, 0, 0.8) 30%, 
        rgba(255, 215, 0, 1) 50%, 
        rgba(255, 69, 0, 0.8) 70%, 
        transparent 90%
    );
    z-index: 1;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.menu-button {
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.9), 
        rgba(26, 26, 26, 0.9));
    color: #f0d8c5;
    border: 1px solid rgba(184, 115, 51, 0.6);
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-family: 'Cinzel', 'Segoe UI', Tahoma, sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.menu-button i {
    font-size: 16px;
    color: rgba(255, 215, 0, 0.7);
}

.menu-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.15), 
        transparent
    );
    transition: 0.6s;
    z-index: -1;
}

.menu-button:after {
    content: '▶';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #FFD700;
}

.menu-button:hover {
    background: linear-gradient(145deg, 
        rgba(255, 69, 0, 0.8), 
        rgba(139, 0, 0, 0.8));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(255, 69, 0, 0.4),
        0 0 15px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
    color: #ffffff;
}

.menu-button:hover i {
    color: #FFD700;
    transform: scale(1.1);
}

.menu-button:hover:before {
    left: 100%;
}

.menu-button:hover:after {
    opacity: 1;
    right: 20px;
}

.menu-button.active {
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.8), 
        rgba(139, 0, 0, 0.8));
    border-color: #FFD700;
    box-shadow: 
        inset 0 2px 5px rgba(0,0,0,0.3),
        0 0 15px rgba(255, 215, 0, 0.5);
    color: #FFD700;
}

.menu-button.active i {
    color: #FFD700;
}

.menu-button.active:after {
    content: '⚔️';
    opacity: 1;
    right: 15px;
}

/* ===== ФУТЕР ===== */
.site-footer {
    background: linear-gradient(145deg, 
        rgba(26, 18, 11, 0.95), 
        rgba(42, 31, 26, 0.95));
    border-top: 3px solid rgba(255, 69, 0, 0.7);
    padding: 25px 20px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.5), 
        rgba(184, 115, 51, 0.5),
        rgba(255, 215, 0, 0.5),
        transparent
    );
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.copyright {
    color: #FFD700;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

.copyright-icon {
    font-size: 14px;
    margin-right: 3px;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦ ===== */

/* Общие стили для всех страниц */
.title-decor {
    font-size: 28px;
    margin: 0 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== ГЛАВНАЯ СТРАНИЦА (main.html) ===== */
.welcome-block {
    background: rgba(47, 47, 47, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(184, 115, 51, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-decor {
    font-size: 48px;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

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

.welcome-content {
    flex: 1;
}

.welcome-text {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: justify;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
    background: rgba(184, 115, 51, 0.2);
    padding: 1px 6px;
    border-radius: 3px;
}

.features-block {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-title {
    color: #FFD700;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184, 115, 51, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-icon {
    font-size: 24px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border-left: 3px solid #FF4500;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: rgba(255, 69, 0, 0.1);
    transform: translateX(5px);
}

.feature-emoji {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, 
        rgba(255, 69, 0, 0.7), 
        rgba(184, 115, 51, 0.7));
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text h3 {
    color: #FFD700;
    margin: 0 0 5px 0;
    font-size: 16px;
}

.feature-text p {
    color: #b0b0b0;
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.cta-block {
    background: rgba(184, 115, 51, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
}

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

.cta-button {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.register-btn {
    background: linear-gradient(145deg, 
        rgba(255, 69, 0, 0.8), 
        rgba(139, 0, 0, 0.8));
    color: #FFD700;
    border-color: #FFD700;
}

.download-btn {
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.8), 
        rgba(139, 0, 0, 0.8));
    color: #ffffff;
    border-color: #B87333;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.section-divider {
    text-align: center;
    margin: 20px 0;
    color: #FF4500;
    font-size: 24px;
    letter-spacing: 10px;
}

.warning-block {
    background: rgba(139, 0, 0, 0.15);
    border-radius: 8px;
    margin: 25px 0;
    border: 2px solid rgba(255, 69, 0, 0.5);
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: rgba(139, 0, 0, 0.25);
}

.warning-header h2 {
    color: #FFD700;
    margin: 0;
    font-size: 18px;
    text-align: center;
}

.warning-icon {
    font-size: 24px;
}

.warning-content {
    padding: 20px;
}

.warning-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 15px;
}

.warning-highlight {
    color: #FF0000;
    font-weight: bold;
    background: rgba(139, 0, 0, 0.3);
    padding: 1px 8px;
    border-radius: 3px;
}

.warning-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    font-size: 14px;
    color: #FFD700;
    font-weight: bold;
}

.shield-icon {
    font-size: 20px;
}

.server-image {
    margin: 25px 0;
    text-align: center;
}

.server-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    border: 2px solid rgba(184, 115, 51, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.image-caption {
    margin-top: 10px;
    color: #FFD700;
    font-size: 14px;
    opacity: 0.8;
}

/* ===== СТРАНИЦА "О СЕРВЕРЕ" (about.html) ===== */
.info-block,
.rates-block,
.c4-features-block,
.professions-block,
.functions-block,
.important-block {
    background: rgba(47, 47, 47, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(184, 115, 51, 0.5);
}

.info-header,
.rates-header,
.c4-header,
.professions-header,
.functions-header,
.important-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.info-header h2,
.rates-header h2,
.c4-header h2,
.professions-header h2,
.functions-header h2,
.important-header h2 {
    color: #FFD700;
    margin: 0;
    font-size: 20px;
    font-family: 'Cinzel', sans-serif;
}

.info-icon,
.rates-icon,
.c4-icon,
.professions-icon,
.functions-icon,
.important-icon {
    font-size: 28px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border-left: 3px solid #FF4500;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #b0b0b0;
    font-size: 14px;
}

.label-icon {
    font-size: 18px;
}

.info-value {
    font-weight: bold;
    font-size: 15px;
    color: #ffffff;
    margin-left: auto;
}

.highlight-red {
    color: #FF6B6B;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.highlight-gold {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.description {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.description p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.rate-card {
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.8), 
        rgba(26, 26, 26, 0.8));
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-3px);
    border-color: #FF4500;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.2);
}

.rate-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.rate-title {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: 'Cinzel', sans-serif;
}

.rate-detail {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.rate-sub {
    font-size: 12px;
    color: #95a5a6;
    opacity: 0.8;
}

.safe {
    color: #4CAF50;
    font-weight: bold;
}

.c4-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c4-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.c4-feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.c4-feature-text h3 {
    color: #FFD700;
    margin: 0 0 5px 0;
    font-family: 'Cinzel', sans-serif;
    font-size: 16px;
}

.c4-feature-text p {
    color: #b0b0b0;
    margin: 0;
    font-size: 14px;
}

.note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
}

.note-icon {
    font-size: 20px;
}

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

.profession-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    border: 1px solid rgba(184, 115, 51, 0.3);
}

.profession-level {
    display: flex;
    align-items: center;
    gap: 15px;
}

.level-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, #FF4500, #FFD700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.level-text {
    color: #FFD700;
    font-weight: bold;
    font-size: 15px;
}

.profession-cost {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost-value {
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

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

.function-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(184, 115, 51, 0.2);
    transition: all 0.2s ease;
}

.function-card:hover {
    background: rgba(255, 69, 0, 0.1);
    transform: translateX(3px);
}

.function-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.function-text {
    color: #e0e0e0;
    font-size: 14px;
}

.function-detail {
    font-size: 11px;
    color: #95a5a6;
    margin-top: 3px;
}

.important-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.important-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.point-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.point-text {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
}

/* ===== СТРАНИЦА "ПРАВИЛА" (rules.html) ===== */
.warning-alert {
    background: linear-gradient(145deg, 
        rgba(139, 0, 0, 0.2), 
        rgba(75, 0, 0, 0.2));
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid rgba(255, 69, 0, 0.5);
    overflow: hidden;
}

.rules-block,
.punishment-block,
.important-block,
.security-block {
    background: rgba(47, 47, 47, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(184, 115, 51, 0.5);
}

.rules-header,
.punishment-header,
.important-header,
.security-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.rules-header h2,
.punishment-header h2,
.important-header h2,
.security-header h2 {
    color: #FFD700;
    margin: 0;
    font-size: 20px;
    font-family: 'Cinzel', sans-serif;
}

.rules-icon,
.punishment-icon,
.important-icon,
.security-icon {
    font-size: 28px;
}

.rules-note,
.punishment-note,
.security-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    font-size: 15px;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.rules-list::-webkit-scrollbar {
    width: 8px;
}

.rules-list::-webkit-scrollbar-track {
    background: rgba(47, 47, 47, 0.5);
    border-radius: 4px;
}

.rules-list::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.8), 
        rgba(255, 215, 0, 0.8));
    border-radius: 4px;
}

.rule-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border-left: 4px solid #FF4500;
    transition: all 0.2s ease;
}

.rule-item:hover {
    background: rgba(255, 69, 0, 0.1);
    transform: translateX(5px);
}

.rule-number {
    color: #FFD700;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Cinzel', sans-serif;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.rule-text {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.rule-highlight {
    color: #FF6B6B;
    font-weight: bold;
    background: rgba(139, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 5px;
}

.punishment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.punishment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(139, 0, 0, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(255, 69, 0, 0.3);
    transition: all 0.2s ease;
}

.punishment-item:hover {
    background: rgba(139, 0, 0, 0.25);
    transform: translateY(-2px);
}

.punishment-item .punishment-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.punishment-text {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.4;
}

.important-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.important-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border-left: 3px solid #B87333;
}

.item-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.item-text {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.security-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-rules {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-rule {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.rule-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.security-rule .rule-text {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.final-note {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.15), 
        rgba(255, 215, 0, 0.1));
    border-radius: 8px;
    margin-top: 10px;
    color: #FFD700;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ===== СТРАНИЦА "СКАЧАТЬ" (download.html) ===== */
.instruction-block {
    background: rgba(47, 47, 47, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(184, 115, 51, 0.5);
}

.instruction-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.instruction-header h2 {
    color: #FFD700;
    margin: 0;
    font-size: 20px;
    font-family: 'Cinzel', sans-serif;
}

.instruction-icon {
    font-size: 28px;
}

.instruction-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #FF4500;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #FF4500, #FFD700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Cinzel', sans-serif;
}

.step-content h3 {
    color: #FFD700;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-family: 'Cinzel', sans-serif;
}

.step-content p {
    color: #b0b0b0;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.step-content code {
    background: rgba(255, 69, 0, 0.2);
    color: #FFD700;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

.download-block {
    background: rgba(47, 47, 47, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(184, 115, 51, 0.5);
}

.download-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.download-header h2 {
    color: #FFD700;
    margin: 0;
    font-size: 20px;
    font-family: 'Cinzel', sans-serif;
}

.download-icon {
    font-size: 28px;
}

.download-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.1), 
        rgba(139, 0, 0, 0.1));
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.download-info {
    flex: 1;
}

.download-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.download-title h3 {
    color: #FFD700;
    margin: 0;
    font-size: 18px;
    font-family: 'Cinzel', sans-serif;
}

.title-icon {
    font-size: 32px;
}

.download-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.detail-label {
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
    min-width: 80px;
}

.detail-value {
    color: #ffffff;
    font-size: 14px;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(145deg, 
        rgba(255, 69, 0, 0.9), 
        rgba(139, 0, 0, 0.9));
    color: #FFD700;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
    background: linear-gradient(145deg, 
        rgba(255, 215, 0, 0.9), 
        rgba(255, 69, 0, 0.9));
    color: #ffffff;
}

.button-icon {
    font-size: 20px;
}

.button-arrow {
    margin-left: auto;
    font-size: 20px;
    opacity: 0.8;
}

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

.patch-card {
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.8), 
        rgba(26, 26, 26, 0.8));
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(184, 115, 51, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.patch-card.required {
    border-color: rgba(255, 69, 0, 0.5);
}

.patch-card:hover {
    transform: translateY(-5px);
    border-color: #FF4500;
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.2);
}

.patch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.patch-header h3 {
    color: #FFD700;
    margin: 0;
    font-size: 16px;
    font-family: 'Cinzel', sans-serif;
}

.patch-icon {
    font-size: 24px;
}

.patch-content {
    flex: 1;
    margin-bottom: 20px;
}

.patch-size {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.size-icon {
    font-size: 16px;
}

.patch-desc {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.patch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required-badge {
    background: rgba(255, 69, 0, 0.3);
    color: #FF6B6B;
    border: 1px solid rgba(255, 107, 107, 0.5);
}

.badge-icon {
    font-size: 12px;
}

.patch-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.8), 
        rgba(139, 0, 0, 0.8));
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: auto;
}

.patch-button:hover {
    background: linear-gradient(145deg, 
        rgba(255, 215, 0, 0.8), 
        rgba(255, 69, 0, 0.8));
    transform: translateY(-2px);
}

.patches-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(139, 0, 0, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(255, 69, 0, 0.3);
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
}

.note-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.warning-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(184, 115, 51, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 14px;
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.mod-card {
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.8), 
        rgba(26, 26, 26, 0.8));
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(184, 115, 51, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mod-card:hover {
    transform: translateY(-5px);
    border-color: #B87333;
    box-shadow: 0 8px 20px rgba(184, 115, 51, 0.2);
}

.mod-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mod-header h3 {
    color: #FFD700;
    margin: 0;
    font-size: 16px;
    font-family: 'Cinzel', sans-serif;
}

.mod-icon {
    font-size: 24px;
}

.mod-content {
    flex: 1;
    margin-bottom: 20px;
}

.mod-size {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B87333;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.mod-desc {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.mod-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #95a5a6;
}

.feature-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.mod-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(145deg, 
        rgba(184, 115, 51, 0.8), 
        rgba(139, 0, 0, 0.8));
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid rgba(184, 115, 51, 0.5);
    transition: all 0.3s ease;
    margin-top: auto;
}

.mod-button:hover {
    background: linear-gradient(145deg, 
        rgba(255, 215, 0, 0.8), 
        rgba(184, 115, 51, 0.8));
    transform: translateY(-2px);
}

.mods-instruction {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(184, 115, 51, 0.3);
}

.instruction-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.instruction-title h4 {
    color: #FFD700;
    margin: 0;
    font-size: 16px;
    font-family: 'Cinzel', sans-serif;
}

.instruction-list {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
}

.instruction-list li {
    margin-bottom: 8px;
}

.instruction-list li:last-child {
    margin-bottom: 0;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.driver-card {
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.8), 
        rgba(26, 26, 26, 0.8));
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(184, 115, 51, 0.3);
    display: flex;
    flex-direction: column;
}

.driver-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.driver-brand h3 {
    color: #FFD700;
    margin: 0;
    font-size: 16px;
    font-family: 'Cinzel', sans-serif;
}

.brand-icon {
    font-size: 24px;
}

.driver-content {
    flex: 1;
    margin-bottom: 20px;
}

.driver-desc {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.driver-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(184, 115, 51, 0.15);
    border-radius: 6px;
    font-size: 12px;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.driver-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    margin-top: auto;
}

.driver-button.amd {
    background: linear-gradient(145deg, 
        rgba(237, 28, 36, 0.8), 
        rgba(139, 0, 0, 0.8));
    color: #ffffff;
    border-color: rgba(237, 28, 36, 0.5);
}

.driver-button.nvidia {
    background: linear-gradient(145deg, 
        rgba(118, 185, 0, 0.8), 
        rgba(76, 175, 80, 0.8));
    color: #ffffff;
    border-color: rgba(118, 185, 0, 0.5);
}

.driver-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.external-icon {
    margin-left: auto;
    font-size: 14px;
}

.additional-card {
    background: linear-gradient(145deg, 
        rgba(47, 47, 47, 0.8), 
        rgba(26, 26, 26, 0.8));
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(184, 115, 51, 0.3);
    display: flex;
    flex-direction: column;
}

.additional-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.additional-header h3 {
    color: #FFD700;
    margin: 0;
    font-size: 16px;
    font-family: 'Cinzel', sans-serif;
}

.additional-icon {
    font-size: 24px;
}

.additional-content {
    flex: 1;
    margin-bottom: 20px;
}

.additional-desc {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.additional-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.additional-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(145deg, 
        rgba(88, 101, 242, 0.8), 
        rgba(108, 99, 255, 0.8));
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid rgba(88, 101, 242, 0.5);
    transition: all 0.3s ease;
    margin-top: auto;
}

.additional-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.faq-block {
    background: rgba(47, 47, 47, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(184, 115, 51, 0.5);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.faq-header h2 {
    color: #FFD700;
    margin: 0;
    font-size: 20px;
    font-family: 'Cinzel', sans-serif;
}

.faq-icon {
    font-size: 28px;
}

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

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(184, 115, 51, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(184, 115, 51, 0.1);
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(184, 115, 51, 0.2);
}

.question-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
}

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

/* ===== МЕДИА-ЗАПРОСЫ ===== */
@media (max-width: 1024px) {
    #main-logo {
        width: 450px;
        height: 117px;
    }
    
    body {
        margin-top: 187px;
    }
    
    .container {
        padding: 0 10px;
        gap: 15px;
    }
    
    .left-sidebar {
        width: 260px;
    }
    
    .menu-button {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    #main-logo {
        width: 350px;
        height: 91px;
    }
    
    body {
        margin-top: 161px;
    }
    
    .container {
        flex-direction: column;
    }
    
    .left-sidebar {
        width: 100%;
    }
    
    .quick-link {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .menu-button {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .menu-button i {
        font-size: 14px;
    }
    
    /* Адаптивность для главной страницы */
    .welcome-block {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .welcome-decor {
        font-size: 36px;
    }
    
    .welcome-text {
        font-size: 14px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px;
    }
    
    .feature-emoji {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .warning-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .warning-header h2 {
        font-size: 16px;
    }
    
    .warning-text {
        font-size: 13px;
    }
    
    /* Адаптивность для about.html */
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .functions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .important-points {
        grid-template-columns: 1fr;
    }
    
    .c4-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .profession-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Адаптивность для rules.html */
    .rules-list {
        max-height: 500px;
    }
    
    .punishment-list {
        grid-template-columns: 1fr;
    }
    
    .warning-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .warning-text {
        font-size: 14px;
        padding: 15px;
    }
    
    .rule-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .rule-number {
        width: auto;
        text-align: left;
    }
    
    .important-item,
    .security-rule {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .item-icon,
    .rule-icon {
        margin: 0;
    }
    
    .final-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Адаптивность для download.html */
    .instruction-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .patches-grid,
    .mods-grid,
    .drivers-grid {
        grid-template-columns: 1fr;
    }
    
    .step-content h3 {
        font-size: 14px;
    }
    
    .step-content p {
        font-size: 12px;
    }
    
    .warning-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .warning-text {
        font-size: 14px;
        padding: 15px;
    }
    
    .download-title h3 {
        font-size: 16px;
    }
    
    .additional-features {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    #main-logo {
        width: 300px;
        height: 78px;
    }
    
    body {
        margin-top: 148px;
    }
    
    .menu-button {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .content-title:before,
    .content-title:after {
        display: none;
    }
}

@media (max-width: 480px) {
    #main-logo {
        width: 250px;
        height: 65px;
    }
    
    body {
        margin-top: 135px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    h1, .content-title {
        font-size: 18px;
    }
    
    .menu-button {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .menu-button i {
        font-size: 12px;
    }
    
    .status-title {
        font-size: 14px;
    }
    
    /* Адаптивность для about.html */
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .functions-grid {
        grid-template-columns: 1fr;
    }
    
    .content-title {
        font-size: 18px;
        padding: 12px;
    }
    
    .title-decor {
        font-size: 22px;
        margin: 0 5px;
    }
    
    .info-header h2,
    .rates-header h2,
    .c4-header h2,
    .professions-header h2,
    .functions-header h2,
    .important-header h2 {
        font-size: 18px;
    }
    
    .rate-detail {
        font-size: 20px;
    }
    
    /* Адаптивность для rules.html */
    .content-title {
        font-size: 18px;
        padding: 12px;
    }
    
    .title-decor {
        font-size: 22px;
        margin: 0 5px;
    }
    
    .rules-header h2,
    .punishment-header h2,
    .important-header h2,
    .security-header h2 {
        font-size: 18px;
    }
    
    .rules-note,
    .punishment-note,
    .security-note {
        font-size: 14px;
        padding: 10px;
    }
    
    .rule-text,
    .punishment-text,
    .item-text,
    .security-rule .rule-text {
        font-size: 13px;
    }
    
    .final-note {
        font-size: 14px;
        padding: 15px;
    }
    
    /* Адаптивность для download.html */
    .instruction-steps {
        grid-template-columns: 1fr;
    }
    
    .content-title {
        font-size: 18px;
        padding: 12px;
    }
    
    .title-decor {
        font-size: 22px;
        margin: 0 5px;
    }
    
    .download-header h2 {
        font-size: 18px;
    }
    
    .detail-label {
        min-width: 70px;
        font-size: 13px;
    }
    
    .detail-value {
        font-size: 13px;
    }
    
    .download-button,
    .patch-button,
    .mod-button,
    .driver-button,
    .additional-button {
        font-size: 13px;
        padding: 12px;
    }
    
    .warning-note,
    .patches-note {
        font-size: 13px;
        padding: 12px;
    }
    
    .instruction-list {
        font-size: 13px;
    }
}

/* Улучшения доступности */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Плавный скролл */
html {
    scroll-behavior: smooth;
}

/* Фокус для доступности */
.menu-button:focus-visible {
    outline: 2px solid var(--dragon-gold);
    outline-offset: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Улучшенный hover для мобильных устройств */
@media (hover: hover) and (pointer: fine) {
    .menu-button:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    .quick-link:hover {
        transform: translateY(-3px);
    }
    
    .counter-container:hover {
        transform: translateY(-3px) scale(1.02);
    }
}

/* Футер адаптивность */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 15px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 15px 10px;
        margin-top: 20px;
    }
    
    .copyright {
        font-size: 11px;
        line-height: 1.4;
    }
}



