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

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

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

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

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

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

.app-main-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.app-hero-description {
    font-size: 1.3rem;
    color: #b8c6db;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.app-download-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-download-android, .btn-download-ios {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-download-android {
    background: linear-gradient(135deg, #34a853, #137333);
    color: white;
}

.btn-download-ios {
    background: linear-gradient(135deg, #000000, #434343);
    color: white;
}

.download-icon {
    font-size: 2rem;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-platform {
    font-size: 1.3rem;
    font-weight: bold;
}

.btn-download-android:hover, .btn-download-ios:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.app-stats-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b8c6db;
    font-size: 1rem;
}

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

.phone-device-wrapper {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 40px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-device-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #555;
    border-radius: 3px;
}

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

.app-interface-demo {
    color: white;
    font-family: Arial, sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-demo {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.app-balance-demo {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.app-menu-demo {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.menu-item-demo {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
}

.app-bet-demo {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.bet-match-demo {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.bet-odds-demo {
    font-size: 18px;
    text-align: center;
    color: #ffd700;
    font-weight: bold;
}

.app-button-demo {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 15px;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-top: auto;
}

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

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

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

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

.app-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.feature-card-description {
    color: #b8c6db;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Screenshots Section */
.screenshots-showcase-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.screenshot-item {
    text-align: center;
}

.screenshot-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

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

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

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

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.requirements-subtitle {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.requirements-list {
    list-style: none;
    margin-bottom: 3rem;
}

.requirement-item {
    color: #b8c6db;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.steps-list {
    color: #b8c6db;
    padding-left: 1.5rem;
}

.step-item {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

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

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

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bonus-icon-mobile {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.bonus-amount-mobile {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.performance-subtitle {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.performance-features {
    margin-bottom: 2rem;
}

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

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

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

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

.performance-description {
    color: #b8c6db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-download-performance {
    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-download-performance:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

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

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

.stat-card:hover {
    transform: scale(1.05);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #b8c6db;
    font-size: 1rem;
}

/* 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;
    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;
    }
    
    .app-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .app-main-title {
        font-size: 2.5rem;
    }
    
    .app-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .performance-content-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-bonuses-grid {
        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;
    }
    
    .app-main-title {
        font-size: 2rem;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-stats-wrapper {
        justify-content: center;
    }
    
    .phone-device-wrapper {
        width: 250px;
        height: 500px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    body {
        margin: 0 5px;
    }
    
    .app-hero-wrapper {
        padding: 2rem 1rem;
    }
    
    .app-main-title {
        font-size: 1.8rem;
    }
    
    .phone-device-wrapper {
        width: 200px;
        height: 380px;
    }
    
    .app-feature-card {
        padding: 2rem;
    }
    
    .mobile-bonus-card {
        padding: 2rem;
    }
    
    .performance-item {
        padding: 1.5rem;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .app-main-title {
        font-size: 1.5rem;
    }
    
    .section-title-main {
        font-size: 1.5rem;
    }
    
    .app-stats-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}
