/* Bonus Page Specific Styles */

/* Hero Section for Bonus Page */

.bonus-hero {
    background: linear-gradient(135deg, #5a4fcf 0%, #6c5ce7 50%, #ffd700 100%);
    background-size: 400% 400%;
    /*animation: gradientShift 8s ease infinite;*/
    padding-top: calc(8rem + 2rem);
    padding-bottom: 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

@media (min-width: 900px) {
    .bonus-hero {
        padding-top: calc(8rem + 3rem);
        padding-bottom: 4rem;
        min-height: 85vh;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Bonus Cards */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-card {
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.3), rgba(108, 92, 231, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.bonus-card.featured {
    border-color: var(--color-heading);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.bonus-badge, .vip-badge, .special-badge {
    position: absolute;
    top: 10px;
    right: -1px;
    background: var(--color-heading);
    color: #5a4fcf;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    transform: rotate(15deg);
}

.bonus-icon {
    margin-bottom: 1.5rem;
}

.bonus-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bonus-card h3 {
    color: var(--color-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}

.bonus-spins {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.bonus-features {
    margin: 2rem 0;
    text-align: left;
}

.bonus-features .feature {
    color: #ccc;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

/* Welcome Summary */
.welcome-summary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
}

.welcome-summary h4 {
    color: var(--color-heading);
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-heading);
    display: block;
}

.stat-label {
    font-size: 1.4rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Weekly Bonuses */
.weekly-bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.weekly-bonus-item {
    background: rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.weekly-bonus-item:hover {
    transform: translateY(-5px);
    background: rgba(108, 92, 231, 0.4);
}

.day-icon {
    margin-bottom: 1.5rem;
}

.day-icon img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
}

.weekly-bonus-item h4 {
    color: var(--color-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bonus-percent {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-heading);
    margin-bottom: 1rem;
}

.bonus-code {
    background: rgba(255, 215, 0, 0.2);
    color: var(--color-heading);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

/* VIP Levels */
.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.vip-level {
    background: rgba(108, 92, 231, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.vip-level:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.vip-level.featured {
    border-color: var(--color-heading);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.vip-icon {
    margin-bottom: 1.5rem;
}

.vip-icon img {
    width: 80px;
    height: 80px;
}

.vip-level h4 {
    color: var(--color-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vip-requirements {
    color: #ccc;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

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

.vip-benefits li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
	list-style: none;
}

.vip-benefits li:before {
    content: "✓";
    color: var(--color-heading);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Cashback Cards */
.cashback-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cashback-card {
    background: rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cashback-card:hover {
    transform: translateY(-5px);
    background: rgba(108, 92, 231, 0.4);
}

.cashback-icon {
    margin-bottom: 1.5rem;
}

.cashback-icon img {
    width: 100px;
    height: 100px;
}

.cashback-card h4 {
    color: var(--color-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cashback-rate {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
}

.cashback-features {
    text-align: left;
    margin-top: 2rem;
}

.cashback-features .feature {
    color: #ccc;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.cashback-table {
    margin-top: 3rem;
}

.cashback-table h4 {
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 2rem;
}

/* Free Spins Offers */
.free-spins-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.spin-offer {
    background: rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.spin-offer:hover {
    transform: translateY(-5px);
    background: rgba(108, 92, 231, 0.4);
}

.spin-offer.special {
    border: 2px solid var(--color-heading);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.offer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.offer-header img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.offer-header h4 {
    color: var(--color-heading);
    font-size: 1.8rem;
}

.spins-amount {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
}

.spin-details {
    text-align: left;
    margin-top: 2rem;
}

.spin-details .detail {
    color: #ccc;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

/* Games Grid */
.spins-games {
    margin-top: 4rem;
}

.spins-games h4 {
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 2rem;
}

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

.game-item {
    text-align: center;
}

.game-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.game-item h5 {
    color: var(--color-heading);
    font-size: 1.4rem;
}

/* Terms Sections */
.terms-sections {
    margin: 3rem 0;
}

.terms-section {
    background: rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.terms-section h4 {
    color: var(--color-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.terms-section li {
    color: #ccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
	list-style: none;
}

.terms-section li:before {
    content: "→";
    color: var(--color-heading);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.game-contributions {
    margin-top: 2rem;
}

/* Bonus Tips */
.bonus-tips {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    padding: 3rem;
}

.bonus-tips h4 {
    color: var(--color-heading);
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

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

.tip {
    text-align: center;
    padding: 2rem;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    background: rgba(108, 92, 231, 0.4);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip h5 {
    color: var(--color-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.tip p {
    color: #ccc;
    font-size: 1.4rem;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(108, 92, 231, 0.3);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question h4 {
    color: var(--color-heading);
    font-size: 1.8rem;
    margin: 0;
}

.faq-toggle {
    color: var(--color-heading);
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
}

/* Responsive Design for Bonus Page */
@media (max-width: 768px) {
    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-card {
        padding: 2rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .welcome-summary {
        padding: 2rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .weekly-bonuses {
        grid-template-columns: 1fr;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .cashback-info {
        grid-template-columns: 1fr;
    }
    
    .free-spins-offers {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-section {
        padding: 2rem;
    }
    
    .bonus-tips {
        padding: 2rem;
    }
}