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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #115d01 0%, #1a7a02 100%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles (Same as other pages) */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 10px;
}

.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 0;
    position: relative;
}

.logo-wrapper {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    max-width: 190px;
    height: 50px;
    object-fit: contain;
}

.primary-navigation {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.primary-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.primary-navigation a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4CAF50;
}

.current-page {
    color: #4CAF50;
    font-weight: 600;
    padding: 8px 12px;
}

.dropdown-menu {
    position: relative;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown-menu:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 0 10px;
}

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

.login-button {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #4CAF50;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-button:hover {
    background: #4CAF50;
    color: #000;
}

.register-button {
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    order: 3;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Main Content */
.bonus-content {
    padding: 0 10px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    gap: 40px;
}

.hero-container {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(17, 93, 1, 0.4);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(17, 93, 1, 0.6);
}

.hero-image {
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.welcome-bonus-section,
.current-promotions-section,
.bonus-terms-section,
.how-to-claim-section,
.vip-program-section,
.bonus-tips-section,
.bonus-faq-section,
.claim-bonus-cta-section {
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 0;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Welcome Bonus Card */
.welcome-bonus-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #115d01, #1a7a02);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.welcome-bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.bonus-highlight,
.bonus-details {
    position: relative;
    z-index: 1;
}

.bonus-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.welcome-amount {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.details-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bonus-specs li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.bonus-specs li:last-child {
    border-bottom: none;
}

.bonus-claim-action {
    text-align: center;
}

.claim-bonus-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.claim-bonus-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.promotion-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.promotion-card:hover {
    transform: translateY(-5px);
    border-color: #115d01;
}

.promotion-card.featured {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.promotion-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff4444;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.promotion-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    display: block;
}

.promotion-title {
    font-size: 22px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 10px;
    text-align: center;
}

.promotion-value {
    font-size: 28px;
    font-weight: 800;
    color: #4CAF50;
    text-align: center;
    margin-bottom: 20px;
}

.promotion-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.promotion-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(17, 93, 1, 0.1);
    color: #115d01;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.promotion-btn {
    display: block;
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.promotion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Bonus Terms */
.terms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.terms-column {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-example {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.example-title {
    font-size: 22px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
    text-align: center;
}

.example-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* How to Claim */
.claim-steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.claim-method {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.method-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 25px;
    text-align: center;
}

.claim-steps {
    display: grid;
    gap: 20px;
}

.claim-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(17, 93, 1, 0.02);
    border-radius: 10px;
}

.claim-step .step-number {
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-heading {
    font-size: 16px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 5px;
}

.step-text {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* VIP Program */
.vip-tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vip-tier {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

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

.vip-tier.bronze { border-color: #CD7F32; }
.vip-tier.silver { border-color: #C0C0C0; }
.vip-tier.gold { border-color: #FFD700; }
.vip-tier.platinum { border-color: #E5E4E2; }

.tier-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.tier-name {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 10px;
}

.tier-requirement {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier-benefits li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.tier-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.vip-points-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.points-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 25px;
    text-align: center;
}

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

.points-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(17, 93, 1, 0.05);
    border-radius: 10px;
}

.points-icon {
    font-size: 24px;
}

.points-text {
    font-weight: 600;
    color: #333;
}

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

.tip-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.tip-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tip-title {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.tip-description {
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq-container {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    padding: 25px 30px;
    margin: 0;
    background: rgba(17, 93, 1, 0.05);
    cursor: pointer;
    position: relative;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(17, 93, 1, 0.1);
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #115d01;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 25px 30px;
    color: #666;
    line-height: 1.7;
    border-top: 1px solid #eee;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Claim Bonus CTA */
.claim-bonus-cta-section {
    background: linear-gradient(135deg, #115d01, #1a7a02);
    color: #fff;
    text-align: center;
}

.cta-heading {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta-button {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-cta-button.large {
    padding: 20px 40px;
    font-size: 20px;
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
}

.secondary-cta-button {
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-cta-button:hover {
    background: #fff;
    color: #115d01;
}

/* Footer Styles (Same as other pages) */
.site-footer {
    background: #000;
    color: #fff;
    padding: 50px 10px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4CAF50;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.app-download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.app-download-link:hover {
    color: #4CAF50;
}

.app-icon {
    border-radius: 8px;
}

.payment-methods-footer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.payment-methods-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #4CAF50;
}

.payment-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1080px) {
    .navigation-container {
        flex-wrap: wrap;
    }
    
    .logo-wrapper {
        order: 1;
        flex: 1;
    }
    
    .auth-buttons {
        order: 2;
        gap: 10px;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: 15px;
    }
    
    .primary-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
        order: 4;
        flex-basis: 100%;
    }
    
    .primary-navigation.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .primary-navigation li {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .primary-navigation a,
    .current-page {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        text-align: left;
        color: #fff;
        border-bottom: none;
    }
    
    .primary-navigation a:hover,
    .current-page {
        background: rgba(255, 255, 255, 0.1);
        color: #4CAF50;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
        display: none;
    }
    
    .dropdown-content.active {
        display: block;
    }
    
    .dropdown-content li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-content a {
        font-size: 14px;
        padding: 15px 40px;
        color: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 768px) {

	.auth-buttons a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .navigation-container {
        padding: 10px 0;
    }
    
    .site-logo {
        max-width: 150px;
        height: 40px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .welcome-bonus-card,
    .terms-container,
    .claim-steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {

    .auth-buttons a {
        padding: 6px 12px;
        font-size: 13px;
    }

    .navigation-container {
        padding: 8px 0;
    }
    
    .site-logo {
        max-width: 130px;
        height: 35px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .promotions-grid,
    .tips-grid,
    .vip-tiers-container {
        grid-template-columns: 1fr;
    }
    
    .welcome-amount {
        font-size: 36px;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {

    .auth-buttons a {
        padding: 5px 10px;
        font-size: 12px;
    }

    .navigation-container {
        padding: 6px 0;
    }
    
      .site-logo {
        max-width: 110px;
        height: 30px;
    }
    
    .hero-section {
        padding: 30px 15px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .welcome-bonus-card {
        padding: 25px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-amount {
        font-size: 32px;
    }
}
