/* Bonuses Page Specific Styles */

/* Bonuses Hero */
.bonuses-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonuses-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="coins" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="3" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23coins)"/></svg>');
    animation: float 10s ease-in-out infinite;
}

.bonuses-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: bounceInDown 1s ease-out;
}

.bonuses-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    animation: bounceInDown 1s ease-out 0.2s both;
}

.hero-offer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    margin: 0 auto 3rem;
    max-width: 500px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    animation: bounceInUp 1s ease-out 0.4s both;
}

.offer-badge {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.offer-details {
    margin-bottom: 20px;
}

.offer-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.offer-value {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.offer-code {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 600;
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    60% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Welcome Bonus */
.welcome-bonus {
    padding: 80px 0;
    background: #f8f9fa;
}

.bonus-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-step {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
}

.bonus-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.bonus-details p {
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.bonus-requirements {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.bonus-requirements span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 600;
}

.total-package {
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.total-package::before {
    content: '🎁';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.3;
    animation: bounce 2s infinite;
}

.package-highlight h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.package-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Ongoing Offers */
.ongoing-offers {
    padding: 80px 0;
    background: white;
}

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

.offer-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.offer-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    transform: scale(1.05);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-image {
    width: 200px;
    height: 200px;
		border-radius: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.12);
    transition: box-shadow 0.3s, transform 0.3s;
}

.offer-image img {
    width: 100%;
		border-radius: 50px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.offer-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    font-size: 12px;
    color: #999;
    flex-wrap: wrap;
    gap: 10px;
}

.offer-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 600;
}

/* VIP Program */
.vip-program {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.vip-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.vip-level {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.vip-level.featured {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.vip-level:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.vip-level.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.level-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.level-badge.bronze {
    background: linear-gradient(45deg, #cd7f32, #b8860b);
}

.level-badge.silver {
    background: linear-gradient(45deg, #c0c0c0, #a8a8a8);
}

.level-badge.gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
}

.level-badge.platinum {
    background: linear-gradient(45deg, #e5e4e2, #d3d3d3);
    color: #333;
}

.vip-level h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px;
}

.level-requirements {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 14px;
}

.level-benefits {
    list-style: none;
    text-align: left;
}

.level-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
}

.level-benefits i {
    color: #28a745;
    font-size: 14px;
}

.vip-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

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

/* Holiday Specials */
.holiday-specials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.special-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.special-image {
    position: relative;
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    overflow: hidden;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.special-content {
    padding: 30px;
}

.special-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.special-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.special-features {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Bonus Terms */
.bonus-terms {
    padding: 80px 0;
    background: white;
}

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

.term-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-left: 4px solid #ff6b35;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.term-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.term-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.term-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.term-example {
    background: #e8f5e8;
    color: #28a745;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* Bonuses CTA */
.bonuses-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

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

.cta-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bonuses-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .offer-amount {
        font-size: 2.5rem;
    }
    
    .bonus-breakdown {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .offer-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .vip-levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vip-level.featured {
        transform: none;
    }
    
    .vip-level.featured:hover {
        transform: translateY(-10px);
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .cta-highlight {
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .bonuses-hero {
        padding: 60px 0;
    }
    
    .bonuses-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-offer {
        padding: 30px 20px;
    }
    
    .offer-amount {
        font-size: 2rem;
    }
    
    .bonus-step {
        padding: 30px 20px;
    }
    
    .total-package {
        padding: 40px 20px;
    }
    
    .package-amount {
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .vip-cta {
        padding: 40px 20px;
    }
    
    .special-content {
        padding: 20px;
    }
    
    .term-card {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-highlight {
        flex-direction: column;
        gap: 15px;
    }
}