/* Reklam Alanı Stilleri */
.ad-banner {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #dee2e6;
}

.ad-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ad-icon {
    background: #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ad-icon i {
    font-size: 1.5rem;
    color: white;
}

.ad-text {
    flex: 1;
}

.ad-title {
    color: #212529;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.ad-description {
    color: #6c757d;
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.ad-text .btn {
    background: #007bff;
    border: 1px solid #007bff;
    color: white;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.ad-text .btn:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
    transform: translateY(-1px);
}

.ad-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #6c757d;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-close:hover {
    background: #495057;
    transform: scale(1.1);
}

.ad-close i {
    font-size: 1rem;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .ad-banner {
        padding: 15px;
    }
    
    .ad-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .ad-text {
        text-align: center;
    }
    
    .ad-title {
        font-size: 1rem;
    }
    
    .ad-description {
        font-size: 0.85rem;
    }
}
