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

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

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

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

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

.hero-bonus-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.bonus-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
}

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

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

.btn-claim-bonuses {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

/* Welcome Bonus Section */
.welcome-bonus-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;
}

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

.welcome-bonus-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.welcome-bonus-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.featured-bonus {
    border: 2px solid #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.bonus-tier-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-percentage {
    font-size: 4rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 1rem;
    line-height: 1;
}

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

.bonus-amount-welcome {
    color: #b8c6db;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.bonus-features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.bonus-feature {
    color: #b8c6db;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.btn-claim-welcome {
    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;
    display: inline-block;
}

.btn-claim-welcome.featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.btn-claim-welcome:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.btn-claim-welcome.featured:hover {
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Ongoing Promotions Section */
.ongoing-promotions-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.promotion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.promotion-amount {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.promotion-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #b8c6db;
    font-size: 0.9rem;
}

.btn-claim-promotion {
    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;
    display: inline-block;
}

.btn-claim-promotion:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
}

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

.vip-intro-text {
    text-align: center;
    color: #b8c6db;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

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

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

.bronze-tier {
    border-color: #cd7f32;
}

.silver-tier {
    border-color: #c0c0c0;
}

.gold-tier {
    border-color: #ffd700;
}

.diamond-tier {
    border-color: #b9f2ff;
    background: rgba(185, 242, 255, 0.1);
}

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

.tier-name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier-requirement {
    color: #b8c6db;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tier-benefits {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.tier-benefit {
    color: #b8c6db;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.btn-join-vip {
    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;
    font-size: 0.9rem;
}

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

.vip-points-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.points-info-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.points-earning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.earning-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.earning-icon {
    font-size: 1.5rem;
}

.earning-text {
    color: #b8c6db;
    font-size: 1rem;
}

/* Bonus Terms Section */
.bonus-terms-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.terms-highlights {
    margin-bottom: 2rem;
}

.term-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

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

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

.terms-additional-info {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-view-full-terms {
    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-view-full-terms:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.bonus-tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

/* How to Claim Section */
.claim-process-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

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

.claim-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-note {
    color: #ff6b35;
    font-size: 0.9rem;
    font-style: italic;
}

.btn-step-action {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

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

.claim-additional-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

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

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

.support-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    color: #b8c6db;
    font-size: 0.9rem;
}

/* 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;
    }
    
    .bonuses-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .bonuses-main-title {
        font-size: 2.5rem;
    }
    
    .welcome-bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-tiers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .terms-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .main-navigation-container {
        padding: 1rem;
    }
    
    .bonuses-main-title {
        font-size: 2rem;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .hero-bonus-highlights {
        justify-content: center;
    }
    
    .welcome-bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .claim-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    body {
        margin: 0 5px;
    }
    
    .bonuses-hero-wrapper {
        padding: 2rem 1rem;
    }
    
    .bonuses-main-title {
        font-size: 1.8rem;
    }
    
    .welcome-bonus-card {
        padding: 2rem;
    }
    
    .promotion-card {
        padding: 2rem;
    }
    
    .vip-tier-card {
        padding: 1.5rem;
    }
    
    .bonus-tip {
        padding: 1.5rem;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

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