/* PARA KAZANMAK İÇİN REKLAM ALANLARI */

.ad-banner {
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 20px auto;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
}

.ad-sidebar {
    width: 300px;
    height: 250px;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    position: sticky;
    top: 20px;
    margin-left: 20px;
}

.ad-mobile {
    width: 320px;
    height: 50px;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    margin: 10px auto;
    display: none;
}

@media (max-width: 768px) {
    .ad-mobile { display: block; }
    .ad-sidebar { display: none; }
}

/* İNDİRME BUTONU GÜÇLENDİRME */
.download-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(45deg, #20c997, #28a745);
}

.download-btn i {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* SAYFA HIZI İÇİN OPTİMİZASYON */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* SOSYAL MEDYA PAYLAŞİM */
.share-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.share-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.05);
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }
.share-telegram { background: #0088cc; }