/* 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: #0a1628;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.flag {
    height: 25px;
    width: auto;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link a {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
}

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

.header-buttons {
    display: none;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 103, 202, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #0167ca;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1628, #1a2b4a);
    padding: 120px 0 80px;
    color: white;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #38a8fa, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero a {
  color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.stat i {
    color: #38a8fa;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #1a2b4a;
    color: white;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #38a8fa;
}

.features > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #38a8fa;
}

.feature-card i {
    font-size: 2.5rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: #0a1628;
    color: white;
}

.games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #38a8fa;
}

.games > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.games-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.games-text h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.games-list {
    list-style: none;
    margin: 1rem 0;
}

.games-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.games-list i {
    color: #38a8fa;
}

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

.aviator-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.game-highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.game-highlight h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: #1a2b4a;
    color: white;
}

.bonuses h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #38a8fa;
}

.bonuses > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.bonus-package {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.bonus-package h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.bonus-table {
    margin-top: 2rem;
}

.bonus-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-header {
    background: rgba(56, 168, 250, 0.2);
    font-weight: bold;
    border-radius: 8px;
}

.promotions-grid {
    display: grid;
    gap: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.promo-card i {
    font-size: 2.5rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.promo-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Payments Section */
.payments {
    padding: 80px 0;
    background: #0a1628;
    color: white;
}

.payments h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #38a8fa;
}

.payments > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.payment-section h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.payment-item i {
    color: #38a8fa;
    font-size: 1.2rem;
}

.crypto-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.crypto-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Mobile App Section */
.mobile-app {
    padding: 80px 0;
    background: #1a2b4a;
    color: white;
}

.mobile-app h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #38a8fa;
}

.mobile-app > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.app-content {
    display: grid;
    gap: 3rem;
}

.app-features h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.app-list {
    list-style: none;
}

.app-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.app-list i {
    color: #38a8fa;
}

.download-section {
    display: grid;
    gap: 2rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.download-card i {
    font-size: 3rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.download-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: #0a1628;
    color: white;
}

.security h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #38a8fa;
}

.security > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.security-features {
    display: grid;
    gap: 2rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.security-card i {
    font-size: 2.5rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.security-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #1a2b4a;
    color: white;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #38a8fa;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(56, 168, 250, 0.2);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(56, 168, 250, 0.1);
}

.faq-question h4 {
    color: #ffd700;
    margin: 0;
}

.faq-question i {
    color: #38a8fa;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Footer */
.footer {
    background: #0a1628;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(56, 168, 250, 0.2);
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #38a8fa;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #38a8fa;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(56, 168, 250, 0.2);
    border-radius: 50%;
    color: #38a8fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #38a8fa;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .header-buttons {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .app-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .download-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .security-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.hero-content,
.feature-card,
.promo-card,
.security-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid #38a8fa;
    outline-offset: 2px;
}