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

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

/* Header */
.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: 24px;
    width: 24px;
    border-radius: 50%;
}

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

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

.nav-link:hover {
    opacity: 0.8;
}

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

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

/* 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;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.hero h1 {
    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;
}

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

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
}

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

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.company-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0167ca;
}

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

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0167ca;
}

.info-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Journey Section */
.journey {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: white;
}

.journey h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.journey-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0167ca;
}

.security-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.security-features {
    list-style: none;
    margin: 2rem 0;
}

.security-features li {
    padding: 1rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.security-features li strong {
    color: #0167ca;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

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

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

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

.feature-card p {
    opacity: 0.9;
}

/* Sports Paradise Section */
.sports-paradise {
    padding: 80px 0;
    background: #f8f9fa;
}

.sports-paradise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0167ca;
}

.sports-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sports-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.sport-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.sport-row:last-child {
    border-bottom: none;
}

.sport-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #0167ca;
}

.sport-name i {
    font-size: 1.5rem;
}

.sport-markets {
    color: #666;
    font-size: 0.95rem;
}

/* Games World Section */
.games-world {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: white;
}

.games-world h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.games-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.games-sections {
    margin-top: 3rem;
}

.game-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #38a8fa;
}

.game-section h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #38a8fa;
}

.game-section-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.game-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.game-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.game-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.game-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: #f8f9fa;
}

.bonus h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0167ca;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.bonus-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.bonus-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #0167ca;
}

.bonus-text h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #0167ca;
}

.bonus-table {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.bonus-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.bonus-row:last-child {
    border-bottom: none;
}

.bonus-header {
    font-weight: 700;
    color: #0167ca;
    background: #f8f9fa;
    padding: 1rem;
    margin: -2rem -2rem 1rem -2rem;
    border-radius: 15px 15px 0 0;
}

.deposit {
    font-weight: 600;
    color: #333;
}

.percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
}

.limit {
    text-align: right;
    color: #666;
}

.bonus-image {
    width: 100%;
    max-width: 500px;
}

.bonus-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: white;
}

.registration h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.registration-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.registration-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #38a8fa;
}

.method ol {
    padding-left: 2rem;
}

.method ol li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.personal-area-features {
    list-style: none;
    margin: 2rem 0;
}

.personal-area-features li {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.payments h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0167ca;
}

.payments-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.payments-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #0167ca;
}

.payment-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    align-items: center;
    font-size: 0.9rem;
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-header {
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #0167ca, #38a8fa);
}

.withdrawal-steps {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.withdrawal-steps li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 500;
}

/* Mobile Experience Section */
.mobile-experience {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: white;
}

.mobile-experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.mobile-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mobile-sections {
    margin-top: 3rem;
}

.mobile-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #38a8fa;
}

.mobile-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mobile-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.mobile-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.app-comparison {
    margin-top: 2rem;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    font-size: 0.9rem;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    font-weight: 700;
    color: #38a8fa;
    background: rgba(56, 168, 250, 0.2);
}

/* Support Section */
.support {
    padding: 80px 0;
    background: #f8f9fa;
}

.support h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0167ca;
}

.support-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.support-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.support-channel {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.support-channel:hover {
    transform: translateY(-5px);
}

.support-channel i {
    font-size: 2.5rem;
    color: #0167ca;
    margin-bottom: 1rem;
}

.support-channel h3 {
    font-size: 1.2rem;
    color: #333;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: white;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.reviews-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.review-points {
    margin: 3rem 0;
}

.review-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-point i {
    color: #38a8fa;
    font-size: 1.2rem;
}

/* Future Section */
.future {
    padding: 80px 0;
    background: #f8f9fa;
}

.future h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0167ca;
}

.future-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    opacity: 0.9;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo img {
    height: 30px;
}

.footer-flag {
    height: 20px !important;
    width: 20px;
    border-radius: 50%;
}

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

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

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

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #38a8fa;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-content {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .registration-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-channels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        max-width: 500px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .game-section-content {
        flex-direction: row;
        align-items: center;
    }
    
    .game-text {
        flex: 1;
    }
    
    .game-image {
        flex: 1;
        max-width: 300px;
    }
    
    .payment-row {
        font-size: 1rem;
    }
    
    .comparison-row {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .support-channels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bonus-content {
        flex-direction: row;
    }
    
    .bonus-text {
        flex: 1;
    }
    
    .bonus-image {
        flex: 1;
    }
    
    .sport-row {
        grid-template-columns: 200px 1fr;
    }
    
    .sport-markets {
        font-size: 1rem;
    }
}

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

.feature-card,
.info-card,
.support-channel {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    color: white;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}