/* 1WIN APK - Официальное Приложение */
/* Цветовая схема: #141415, #1D1E20, #003F43, #282829, #01B24B */

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

:root {
    --primary-dark: #141415;
    --secondary-dark: #1D1E20;
    --accent-teal: #003F43;
    --btn-primary: #282829;
    --btn-secondary: #01B24B;
    --text-light: #ffffff;
    --text-gray: #b3b3b3;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    color: #141415;
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    color: #1D1E20;
    font-size: 2rem;
}

h3 {
    color: #003F43;
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav a:hover {
    color: var(--btn-secondary);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-dark);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1;
    border-radius: 8px;
    top: 100%;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--accent-teal);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #3a3a3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 40, 41, 0.4);
}

.btn-secondary {
    background-color: var(--btn-secondary);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #02d45e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 178, 75, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-teal) 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

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

/* Section */
.section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(1, 178, 75, 0.2);
}

.feature-card h3 {
    color: var(--text-light);
    margin: 1rem 0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Content Image */
.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Promo Code Box */
.promo-box {
    background: linear-gradient(135deg, var(--btn-secondary) 0%, #00d458 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(1, 178, 75, 0.3);
}

.promo-code {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 4px;
    margin: 1rem 0;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: inline-block;
}

/* Game Card */
.game-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: scale(1.03);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
}

/* Info Box */
.info-box {
    background: var(--secondary-dark);
    border-left: 4px solid var(--btn-secondary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* List Styles */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-gray);
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--btn-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-dark);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--btn-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Footer */
.footer {
    background: var(--secondary-dark);
    padding: 3rem 20px 1rem;
    margin-top: 4rem;
}

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

.footer p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

.update-date {
    color: var(--btn-secondary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-code {
        font-size: 1.8rem;
    }
}
