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

:root {
    /* Mostbet Colors */
    --primary-blue: #1e3a8a;
    --primary-orange: #ff6b00;
    --dark-blue: #0f172a;
    --light-blue: #3b82f6;
    --gradient-blue: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-orange);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-orange);
    color: var(--white);
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Language Switcher */
.language-switcher,
.lang-switcher {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lang-btn,
.lang-link {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover,
.lang-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active,
.lang-link.active {
    background: var(--primary-orange);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

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

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

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

/* Hero Section */
.hero {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 48px;
}

.feature-text {
    font-size: 18px;
    font-weight: 600;
}

/* Page Header */
.page-header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.page-header .hero-buttons {
    margin-top: 30px;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
}

.content-block {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.step-card p {
    color: var(--gray-700);
    font-size: 16px;
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.app-card {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.app-card:hover {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.app-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.app-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.app-card p {
    margin-bottom: 25px;
    color: var(--gray-700);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.advantage-card p {
    color: var(--gray-700);
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.security-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.security-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.security-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.security-card p {
    color: var(--gray-700);
}

/* Bonus Section */
.bonus-hero {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 80px 20px;
}

.bonus-highlight {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-amount {
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bonus-highlight h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.bonus-highlight p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.bonus-card h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: var(--dark-blue);
}

.bonus-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-orange);
    margin: 20px 0;
}

.bonus-card p {
    color: var(--gray-700);
    margin-bottom: 25px;
}

/* Promo Section */
.promo-input-block {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    background: var(--gray-50);
    border-radius: 12px;
    text-align: center;
}

.promo-input-block h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.promo-input-group {
    display: flex;
    gap: 15px;
}

.promo-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.promo-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Conditions List */
.conditions-list {
    display: grid;
    gap: 25px;
    max-width: 800px;
    margin: 40px auto 0;
}

.condition-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.condition-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.condition-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.condition-text p {
    color: var(--gray-700);
}

/* Payment Methods */
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.quick-info-card {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.quick-info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.quick-info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.quick-info-value {
    font-size: 32px;
    font-weight: 700;
}

.payment-method {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.payment-method h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-comparison {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.payment-comparison h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-blue);
    text-align: center;
}

.payment-comparison table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

.payment-comparison table thead {
    background: var(--gradient-blue);
    color: white;
}

.payment-comparison table th,
.payment-comparison table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.payment-comparison table tbody tr:hover {
    background: #f8f9fa;
}

.payment-comparison table tbody tr:last-child td {
    border-bottom: none;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.payment-method-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.payment-method-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.payment-method-card p {
    color: var(--gray-700);
    margin-bottom: 20px;
}

.payment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px solid #dee2e6;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detail-label {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 18px;
    color: var(--dark-blue);
    font-weight: 700;
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pros, .cons {
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pros {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
}

.cons {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #ff9800;
}

.pros h4, .cons h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--dark-blue);
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros ul li, .cons ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.pros ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
}

.cons ul li:before {
    content: "!";
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
    font-size: 18px;
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 20px;
    color: var(--dark-blue);
}

.faq-toggle {
    font-size: 32px;
    color: var(--primary-orange);
    font-weight: 300;
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.support-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.support-card p {
    color: var(--gray-700);
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regulatory-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.regulatory-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.regulatory-links a:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    background: rgba(255, 138, 0, 0.1);
}

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

.footer-bottom p {
    margin-bottom: 10px;
    color: var(--gray-300);
}

.warning {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .header-buttons {
        display: none;
    }
    
    .header-buttons.active {
        display: flex;
    }
    
    .header-buttons.active .language-switcher,
    .header-buttons.active .lang-switcher {
        margin-bottom: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .bonus-amount {
        font-size: 64px;
    }
    
    .promo-input-group {
        flex-direction: column;
    }
    
    .condition-item {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .detail-item {
        padding: 15px;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pros, .cons {
        padding: 20px;
    }
    
    .regulatory-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .regulatory-links a {
        font-size: 13px;
        padding: 10px;
    }
}

/* Additional Section Backgrounds */
.registration-section {
    background: var(--gray-50);
}

.app-section {
    background: var(--white);
}

.advantages-section {
    background: var(--gray-50);
}

.security-section {
    background: var(--gray-50);
}

.promo-section {
    background: var(--white);
}

.withdrawal-section {
    background: var(--gray-50);
}

.problems-section {
    background: var(--white);
}

.support-section {
    background: var(--gray-50);
}

.responsible-section {
    background: var(--white);
}
