* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff4400;
    --primary-red: #cc0000;
    --primary-yellow: #ffaa00;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--darker-bg);
}

.fire-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        45deg,
        var(--darker-bg) 0%,
        #331100 30%,
        #662200 50%,
        #331100 70%,
        var(--darker-bg) 100%
    );
    animation: fireAnimation 8s ease-in-out infinite;
}

.fire-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(255, 68, 0, 0.1) 40%,
        rgba(204, 0, 0, 0.2) 100%
    );
}

@keyframes fireAnimation {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-orange);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-yellow);
    font-size: 1.8rem;
    font-weight: 900;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}
.nav-link.login-btn {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    /* Убираем анимацию желтой полоски */
    position: relative;
}
.nav-link.login-btn::after {
    display: none; /* Убираем подчеркивание */
}
.nav-link.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 0, 0.3);
    /* Убираем изменение цвета */
    color: white;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.login-btn {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
}

/* Hero секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
}

.server-status {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.status-indicator.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.status-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.player-count,
.server-version {
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 68, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Страницы */
.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin: 2rem 0 3rem;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, var(--darker-bg), #331100);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--primary-orange);
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: var(--primary-yellow);
}

/* Формы */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 68, 0, 0.3);
}

.auth-links {
    margin-top: 1rem;
    text-align: center;
}

.auth-links a {
    color: var(--primary-yellow);
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

/* Страница модов */
.mods-page {
    padding: 100px 0 50px;
}

.mods-search {
    margin-bottom: 2rem;
}

.mods-search input {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    padding: 1rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.mods-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-orange);
    background: transparent;
    color: var(--text-light);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.mod-category {
    margin-bottom: 3rem;
}

.mod-category h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mod-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
    transition: all 0.3s ease;
}

.mod-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(255, 68, 0, 0.2);
}

.mod-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.mod-version {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Страница магазина */
.shop-page {
    padding: 100px 0 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.product-card.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--darker-bg);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.new-price {
    color: var(--primary-yellow);
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-features li:before {
    content: '✓';
    color: var(--primary-yellow);
    margin-right: 0.5rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 68, 0, 0.1);
}

.payment-option input {
    margin-right: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .mods-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Страница правил */
.rules-page {
    padding: 100px 0 50px;
}

.rules-content {
    max-width: 800px;
    margin: 0 auto;
}

.rule-category {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.rule-category h2 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.rule-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rule-item h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.rule-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.rules-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 68, 0, 0.1);
    border-radius: 15px;
    border: 1px solid var(--primary-orange);
}

.rules-footer p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Страница ЧаВО */
.faq-page {
    padding: 100px 0 50px;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
    overflow: hidden;
}

.faq-question {
    background: rgba(255, 68, 0, 0.1);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    color: var(--text-light);
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 68, 0, 0.2);
}

.faq-question .arrow {
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 68, 0, 0.3);
}

.faq-answer p {
    line-height: 1.6;
    color: var(--text-gray);
}

.support-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 68, 0, 0.1);
    border-radius: 15px;
    border: 1px solid var(--primary-orange);
}

.support-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Страница "Начать играть" */
.play-page {
    padding: 100px 0 50px;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.step-number {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.path-hint {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    border-left: 3px solid var(--primary-orange);
}

.path-hint code {
    font-family: monospace;
    color: var(--primary-yellow);
}

.server-info-card {
    background: rgba(255, 68, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid var(--primary-orange);
}

.server-ip {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-orange);
}

.quick-connect {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 68, 0, 0.1);
    border-radius: 15px;
    border: 1px solid var(--primary-orange);
}

/* Галерея */
.gallery-page {
    padding: 100px 0 50px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-orange);
    background: transparent;
    color: var(--text-light);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 68, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 30px rgba(255, 68, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-caption p {
    color: var(--text-gray);
    line-height: 1.5;
}

.gallery-upload {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 68, 0, 0.1);
    border-radius: 15px;
    border: 1px solid var(--primary-orange);
}

.image-modal {
    max-width: 90%;
    max-height: 90%;
    width: auto;
}

.image-modal img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-caption {
    padding: 1.5rem;
    text-align: center;
}

/* Админ панель */
.admin-page {
    padding: 100px 0 50px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 68, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

.admin-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.admin-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.admin-section h2 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-list {
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-time {
    background: var(--primary-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.activity-text {
    color: var(--text-light);
}

.chart-container {
    height: 200px;
    position: relative;
}

.logout-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
}

/* Адаптивность */
@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .server-ip {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-sections {
        grid-template-columns: 1fr;
    }
    
    .support-links {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}
/* Футер */
.site-footer {
    background: rgba(26, 26, 26, 0.95);
    border-top: 2px solid var(--primary-orange);
    padding: 2rem 0 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.server-status-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 5px #00ff00;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 68, 0, 0.3);
    color: var(--text-gray);
}
/* Обновленные стили для страницы "Начать играть" */
.play-page {
    padding: 100px 0 50px;
    min-height: 100vh;
}

.play-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Левая панель с изображением сервера */
.server-panel {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.server-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 68, 0, 0.3);
}

.server-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.server-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.server-image-overlay h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.server-stats {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.server-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.server-features h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.server-features ul {
    list-style: none;
}

.server-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-features li:last-child {
    border-bottom: none;
}

/* Правая панель с инструкциями */
.instructions-panel {
    flex: 1;
}

.instructions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 68, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 68, 0, 0.2);
}

.step-header {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 68, 0, 0.1);
    border-bottom: 1px solid rgba(255, 68, 0, 0.3);
}

.step-number {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-title h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-title p {
    color: var(--text-gray);
    margin: 0;
}

.step-content {
    padding: 2rem;
}

.step-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-icon {
    font-size: 1.2rem;
}

.download-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.info-value {
    display: block;
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1rem;
}

.path-hint {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    margin: 1.5rem 0;
}

.path-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.path-code {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    font-family: monospace;
    color: var(--primary-yellow);
    margin: 1rem 0;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.copy-path-btn {
    background: rgba(255, 68, 0, 0.2);
    border: 1px solid var(--primary-orange);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.copy-path-btn:hover {
    background: var(--primary-orange);
}

.step-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.server-info-card {
    background: rgba(255, 68, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--primary-orange);
    margin: 1.5rem 0;
}

.server-info-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.server-info-header h4 {
    color: var(--primary-yellow);
    margin: 0;
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-yellow);
    font-weight: 700;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.quick-connect {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.connect-btn {
    margin-top: 1rem;
    background: linear-gradient(45deg, #00cc00, #00ff00);
    color: #000;
}

.support-banner {
    background: linear-gradient(135deg, rgba(255, 68, 0, 0.1), rgba(255, 170, 0, 0.1));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--primary-orange);
    margin-top: 3rem;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.support-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.support-text {
    flex: 1;
}

.support-text h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.support-text p {
    color: var(--text-light);
    margin: 0;
}

.support-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .play-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .server-panel {
        position: static;
    }
    
    .support-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .support-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin-right: 0;
    }
    
    .server-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-value {
        justify-content: space-between;
        width: 100%;
    }
    
    .download-info {
        grid-template-columns: 1fr;
    }
    
    .support-actions {
        flex-direction: column;
    }
}
/* Обновленные стили для страницы "Начать играть" */
.play-page {
    padding: 100px 0 50px;
    min-height: 100vh;
}

.play-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Левая панель с изображением сервера */
.server-panel {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.server-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 68, 0, 0.3);
}

.server-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.server-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.server-image-overlay h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.server-stats {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.server-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.server-features h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.server-features ul {
    list-style: none;
}

.server-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-features li:last-child {
    border-bottom: none;
}

/* Правая панель с инструкциями */
.instructions-panel {
    flex: 1;
}

.instructions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 68, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 68, 0, 0.2);
}

.step-header {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 68, 0, 0.1);
    border-bottom: 1px solid rgba(255, 68, 0, 0.3);
}

.step-number {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-title h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-title p {
    color: var(--text-gray);
    margin: 0;
}

.step-content {
    padding: 2rem;
}

.step-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-icon {
    font-size: 1.2rem;
}

.download-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.info-value {
    display: block;
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1rem;
}

.path-hint {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    margin: 1.5rem 0;
}

.path-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.path-code {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    font-family: monospace;
    color: var(--primary-yellow);
    margin: 1rem 0;
    border: 1px solid rgba(255, 68, 0, 0.3);
}

.copy-path-btn {
    background: rgba(255, 68, 0, 0.2);
    border: 1px solid var(--primary-orange);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.copy-path-btn:hover {
    background: var(--primary-orange);
}

.step-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.server-info-card {
    background: rgba(255, 68, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--primary-orange);
    margin: 1.5rem 0;
}

.server-info-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.server-info-header h4 {
    color: var(--primary-yellow);
    margin: 0;
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-yellow);
    font-weight: 700;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.quick-connect {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.connect-btn {
    margin-top: 1rem;
    background: linear-gradient(45deg, #00cc00, #00ff00);
    color: #000;
}

.support-banner {
    background: linear-gradient(135deg, rgba(255, 68, 0, 0.1), rgba(255, 170, 0, 0.1));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--primary-orange);
    margin-top: 3rem;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.support-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.support-text {
    flex: 1;
}

.support-text h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.support-text p {
    color: var(--text-light);
    margin: 0;
}

.support-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .play-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .server-panel {
        position: static;
    }
    
    .support-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .support-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin-right: 0;
    }
    
    .server-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-value {
        justify-content: space-between;
        width: 100%;
    }
    
    .download-info {
        grid-template-columns: 1fr;
    }
    
    .support-actions {
        flex-direction: column;
    }
}