/* Banner yazılarını görünür yap - Gölge ekle */
.yazi h2 {
    font-weight: 700 !important;
    font-size: 38px !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), -1px -1px 3px rgba(0,0,0,0.5) !important;
}

.yazi p {
    font-weight: 600 !important;
    font-size: 28px !important;
    margin: 10px 0 0 0 !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7), -1px -1px 2px rgba(0,0,0,0.4) !important;
}

/* Butonlar bölümünü görünür yap */
.main-content .buttons {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px auto;
    padding: 20px;
}

.main-content .buttons ul {
    display: block !important;
    visibility: visible !important;
}

.main-content .buttons ul li {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 10px;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.main-content .buttons ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-color: #DC3300;
}

.main-content .buttons h2 {
    color: #DC3300 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}
