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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a1b27;
    color: #e0e6ed;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    background: linear-gradient(90deg, #238bbc, #238bbc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #238bbc;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #0a1b27 0%, #0f2633 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(10, 183, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo-accent {
    color: #238bbc;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #238bbc;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #238bbc;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(180deg, #0a1b27 0%, #0d1f2d 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(10, 183, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #238bbc;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(10, 183, 55, 0.3);
    border: 2px solid #238bbc;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 183, 55, 0.5);
    background: #09a531;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
    transform: translate(3px, -3px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* CTA Wrapper */
.cta-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(10, 183, 55, 0.2), rgba(10, 183, 55, 0.1));
    color: #238bbc;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 183, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero {
    font-size: 1.2rem;
    padding: 18px 50px;
}

.hero-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #087828;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(10, 183, 55, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(10, 183, 55, 0.3);
}

.security-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #7a8a9a;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(15, 38, 51, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    flex-wrap: wrap;
}

.indicator {
    text-align: center;
}

.indicator strong {
    display: block;
    font-size: 2rem;
    color: #238bbc;
    margin-bottom: 5px;
}

.indicator span {
    color: #b8c5d6;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: linear-gradient(180deg, #0d1f2d 0%, #0a1b27 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(15, 38, 51, 0.6);
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    border: 1px solid rgba(10, 183, 55, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(10, 183, 55, 0.2);
    border-color: #238bbc;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 183, 55, 0.1);
    border-radius: 10px;
    color: #238bbc;
}

.feature-content {
    flex: 1;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: #95a5b5;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: #0a1b27;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 38, 51, 0.3);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(10, 183, 55, 0.1);
}

.content-wrapper h2 {
    text-align: left;
    margin-bottom: 30px;
}

.content-wrapper h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.info-box {
    background: rgba(10, 183, 55, 0.1);
    border-left: 4px solid #238bbc;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
}

.info-box h4 {
    color: #238bbc;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a1b27 0%, #0d1f2d 100%);
}

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

.faq-item {
    background: rgba(15, 38, 51, 0.4);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(10, 183, 55, 0.2);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #238bbc;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #238bbc;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 20px 20px;
    color: #b8c5d6;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a1b27 0%, #0f2633 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(10, 183, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #b8c5d6;
}

/* Footer */
footer {
    background: #071119;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(10, 183, 55, 0.2);
}

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

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #95a5b5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #238bbc;
}

.responsible-gaming {
    margin-top: 15px;
}

.responsible-gaming span {
    background: #087828;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    border: 2px solid #238bbc;
    box-shadow: 0 2px 10px rgba(10, 183, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7a8a9a;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(10, 183, 55, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(10, 183, 55, 0.2);
    color: #238bbc;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #238bbc;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 183, 55, 0.4);
}

/* Company Info */
.company-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(10, 183, 55, 0.05);
    border-left: 3px solid #238bbc;
    border-radius: 5px;
    font-size: 0.9rem;
}

.company-info strong {
    color: #238bbc;
}

.small-text {
    font-size: 0.85rem;
    color: #7a8a9a;
    font-style: italic;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 15px;
    }

    .btn-hero {
        font-size: 1rem;
        padding: 14px 35px;
    }

    .hero-bonus {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .security-row {
        font-size: 0.75rem;
        gap: 10px;
    }

    .trust-indicators {
        gap: 20px;
        padding: 15px;
    }

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

    .features, .content-section, .faq-section, .cta-section {
        padding: 40px 0;
    }

    .content-wrapper {
        padding: 25px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .feature-card {
        padding: 20px;
    }

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

    .social-links {
        justify-content: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

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

    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: fit-content;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    header, footer, .cta-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}