/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0e1a;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.flag-icon {
    height: 30px;
    width: auto;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #ffd700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 20px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #1a2332;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
    color: #fff;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #718096 0%, #a0aec0 100%);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 50%, #2d3748 100%);
    padding: 120px 0 80px;
    color: #e2e8f0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.game-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 80px 0;
    color: #e2e8f0;
}

.features h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.features p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card ul {
    margin-left: 20px;
    margin-top: 10px;
}

.feature-card li {
    margin-bottom: 8px;
}

.game-stats {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.game-stats h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.stat-label {
    flex: 1;
    font-weight: 500;
}

.stat-value {
    font-weight: 700;
    color: #ffd700;
}

.features-conclusion {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
    color: #ffd700;
    font-weight: 600;
}

/* Game Preview */
.game-preview {
    background: #0a0e1a;
    padding: 60px 0;
}

.preview-content {
    text-align: center;
}

.screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 80px 0;
    color: #e2e8f0;
}

.bonuses h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.bonus-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.bonus-buy-list {
    margin-left: 20px;
    margin-top: 15px;
}

.bonus-buy-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.bonuses-conclusion {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 30px;
    font-weight: 500;
}

/* Rules Section */
.rules {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 80px 0;
    color: #e2e8f0;
}

.rules h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.rules-section {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.rules-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.rules-section h4 {
    color: #e2e8f0;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.rules-section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.rules-section li {
    margin-bottom: 8px;
}

.rules-conclusion {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 40px;
    color: #ffd700;
    font-weight: 600;
}

/* Demo Section */
.demo {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 80px 0;
    color: #e2e8f0;
}

.demo h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.demo-benefits {
    margin: 40px 0;
}

.demo-benefits h3 {
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 1.4rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.benefit-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.demo-steps {
    margin: 40px 0;
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.demo-steps h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.demo-steps ol {
    margin-left: 20px;
}

.demo-steps li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.demo-conclusion {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 30px;
    font-weight: 500;
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 80px 0;
    color: #e2e8f0;
}

.registration h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.registration-steps {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
}

.registration-steps h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.registration-steps ol {
    margin-left: 20px;
}

.registration-steps li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.registration-steps ul {
    margin: 10px 0 10px 20px;
}

.registration-bonus {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #ffd700;
}

.registration-conclusion {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 20px;
    color: #ffd700;
    font-weight: 600;
}

.app-installation {
    margin-top: 60px;
}

.app-installation h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.installation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.method-card h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.method-card ol {
    margin-left: 20px;
}

.method-card li {
    margin-bottom: 10px;
}

.method-card ul {
    margin: 10px 0 10px 20px;
}

.app-conclusion {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 30px;
    font-weight: 500;
}

.deposit-withdrawal {
    margin-top: 60px;
}

.deposit-withdrawal h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.deposit-steps, .withdrawal-steps {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
}

.deposit-steps h3, .withdrawal-steps h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.deposit-steps ol, .withdrawal-steps ol {
    margin-left: 20px;
}

.deposit-steps li, .withdrawal-steps li {
    margin-bottom: 10px;
}

.deposit-steps ul, .withdrawal-steps ul {
    margin: 10px 0 10px 20px;
}

.deposit-conclusion, .withdrawal-conclusion {
    text-align: center;
    font-size: 1.05rem;
    margin-top: 20px;
    font-weight: 500;
}

.withdrawal-info {
    margin: 30px 0;
    background: rgba(255, 215, 0, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.withdrawal-info h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.withdrawal-info ul {
    margin-left: 20px;
}

.withdrawal-info li {
    margin-bottom: 8px;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 80px 0;
    color: #e2e8f0;
}

.faq h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-item li {
    margin-bottom: 5px;
}

.faq-conclusion {
    text-align: center;
    font-size: 1.05rem;
    margin-top: 30px;
    font-style: italic;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-section .btn {
    margin: 0 10px 10px 0;
}

.final-cta {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 80px 0;
    color: #e2e8f0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: #0a0e1a;
    padding: 60px 0 20px;
    color: #a0aec0;
}

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

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a2332;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .bonus-cards {
        grid-template-columns: 1fr;
    }

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

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

    .installation-methods {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .features, .bonuses, .rules, .demo, .registration, .faq {
        padding: 60px 0;
    }

    .feature-card, .bonus-card, .method-card, .faq-item {
        padding: 20px;
    }

    .main-logo {
        height: 40px;
    }

    .flag-icon {
        height: 25px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .bonus-card, .faq-item {
    animation: fadeInUp 0.6s ease-out;
}