/* rating.css */
#st-rating-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* SADECE MOBİLDE GÖSTER (Ekran genişliği 768px'den küçükse) */
@media only screen and (min-width: 769px) {
    #st-rating-modal {
        display: none !important; /* Masaüstünde zorla gizle */
    }
}

.st-modal-content {
    background-color: #ffffff;
    margin: 45% auto; /* Mobilde dikey hizalama */
    padding: 25px 20px;
    border: 0;
    width: 85%;
    max-width: 320px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.st-title {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin: 15px 0 10px 0;
}

.st-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.4;
}

.st-btn-primary {
    background-color: #007AFF;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
}

.st-btn-text {
    background: none;
    border: none;
    color: #8e8e93;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    padding: 10px;
}