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

html, body {
  overflow-x: hidden;
  position: relative;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: 0 10px;
}

/* Header Styles */
.primary-navigation-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 15px 15px;
}

.main-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-brand-logo {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.menu-item-primary {
    font-weight: 500;
    color: #0f3460;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-item-primary:hover {
    color: #ff6b35;
}

.nav-link-standard {
    text-decoration: none;
    color: inherit;
}

.active-page-item {
    color: #ff6b35;
    font-weight: bold;
}

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

.btn-register-account, .btn-login-account {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

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

.btn-login-account {
    background: transparent;
    color: #0f3460;
    border: 2px solid #0f3460;
}

.btn-register-account:hover, .btn-login-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-line-top, .hamburger-line-middle, .hamburger-line-bottom {
    width: 25px;
    height: 3px;
    background: #0f3460;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.main-hero-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-main-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description-text {
    font-size: 1.2rem;
    color: #b8c6db;
    margin-bottom: 2rem;
}

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

.btn-primary-cta, .btn-secondary-cta {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary-cta:hover, .btn-secondary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

/* Features Section */
.features-showcase-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
    border-radius: 20px;
    max-width: 1200px;
    margin: 2rem auto;
}

.section-title-main {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

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

.feature-card-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon-container {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title-text {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description-text {
    color: #b8c6db;
    line-height: 1.6;
}

/* Sports Section */
.sports-content-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.sports-subtitle-text {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.market-item {
    color: #b8c6db;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.sports-description-text {
    color: #b8c6db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-sports-cta {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-sports-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.sports-showcase-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Casino Section */
.casino-content-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

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

.game-category-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.game-category-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-category-description {
    color: #b8c6db;
    line-height: 1.6;
}

.casino-cta-section {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
}

.casino-promo-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-casino-cta {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-casino-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

/* Lottery Section */
.lottery-content-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

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

.lottery-subtitle-text {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.lottery-features-list {
    margin-bottom: 2rem;
}

.lottery-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
}

.lottery-icon-wrapper {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.lottery-feature-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.lottery-feature-text {
    color: #b8c6db;
    line-height: 1.6;
}

.lottery-description-text {
    color: #b8c6db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-lottery-cta {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-lottery-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.lottery-showcase-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Bonuses Section */
.bonuses-content-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

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

.bonus-card-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-card-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.bonus-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-title-text {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bonus-amount-text {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bonus-description-text {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-bonus-claim {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

/* App Section */
.app-download-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.app-subtitle-text {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.app-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.app-feature-item {
    color: #b8c6db;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.app-description-text {
    color: #b8c6db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-download-app {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-download-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.phone-mockup-container {
    display: flex;
    justify-content: center;
}

.phone-frame-wrapper {
    width: 250px;
    height: 450px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 20px;
}

.app-interface-preview {
    color: white;
    font-family: Arial, sans-serif;
}

.app-header-mock {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.app-balance-mock {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.app-sports-mock {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.app-odds-mock {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

/* Footer */
.site-footer-wrapper {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-radius: 20px 20px 0 0;
}

.footer-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods-section {
    margin-bottom: 3rem;
}

.payment-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-icons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-icon-item {
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-icon-item:hover {
    transform: scale(1.1);
}

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

.footer-column-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

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

.footer-link-item {
    color: #b8c6db;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: #ff6b35;
}

.contact-item {
    color: #b8c6db;
    padding: 0.5rem 0;
}

.footer-disclaimer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer-text {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copyright-text {
    color: #888;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: flex;
    }
  .navigation-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0; /* изменено с right: -100% */
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
    
 .navigation-menu-wrapper.mobile-active {
    transform: translateX(0);
  }

  .navigation-menu-wrapper.mobile-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
  }
    
    .primary-menu-list {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .sports-content-grid {
        grid-template-columns: 1fr;
    }
    
    .lottery-content-grid {
        grid-template-columns: 1fr;
    }
    
    .app-info-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .casino-games-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .main-navigation-container {
        padding: 1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-icons-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    body {
        margin: 0 5px;
    }
    
    .main-hero-wrapper {
        padding: 2rem 1rem;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .btn-primary-cta, .btn-secondary-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .phone-frame-wrapper {
        width: 200px;
        height: 380px;
    }
    
    .payment-icons-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .hero-main-title {
        font-size: 1.5rem;
    }
    
    .section-title-main {
        font-size: 1.5rem;
    }
    
    .feature-card-item {
        padding: 1.5rem;
    }
    
    .payment-icons-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}
