/* Bonuses Page Specific Styles */

/* Bonuses Hero Section */
.bonuses-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1e3c72 50%, #2a5298 100%);
    margin-top: 90px;
		padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bonus-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.gift-box {
    position: absolute;
    font-size: 4rem;
    animation: float 4s ease-in-out infinite;
}

.gift1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.gift2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.gift3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.coin-rain {
    position: absolute;
    top: 10%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coin {
    font-size: 2rem;
    color: var(--secondary-color);
    animation: fall 3s linear infinite;
}

.coin:nth-child(1) { animation-delay: 0s; }
.coin:nth-child(2) { animation-delay: 0.5s; }
.coin:nth-child(3) { animation-delay: 1s; }
.coin:nth-child(4) { animation-delay: 1.5s; }
.coin:nth-child(5) { animation-delay: 2s; }

@keyframes fall {
    0% { transform: translateY(-50px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.bonus-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: glow 3s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    animation: glow 3s ease-in-out infinite;
}

.hero-title .title-sub {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.promo-code-banner {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    color: var(--dark-bg);
    padding: 20px 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse 3s infinite;
    flex-wrap: wrap;
}

.promo-icon {
    font-size: 2rem;
    animation: rotate 4s linear infinite;
}

.promo-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.promo-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-code {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.copy-code-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-code-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.bonus-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.bonus-highlight {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.bonus-highlight:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    animation: pulse 2s infinite;
}

.highlight-info {
    display: flex;
    flex-direction: column;
}

.highlight-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Welcome Bonus */
.welcome-bonus {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1d3a 100%);
}

.welcome-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.welcome-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.welcome-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-header h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
    font-weight: 700;
}

.welcome-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.welcome-content {
    display: grid;
    gap: 40px;
}

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

.breakdown-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.breakdown-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.breakdown-details h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.breakdown-details p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.bonus-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bonus-terms span {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.welcome-games h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.bonus-game {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-game:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.bonus-game img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.game-info h5 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 8px;
}

.free-spins {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.welcome-steps h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-light);
    font-weight: 500;
}

.step-text strong {
    color: var(--secondary-color);
}

.claim-bonus-btn {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    color: var(--dark-bg);
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    animation: glow 3s ease-in-out infinite;
}

.claim-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

/* Daily & Weekly Offers */
.daily-weekly-offers {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1d3a 0%, var(--dark-bg) 100%);
}

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

.offer-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.offer-card.daily {
    border-left: 4px solid #f39c12;
}

.offer-card.weekly {
    border-left: 4px solid #e74c3c;
}

.offer-card.weekend {
    border-left: 4px solid #9b59b6;
}

.offer-card.loyalty {
    border-left: 4px solid #27ae60;
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    animation: pulse 2s infinite;
}

.offer-info h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.offer-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.daily-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.weekly-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.weekend-badge {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.loyalty-badge {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.offer-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.offer-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.offer-details span {
    color: #32cd32;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-btn {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 60, 114, 0.4);
}

.daily-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.weekly-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.weekend-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.loyalty-btn {
    background: linear-gradient(135deg, #27ae60, #229954);
}

/* VIP Club */
.vip-club {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1d3a 100%);
}

.vip-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.vip-intro h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.vip-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.vip-tier {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.vip-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.vip-tier.gold {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

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

.vip-tier.featured {
    transform: scale(1.05);
    border-width: 2px;
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.tier-header {
    margin-bottom: 25px;
}

.tier-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.bronze .tier-icon {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
}

.silver .tier-icon {
    background: linear-gradient(135deg, #c0c0c0, #a9a9a9);
}

.gold .tier-icon {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
}

.diamond .tier-icon {
    background: linear-gradient(135deg, #b9f2ff, #87ceeb);
}

.vip-tier:hover .tier-icon {
    transform: rotateY(360deg);
}

.tier-header h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tier-requirement {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.tier-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit {
    color: #32cd32;
    font-size: 0.9rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-perks {
    text-align: center;
    margin-bottom: 40px;
}

.vip-perks h4 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.perk-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.perk-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.perk-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
    text-align: center;
}

.perk-item span {
    color: var(--text-light);
    font-weight: 500;
}

.vip-join-btn {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
    max-width: 400px;
}

.vip-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.4);
}

/* Seasonal Promotions */
.seasonal-promotions {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1d3a 0%, var(--dark-bg) 100%);
}

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

.seasonal-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.seasonal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.seasonal-card.eid {
    border-left: 4px solid #27ae60;
}

.seasonal-card.pohela {
    border-left: 4px solid #e74c3c;
}

.seasonal-card.independence {
    border-left: 4px solid #f39c12;
}

.seasonal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.seasonal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    animation: pulse 2s infinite;
}

.seasonal-header h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.seasonal-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eid-badge {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.pohela-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.independence-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.seasonal-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.seasonal-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.seasonal-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    color: #32cd32;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seasonal-countdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.countdown-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.countdown-timer {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Bonus Terms */
.bonus-terms {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1d3a 100%);
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.terms-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.terms-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
}

.terms-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

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

.terms-card li {
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.terms-card li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.terms-footer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.terms-footer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-footer strong {
    color: var(--secondary-color);
}

.terms-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* Bonus CTA */
.bonus-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5298 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: var(--neon-glow) var(--secondary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-promo {
    margin-bottom: 40px;
}

.promo-highlight {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    color: var(--dark-bg);
    padding: 20px 30px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse 3s infinite;
}

.promo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.promo-code-final {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.copy-final-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-final-btn:hover {
    transform: scale(1.1);
}

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

.btn-cta.primary {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    color: var(--dark-bg);
}

.btn-cta.secondary {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    color: white;
}

.btn-cta.tertiary {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bonuses-hero {
        margin-top: 110px;
        padding: 50px 0;
    }

    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .hero-title .title-sub {
        font-size: 1.4rem;
    }

    .promo-code-banner {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .promo-code {
        font-size: 1.5rem;
    }

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

    .bonus-highlight {
        padding: 20px;
    }

    .welcome-card {
        padding: 30px 20px;
    }

    .bonus-breakdown {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .vip-tiers {
        grid-template-columns: 1fr;
    }

    .vip-tier.featured {
        transform: none;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .seasonal-grid {
        grid-template-columns: 1fr;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        gap: 30px;
    }

    .promo-highlight {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title .title-main {
        font-size: 2rem;
    }

    .hero-title .title-sub {
        font-size: 1.2rem;
    }

    .bonus-text {
        font-size: 5rem;
    }

    .promo-code {
        font-size: 1.3rem;
    }

    .bonus-highlights {
        grid-template-columns: 1fr;
    }

    .bonus-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .welcome-header h3 {
        font-size: 2rem;
    }

    .breakdown-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .offer-value {
        font-size: 2rem;
    }

    .seasonal-value {
        font-size: 1.8rem;
    }
}

/* Copy animation */
@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.copy-code-btn.copied,
.copy-final-btn.copied {
    animation: copySuccess 0.3s ease;
}