/* =======================
   BONUSES.HTML SPECIFIC STYLES
   ======================= */

/* Bonuses Hero Section */
.bonuses-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #FFD700 100%);
    position: relative;
    overflow: hidden;
}

.bonuses-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
}

.bonuses-hero .floating-icons {
    position: relative;
    z-index: 1;
}

.bonuses-hero .floating-icons i {
    color: rgba(255, 215, 0, 0.2);
    font-size: 3.5rem;
}

.bonuses-hero .floating-icons i:nth-child(odd) {
    animation: bonusFloat 4s ease-in-out infinite;
}

@keyframes bonusFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-35px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

.bonuses-hero .floating-icons i:nth-child(even) {
    animation: bonusSparkle 3s ease-in-out infinite reverse;
}

@keyframes bonusSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.4; }
}

/* Welcome Bonus Section */
.welcome-bonus {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 8rem 0;
    position: relative;
}

.welcome-bonus::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="gift-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" text-anchor="middle" font-size="20" fill="rgba(255,255,255,0.05)">🎁</text></pattern></defs><rect width="100%" height="100%" fill="url(%23gift-pattern)"/></svg>');
}

.welcome-package {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bonus-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bonus-card.mega {
    background: linear-gradient(135deg, #667eea, #764ba2, #FFD700);
    color: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 215, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.bonus-card.mega:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.bonus-card.mega::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transform: rotate(45deg);
    animation: megaShine 3s linear infinite;
}

@keyframes megaShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    animation: hotOffer 2s ease-in-out infinite alternate;
    z-index: 10;
}

@keyframes hotOffer {
    from { 
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
        transform: scale(1);
    }
    to { 
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.8);
        transform: scale(1.05);
    }
}

.bonus-content {
    position: relative;
    z-index: 2;
}

.bonus-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bonus-amount {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    margin-bottom: 1rem;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bonus-plus {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.bonus-spins {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.bonus-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bonus-code span {
    font-size: 1rem;
    opacity: 0.9;
}

.bonus-code strong {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.bonus-game {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bonus-game img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bonus-game span {
    font-weight: bold;
    font-size: 1.1rem;
}

.bonus-details {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bonus-details::before {
    content: '📋';
    position: absolute;
    top: -30px;
    left: 3rem;
    font-size: 3rem;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bonus-details h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(240, 147, 251, 0.1);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border-left: 5px solid #f093fb;
}

.step:hover {
    background: rgba(240, 147, 251, 0.2);
    transform: translateX(10px);
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4);
}

.step-text strong {
    display: block;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-text span {
    color: #666;
    font-size: 1rem;
}

.bonus-terms {
    background: rgba(240, 147, 251, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(240, 147, 251, 0.3);
}

.bonus-terms h4 {
    color: #fff;
    margin-bottom: 1rem;
		padding-left: 30px;
    font-size: 1.3rem;
}

.bonus-terms ul {
    list-style: none;
    padding-left: 30px;
}

.bonus-terms li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.bonus-terms li i {
    color: #f093fb;
    font-size: 1rem;
}

/* Ongoing Promotions Section */
.ongoing-promotions {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 8rem 0;
    position: relative;
}

.ongoing-promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.05) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.05) 50%, transparent 55%);
    background-size: 40px 40px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.promo-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.promo-card.featured {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.promo-card.featured::before {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    height: 6px;
}

.promo-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.promo-card.featured:hover {
    transform: translateY(-15px) scale(1.08);
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.promo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
}

.promo-card:hover .promo-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from { box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4); }
    to { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7); }
}

.promo-card h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.promo-offer {
    margin-bottom: 2rem;
}

.offer-percent {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
}

.offer-detail {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.offer-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4facfe;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.promo-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(79, 172, 254, 0.1);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.promo-features .feature:hover {
    background: rgba(79, 172, 254, 0.2);
    transform: translateX(5px);
}

.promo-features .feature i {
    font-size: 1.2rem;
    color: #4facfe;
}

.promo-features .feature span {
    color: #333;
    font-weight: 500;
}

/* VIP Program Pyramid */
.vip-program {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    padding: 8rem 0;
    position: relative;
}

.vip-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.vip-content {
    position: relative;
    z-index: 2;
}

.vip-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.vip-tier {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.vip-tier:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.vip-tier:nth-child(1) { 
    max-width: 600px; 
    order: 4;
}

.vip-tier:nth-child(2) { 
    max-width: 700px; 
    order: 3;
}

.vip-tier:nth-child(3) { 
    max-width: 800px; 
    order: 2;
}

.vip-tier:nth-child(4) { 
    max-width: 900px; 
    order: 1;
}

.vip-tier.diamond {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
}

.vip-tier.diamond::before {
    content: '💎 ULTIMATE VIP';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: diamondGlow 3s ease-in-out infinite alternate;
}

@keyframes diamondGlow {
    from { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); }
    to { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7); }
}

.vip-tier.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
}

.vip-tier.silver {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
    color: white;
    box-shadow: 0 25px 60px rgba(192, 192, 192, 0.3);
}

.tier-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tier-header i {
    font-size: 3rem;
    animation: tierIcon 2s ease-in-out infinite alternate;
}

@keyframes tierIcon {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1.1) rotate(5deg); }
}

.tier-header h3 {
    font-size: 2rem;
    font-weight: bold;
}

.vip-tier ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.vip-tier li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vip-tier:not(.diamond):not(.gold):not(.silver) li {
    background: rgba(67, 233, 123, 0.1);
}

.vip-tier.diamond li,
.vip-tier.gold li,
.vip-tier.silver li {
    background: rgba(255, 255, 255, 0.1);
}

.vip-tier li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.vip-tier li i {
    font-size: 1.2rem;
    color: #43e97b;
}

.vip-tier.diamond li i,
.vip-tier.gold li i,
.vip-tier.silver li i {
    color: rgba(255, 255, 255, 0.9);
}

.tier-requirement {
    background: rgba(67, 233, 123, 0.2);
    padding: 1rem 2rem;
    border-radius: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 1rem;
}

.vip-tier.diamond .tier-requirement,
.vip-tier.gold .tier-requirement,
.vip-tier.silver .tier-requirement {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.vip-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.vip-cta h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vip-cta p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Bonus Calendar Grid */
.bonus-calendar {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 8rem 0;
    position: relative;
}

.bonus-calendar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.bonus-calendar-grid {
    position: relative;
    z-index: 2;
}

.bonus-calendar-grid::before {
    content: '📅 WEEKLY SCHEDULE';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.4);
    z-index: 10;
}

.day-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.day-card:hover::before {
    left: 100%;
}

.day-card:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.5);
}

.day-card.featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scale(1.12);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.day-card.featured:hover {
    transform: scale(1.15) rotate(-2deg);
}

.day-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.day-header i {
    font-size: 2rem;
    animation: dayIcon 3s ease-in-out infinite;
}

@keyframes dayIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.day-header h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.day-offer {
    text-align: center;
}

.offer-title {
    display: block;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.offer-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Tournament Bonuses Section */
.tournament-bonuses {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 8rem 0;
    position: relative;
}

.tournament-bonuses::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="tournament-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" text-anchor="middle" font-size="20" fill="rgba(255,255,255,0.05)">🏆</text></pattern></defs><rect width="100%" height="100%" fill="url(%23tournament-pattern)"/></svg>');
}

.tournament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.tournament-bonus-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.tournament-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a8edea, #fed6e3);
}

.tournament-bonus-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.tournament-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tournament-header i {
    font-size: 3rem;
    color: #a8edea;
    animation: tournamentIcon 2s ease-in-out infinite alternate;
}

@keyframes tournamentIcon {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1.1) rotate(10deg); }
}

.tournament-header h3 {
    color: #333;
    font-size: 1.6rem;
}

.tournament-prize {
    margin-bottom: 2rem;
}

.prize-pool {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-shadow: 0 0 20px rgba(168, 237, 234, 0.5);
}

.prize-desc {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.tournament-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tournament-details .detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(168, 237, 234, 0.1);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tournament-details .detail:hover {
    background: rgba(168, 237, 234, 0.2);
    transform: translateY(-2px);
}

.tournament-details .detail i {
    font-size: 1.2rem;
    color: #a8edea;
}

.tournament-details .detail span {
    color: #333;
    font-weight: 500;
}

/* Bonus Terms Section */
.bonus-terms {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0;
    position: relative;
}

.bonus-terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.terms-content {
    position: relative;
    z-index: 2;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.term-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.term-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.term-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.term-card h3 i {
    font-size: 1.5rem;
    color: #667eea;
}

.term-card ul {
    list-style: none;
    padding: 0;
}

.term-card li {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.term-card li:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.terms-footer {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.terms-footer p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design for Bonuses */
@media (max-width: 768px) {
    .welcome-package {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-card.mega {
        transform: none;
        padding: 3rem 2rem;
    }
    
    .bonus-card.mega:hover {
        transform: scale(1.02);
    }
    
    .bonus-amount {
        font-size: 3.5rem;
    }
    
    .steps {
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .promotions-grid,
    .tournament-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vip-pyramid .vip-tier {
        max-width: 100% !important;
        order: initial !important;
    }
    
    .bonus-calendar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .day-card {
        padding: 1rem;
    }
    
    .day-header h3 {
        font-size: 1rem;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
