/* Import base styles from index.css */
@import url('index.css');

/* Bonus-specific styles */
.bonus-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.bonus-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bonus-hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.bonus-hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-bonus-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.bonus-text {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
}

.btn-claim-bonus {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-claim-bonus:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Bonus Cards Visual */
.bonus-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
    min-width: 200px;
}

.bonus-card.featured {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    transform: scale(1.1);
}

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

.bonus-card.featured:hover {
    transform: scale(1.15);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.bonus-card .bonus-title {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.bonus-card .bonus-value {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Welcome Bonus Section */
.welcome-bonus-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.welcome-bonus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.welcome-bonus-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.bonus-package h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.bonus-package p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.bonus-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bonus-tier {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tier-number {
    background: #ffd700;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tier-content h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tier-content p {
    color: #ccc;
    margin-bottom: 5px;
}

.tier-content p strong {
    color: #ffd700;
    font-weight: 600;
}

.welcome-bonus-steps h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.bonus-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bonus-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.step-number {
    background: #ffd700;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Ongoing Promotions Section */
.ongoing-promotions-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.ongoing-promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.promotion-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card:hover {
    transform: translateY(-10px);
}

.promotion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promotion-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.promotion-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.promotion-description {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promotion-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.promotion-value {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
}

.promotion-period {
    color: #ccc;
    font-size: 0.9rem;
}

/* VIP Program Section */
.vip-program-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.vip-program-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.vip-intro {
    text-align: center;
    margin-bottom: 50px;
}

.vip-intro h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.vip-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.vip-level {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.vip-level.bronze {
    border-color: #cd7f32;
}

.vip-level.silver {
    border-color: #c0c0c0;
}

.vip-level.gold {
    border-color: #ffd700;
}

.vip-level.platinum {
    border-color: #e5e4e2;
}

.vip-level.diamond {
    border-color: #b9f2ff;
}

.vip-level-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.vip-level-name {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.vip-level-requirement {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.vip-level-benefits {
    list-style: none;
    color: #ccc;
    text-align: left;
}

.vip-level-benefits li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.vip-level-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Bonus Terms Section */
.bonus-terms-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.bonus-terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.terms-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.terms-category h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.terms-list {
    list-style: none;
    color: #ccc;
}

.terms-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.terms-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.important-notice {
    background: rgba(255, 107, 107, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.important-notice h4 {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.important-notice p {
    color: #ccc;
    line-height: 1.6;
}

/* Bonus Calculator Section */
.bonus-calculator-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.bonus-calculator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.calculator-intro {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-intro h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.calculator-intro p {
    color: #ccc;
    font-size: 1.1rem;
}

.calculator-widget {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.calculator-input {
    margin-bottom: 30px;
}

.calculator-input label {
    display: block;
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.calculator-input input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    outline: none;
}

.calculator-input input:focus {
    border-color: #ffd700;
}

.calculator-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.result-label {
    color: #ccc;
    font-size: 1rem;
}

.result-value {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-calculate {
    width: 100%;
    padding: 15px;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

/* CTA Section */
.bonus-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.bonus-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

.bonus-cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.bonus-cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-bonus-amount {
    font-size: 2.5rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-bonus-details {
    font-size: 1.2rem;
    color: #ccc;
}

.btn-claim-now {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-claim-now:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* Additional category cards */
.category-card.specialty-games {
    border: 1px solid rgba(255, 255, 0, 0.5);
}

.category-card.tournaments {
    border: 1px solid rgba(255, 165, 0, 0.5);
}

/* Additional bonus cards */
.bonus-card.tournament-bonus {
    border: 1px solid rgba(255, 165, 0, 0.5);
}

.bonus-card.birthday-bonus {
    border: 1px solid rgba(255, 192, 203, 0.5);
}


/* Responsive Design */
@media (max-width: 1080px) {
    .bonus-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .welcome-bonus-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-tier {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .vip-levels {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .terms-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bonus-hero-title {
        font-size: 2.5rem;
    }
    
    .bonus-hero-description {
        font-size: 1rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .bonus-text {
        font-size: 1rem;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-levels {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .bonus-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .calculator-widget {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .bonus-hero-section {
        padding: 80px 0 60px;
    }
    
    .bonus-hero-title {
        font-size: 2rem;
    }
    
    .hero-bonus-highlight {
        padding: 20px;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bonus-cta-title {
        font-size: 2rem;
    }
    
    .cta-bonus-amount {
        font-size: 2rem;
    }
    
    .bonus-cards {
        gap: 15px;
    }
    
    .bonus-card {
        padding: 20px;
        min-width: 150px;
    }
    
    .tier-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .calculator-widget {
        padding: 20px;
    }
}
