/* Anket Butonu Stilleri */
.anket-trigger-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.anket-trigger-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    animation: none;
}

.anket-trigger-btn i {
    font-size: 28px;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Anket Container */
#anketContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 1001;
    min-width: 400px;
    text-align: center;
}

.anket-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

.anket-baslik {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 25px;
    color: #2c3e50;
}

/* Yıldız Rating Sistemi */
.anket-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.rating-star {
    font-size: 3em;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ddd;
    position: relative;
}

.rating-star:hover {
    transform: scale(1.2);
}

.rating-star.active {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Yüz İfadeleri Container */
.face-container {
    font-size: 4em;
    margin: 15px 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Anket Butonları */
.anket-butonlar {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.anket-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1em;
}

.anket-btn.gonder {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    flex: 2;
}

.anket-btn.iptal {
    background: linear-gradient(135deg, #f44336, #da190b);
    color: white;
    flex: 1;
}

.anket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.anket-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.anket-mesaj {
    margin-top: 15px;
    font-weight: 500;
    min-height: 20px;
    color: #2c3e50;
}

/* Kapatma Butonu */
.anket-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.anket-close:hover {
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
    #anketContainer {
        min-width: 90%;
        margin: 20px;
        padding: 20px;
    }
    
    .anket-trigger-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .rating-star {
        font-size: 2.5em;
    }
    
    .face-container {
        font-size: 3em;
        height: 60px;
    }
}