/* Bonuses Page Styles */

/* Hero Banner */
.bonus-hero {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #302b63, #24243e);
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.bonus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.bonus-hero-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.bonus-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.bonus-hero h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.bonus-hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ddd;
}

/* Section Styles */
.bonus-section {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.section-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.section-icon i {
    font-size: 22px;
    color: var(--primary);
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

/* Welcome Bonus Card */
.bonus-card-large {
    display: flex;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-details {
    flex: 2;
    padding: 30px;
}

.bonus-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.bonus-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.bonus-details p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-features {
    margin-bottom: 25px;
    padding-left: 0;
}

.bonus-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.bonus-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 16px;
}

.claim-bonus-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.claim-bonus-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.bonus-image {
    flex: 1;
    background: linear-gradient(135deg, #ff9900, #ff5722);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bonus-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="15" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></svg>') repeat;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.percentage {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.percentage span {
    font-size: 2.5rem;
    vertical-align: super;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--dark);
    color: var(--primary);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(45deg) translateX(30px);
    z-index: 2;
}

/* Ongoing Bonuses Grid */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.bonus-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.bonus-icon i {
    font-size: 24px;
    color: var(--primary);
}

.bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bonus-card .bonus-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(to right, #141e30, #243b55);
}

.vip-content {
    display: flex;
}

.vip-info {
    flex: 2;
    padding-right: 30px;
}

.vip-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.vip-info p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.vip-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.vip-level {
    flex: 1;
    min-width: 100px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.vip-level:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.level-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.level-benefits {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.level-benefits span {
    font-size: 0.85rem;
    color: #ddd;
}

.vip-features {
    margin-bottom: 25px;
    padding-left: 0;
    columns: 2;
}

.vip-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    break-inside: avoid;
}

.vip-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 16px;
}

.join-vip-btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--light);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join-vip-btn:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.vip-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.crown-icon {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

.crown-icon i {
    font-size: 80px;
    color: var(--primary);
}

/* Festival Cards */
.festival-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.festival-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.festival-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.festival-icon i {
    font-size: 24px;
    color: var(--primary);
}

.festival-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.festival-card p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.festival-date {
    display: inline-block;
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff9900, #ff5722);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.cta-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cta-btn {
    background-color: var(--dark);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Media Queries */
@media (max-width: 992px) {
    .bonus-card-large {
        flex-direction: column;
    }
    
    .bonus-image {
        height: 200px;
    }
    
    .vip-content {
        flex-direction: column;
    }
    
    .vip-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .vip-features {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .bonus-hero {
        padding: 30px;
        height: auto;
    }
    
    .bonus-hero-content {
        max-width: 100%;
    }
    
    .bonus-hero h1 {
        font-size: 2rem;
    }
    
    .bonus-hero h2 {
        font-size: 1.2rem;
    }
    
    .vip-levels {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .bonus-cards-grid,
    .festival-cards {
        grid-template-columns: 1fr;
    }
    
    .bonus-section {
        padding: 20px;
    }
    
    .bonus-details {
        padding: 20px;
    }
} 