/* 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 Styles */
.header {
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    padding: 1rem 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: 10px;
}

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

.flag {
    height: 25px;
    width: auto;
    border-radius: 3px;
}

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

.nav-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #38a8fa, #0167ca);
    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: 1rem 2rem;
    font-size: 1.1rem;
}

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

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

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #38a8fa, #0167ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

/* Section Styles */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: #111827;
}

.section:nth-child(odd) {
    background: #0a0e1a;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #38a8fa, #0167ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    background: linear-gradient(135deg, #1a1f2e, #2a2f3e);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    border: 1px solid rgba(56, 168, 250, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 168, 250, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* Bonuses Section */
.bonuses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.bonuses-text {
    color: white;
}

.bonus-item {
    margin-bottom: 2rem;
}

.bonus-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #38a8fa;
}

.bonus-item p {
    opacity: 0.8;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: linear-gradient(135deg, #1a1f2e, #2a2f3e);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    border: 1px solid rgba(56, 168, 250, 0.2);
    transition: transform 0.3s ease;
}

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

.payment-icon {
    font-size: 2.5rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.payment-card p {
    opacity: 0.8;
}

/* Betting Section */
.betting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.betting-text {
    color: white;
}

.betting-item {
    margin-bottom: 2rem;
}

.betting-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #38a8fa;
}

.betting-item p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

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

/* App Section */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.app-text {
    color: white;
}

.app-feature {
    margin-bottom: 2rem;
}

.app-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #38a8fa;
}

.app-feature p {
    opacity: 0.8;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    background: linear-gradient(135deg, #1a1f2e, #2a2f3e);
    border-radius: 15px;
    padding: 1rem;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.bonus-table th,
.bonus-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(56, 168, 250, 0.2);
}

.bonus-table th {
    background: rgba(56, 168, 250, 0.1);
    font-weight: 600;
    color: #38a8fa;
}

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

.step-card {
    background: linear-gradient(135deg, #1a1f2e, #2a2f3e);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    border: 1px solid rgba(56, 168, 250, 0.2);
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
}

.steps-action {
    text-align: center;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(135deg, #1a1f2e, #2a2f3e);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    border: 1px solid rgba(56, 168, 250, 0.2);
    transition: transform 0.3s ease;
}

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

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

.game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.game-card p {
    opacity: 0.8;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #1a1f2e, #2a2f3e);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #38a8fa;
}

.faq-item p {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-flag {
    height: 20px;
    width: auto;
    border-radius: 3px;
}

.footer-section h4 {
    font-size: 1.2rem;
    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;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #0167ca, #38a8fa);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .header-actions {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .bonuses-content,
    .betting-content,
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid,
    .payment-grid,
    .games-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .hero-actions,
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}