/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    color: #fff;
}

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

/* Шапка */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    font-size: 0.8rem;
    opacity: 0.7;
    font-family: 'Roboto Mono', monospace;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ff6b35;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Главный экран */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 6rem 0 4rem;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn.secondary {
    background: transparent;
    border: 2px solid #ff6b35;
    margin-left: 1rem;
}

/* Секции */
section {
    padding: 5rem 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* О нас */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.team-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Игры */
.games {
    background: #0f0f0f;
}

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

.game-tag {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.game-features {
    margin: 1.5rem 0;
}

.game-features span {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.game-buttons {
    margin-top: 2rem;
}

.game-media img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

/* Блог */
.blog {
    background: #0a0a0a;
}

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

.post-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.post-card h3 {
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.post-date {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 1rem;
    display: block;
}

.post-card p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

/* Контакты */
.contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.contact-info {
    margin-top: 2rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    color: #ff6b35;
    text-decoration: none;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ff6b35;
    color: white;
}

/* Подвал */
.footer {
    background: #0a0a0a;
    text-align: center;
    padding: 2rem 0;
    opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .about-content,
    .game-card {
        grid-template-columns: 1fr;
    }

    .team-stats {
        justify-content: center;
    }

    .game-buttons .btn {
        display: block;
        margin: 0.5rem 0;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}

/* Стили для статуса разработки */
.coming-soon {
    position: relative;
    opacity: 0.8;
    filter: grayscale(0.3);
    cursor: not-allowed;
}

.coming-soon:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #666 !important;
}

.status-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.development-info {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #ff6b35;
}

.development-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.follow-development {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.follow-development .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}


