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

html {
    scroll-behavior: smooth;
}

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;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

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

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #b8c5d6;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #2196f3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 103, 202, 0.3);
}

.btn-outline {
    background: transparent;
    color: #38a8fa;
    border: 2px solid #38a8fa;
}

.btn-outline:hover {
    background: #38a8fa;
    color: white;
    transform: translateY(-2px);
}

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

/* Header */
.header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(56, 168, 250, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

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

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

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

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

.nav-link:hover {
    color: #38a8fa;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #38a8fa;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #38a8fa;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

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

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

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

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #38a8fa, #0167ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Platform Info */
.platform-info {
    background: #0f1419;
}

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

.info-card {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(56, 168, 250, 0.2);
}

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

.info-card h3 {
    color: #38a8fa;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #b8c5d6;
    font-weight: 500;
}

/* About Section */
.about {
    background: #0a0e1a;
}

.features-list {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2332, #0f1419);
    border-radius: 16px;
    border: 1px solid rgba(56, 168, 250, 0.1);
}

.features-list h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b8c5d6;
}

.features-list li i {
    color: #38a8fa;
    font-size: 1.2rem;
}

/* Security Section */
.security {
    background: #0f1419;
}

.security-features {
    margin-top: 2rem;
}

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

.security-item {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.1);
}

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

.security-item h4 {
    color: #38a8fa;
    margin-bottom: 0.5rem;
}

/* Bonuses Section */
.bonuses {
    background: #0a0e1a;
}

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

.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a2332, #0f1419);
    border: 1px solid rgba(56, 168, 250, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

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

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

td {
    color: #b8c5d6;
}

.additional-bonuses {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2332, #0f1419);
    border-radius: 16px;
    border: 1px solid rgba(56, 168, 250, 0.1);
}

.additional-bonuses h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
}

.additional-bonuses ul {
    list-style: none;
}

.additional-bonuses li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b8c5d6;
}

.additional-bonuses li i {
    color: #38a8fa;
    font-size: 1.2rem;
}

/* Games Section */
.games {
    background: #0f1419;
}

.games-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.games-content ul {
    list-style: none;
    margin-top: 1rem;
}

.games-content li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b8c5d6;
}

.games-content li i {
    color: #38a8fa;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.games-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.crash-games {
    margin: 3rem 0;
}

.crash-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.crash-game-card {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(56, 168, 250, 0.1);
}

.crash-game-card h4 {
    color: #38a8fa;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crash-game-card ul {
    list-style: none;
}

.crash-game-card li {
    color: #b8c5d6;
    margin-bottom: 0.5rem;
}

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

.slot-item {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.1);
}

.slot-item i {
    font-size: 2rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.slot-item h4 {
    color: #38a8fa;
    margin-bottom: 0.5rem;
}

/* Sports Section */
.sports {
    background: #0a0e1a;
}

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

.sports-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b8c5d6;
}

.sports-list li i {
    color: #38a8fa;
    font-size: 1.2rem;
}

.sports-table {
    margin: 2rem 0;
}

/* Registration Section */
.registration {
    background: #0f1419;
}

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

.step {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.1);
    position: relative;
}

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

.step h3 {
    color: #38a8fa;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step p {
    color: #b8c5d6;
    font-size: 0.9rem;
}

.verification-info {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2332, #0f1419);
    border-radius: 16px;
    border: 1px solid rgba(56, 168, 250, 0.1);
}

.verification-info h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
}

.verification-info ul {
    list-style: none;
}

.verification-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b8c5d6;
}

.verification-info li i {
    color: #38a8fa;
    font-size: 1.2rem;
}

/* Mobile Section */
.mobile {
    background: #0a0e1a;
}

.mobile-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.mobile-option {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(56, 168, 250, 0.1);
}

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

.mobile-option h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
}

.mobile-option ol {
    margin-top: 1rem;
    padding-left: 1rem;
}

.mobile-option li {
    color: #b8c5d6;
    margin-bottom: 0.5rem;
}

/* Payments Section */
.payments {
    background: #0f1419;
}

.payment-table {
    margin: 2rem 0;
}

/* Support Section */
.support {
    background: #0a0e1a;
}

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

.support-channel {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.1);
}

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

.support-channel h3 {
    color: #38a8fa;
    margin-bottom: 0.5rem;
}

/* Why Choose Section */
.why-choose {
    background: #0f1419;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.reason-card {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(56, 168, 250, 0.1);
    transition: transform 0.3s ease;
}

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

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

.reason-card h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    background: #0a0e1a;
}

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

.faq-item {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(56, 168, 250, 0.1);
    overflow: hidden;
}

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

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

.faq-question h3 {
    color: #38a8fa;
    margin: 0;
    font-size: 1.1rem;
}

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

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

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

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    padding: 80px 0;
}

.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta .btn-primary {
    background: white;
    color: #0167ca;
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

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

.cta-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #0a0e1a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(56, 168, 250, 0.2);
}

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

.footer-section h3 {
    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: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-flag {
    height: 24px;
    width: auto;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0167ca, #38a8fa);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-download {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.app-download:hover {
    color: #38a8fa;
}

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

.footer-info p {
    color: #b8c5d6;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.footer-disclaimer p {
    color: #ffc107;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(56, 168, 250, 0.2);
    }

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

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .games-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mobile-options {
        grid-template-columns: 1fr;
    }

    .crash-games-grid {
        grid-template-columns: 1fr;
    }

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

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

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

    section {
        padding: 60px 0;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

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

    .registration-steps {
        grid-template-columns: 1fr;
    }

    .support-channels {
        grid-template-columns: repeat(2, 1fr);
    }

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

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