/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    padding: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* Заголовок */
.header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #00ffea;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

.header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: #00ffea;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.3rem;
    color: #a0a0a0;
    font-weight: 300;
    margin-bottom: 10px;
}

.domain-info {
    font-size: 1rem;
    color: #4dffea;
    background: rgba(0, 255, 234, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

/* Основной контент */
.main-content {
    text-align: center;
}

.game-description {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff4757;
    padding: 25px;
    margin-bottom: 50px;
    text-align: left;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-description h2 {
    color: #ff4757;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.game-description p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Контейнер кнопок */
.button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
}

/* Общие стили кнопок */
.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    text-decoration: none;
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid transparent;
}

.btn i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.btn-text {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.btn-subtext {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
}

/* Активная кнопка */
.btn-primary {
    background: linear-gradient(145deg, #1a5f7a, #0a3d62);
    color: #00ffea;
    border-color: #00ffea;
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #0a3d62, #1a5f7a);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 234, 0.4);
}

/* Неактивная кнопка */
.btn-disabled {
    background: linear-gradient(145deg, #333333, #222222);
    color: #666666;
    border-color: #555555;
    cursor: not-allowed;
    filter: grayscale(70%);
}

.btn-disabled:hover {
    animation: shake 0.5s ease;
}

/* Особенности игры */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    border-top: 3px solid #00ffea;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card i {
    font-size: 2.5rem;
    color: #00ffea;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

/* Информация о сервере */
.server-info {
    background: rgba(0, 100, 150, 0.1);
    border: 1px solid #00aaff;
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto;
    max-width: 600px;
}

.server-info h3 {
    color: #00aaff;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.server-info a {
    color: #4dffea;
    text-decoration: none;
}

.server-info a:hover {
    text-decoration: underline;
}

/* Подвал */
.footer {
    text-align: center;
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.footer-warning {
    color: #ffa502;
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer a {
    color: #00aaff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Фоновые элементы */
.bg-element {
    position: fixed;
    font-size: 5rem;
    opacity: 0.03;
    z-index: 1;
    color: #00ffea;
}

.bg-1 { top: 10%; left: 5%; }
.bg-2 { top: 60%; right: 10%; }
.bg-3 { bottom: 20%; left: 15%; }

/* Анимации */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 234, 0.4); }
    70% { box-shadow: 0 0 0 25px rgba(0, 255, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 234, 0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .header h1 { font-size: 2rem; }
    .tagline { font-size: 1.1rem; }
    .button-container { gap: 30px; }
    .btn { width: 220px; height: 220px; }
    .btn i { font-size: 3rem; }
    .btn-text { font-size: 1.5rem; }
    .features { flex-direction: column; align-items: center; }
    .feature-card { width: 100%; max-width: 400px; }
    .domain-info { font-size: 0.9rem; }
}