/* Welcome Bonus */
.welcome-bonus {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bonus-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    color: #000;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: scale(1.02);
}

.bonus-icon {
    font-size: 3rem;
    margin-right: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bonus-content {
    flex: 1;
}

.bonus-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 0 0 20px rgba(0, 0, 0, 0.6); }
}

.bonus-btn {
    background: #000;
    color: #ffd700;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.bonus-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Buttons */
.btn-outline {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
}