/* SEO Banner - Deneme Bonusu */
.seo-bonus-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.seo-bonus-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.seo-bonus-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.seo-bonus-banner-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.seo-bonus-banner-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.seo-bonus-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.seo-bonus-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
}

.seo-bonus-feature-item i {
    color: #ffd700;
    font-size: 20px;
}

.seo-bonus-banner-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 250px;
}

.seo-bonus-amount {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    width: 100%;
}

.seo-bonus-amount-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-bonus-amount-value {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.seo-bonus-amount-currency {
    font-size: 18px;
    color: white;
    margin-top: 5px;
    opacity: 0.9;
}

.seo-bonus-banner-btn {
    background: #ffd700;
    color: #333;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.seo-bonus-banner-btn:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    color: #333;
}

.seo-bonus-banner-btn i {
    font-size: 20px;
}

/* Floating animation for icons */
@keyframes float-bonus {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.seo-bonus-banner .fa-gift,
.seo-bonus-banner .fa-star {
    animation: float-bonus 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .seo-bonus-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .seo-bonus-banner-text h2 {
        font-size: 28px;
    }
    
    .seo-bonus-banner-text p {
        font-size: 16px;
    }
    
    .seo-bonus-features-list {
        grid-template-columns: 1fr;
    }
    
    .seo-bonus-banner-cta {
        width: 100%;
        max-width: 400px;
    }
    
    .seo-bonus-amount-value {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .seo-bonus-banner {
        padding: 25px 20px;
    }
    
    .seo-bonus-banner-text h2 {
        font-size: 24px;
    }
    
    .seo-bonus-banner-text p {
        font-size: 14px;
    }
    
    .seo-bonus-amount {
        padding: 20px;
    }
    
    .seo-bonus-amount-value {
        font-size: 36px;
    }
    
    .seo-bonus-banner-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* SEO Keywords Section */
.seo-keywords-section {
    background: var(--star-bonus-card-background-color);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.seo-keywords-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--star-normal-text-color);
    margin-bottom: 20px;
    text-align: center;
}

.seo-keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.seo-keyword-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid var(--star-button-background-color);
    color: var(--star-normal-text-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: default;
}

.seo-keyword-tag:hover {
    background: linear-gradient(135deg, var(--star-button-background-color), #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.seo-keyword-tag.popular {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 25px;
}

@media (max-width: 576px) {
    .seo-keywords-section {
        padding: 20px;
    }
    
    .seo-keyword-tag {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .seo-keyword-tag.popular {
        font-size: 14px;
        padding: 8px 20px;
    }
}
