/* PODYUM */
.podium-container { 
    display: flex; align-items: flex-end; justify-content: center; gap: 8px; 
    margin: 30px 0 10px 0; height: 160px; width: 100%;
}
.podium-item { 
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end; 
    width: 30%; position: relative; 
}
.order-1 { order: 2; z-index: 10; }
.order-2 { order: 1; }
.order-3 { order: 3; }

.pod-bar { 
    width: 100%; border-radius: 8px 8px 0 0; display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end; color: white; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); position: relative; padding-bottom: 5px;
}
.pod-1 .pod-bar { height: 130px; background: linear-gradient(180deg, #ffd700 0%, #f1c40f 100%); border: 2px solid #fff; } 
.pod-2 .pod-bar { height: 90px; background: linear-gradient(180deg, #c0c0c0 0%, #bdc3c7 100%); opacity: 0.9; } 
.pod-3 .pod-bar { height: 60px; background: linear-gradient(180deg, #cd7f32 0%, #d35400 100%); opacity: 0.8; } 

.pod-nick { 
    font-size: 0.75rem; font-weight: bold; margin-bottom: 5px; text-align: center; 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; color: var(--text-main);
}
.pod-score { font-family: 'Oswald'; font-size: 1.1rem; font-weight: bold; color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.pod-rank-num { position: absolute; bottom: -25px; color: var(--text-sub); font-size: 0.8rem; font-weight: bold; font-family: 'Oswald'; }
.crown-icon { position: absolute; top: -25px; font-size: 1.5rem; color: #ffd700; animation: bounce 1s infinite alternate; }
@keyframes bounce { from {transform: translateY(0);} to {transform: translateY(-5px);} }

/* KENDİ SIRALAMASI */
.my-rank-card {
    margin-top: 40px; background: var(--brand-blue); color: white; 
    padding: 15px 20px; border-radius: 12px; width: 100%; box-sizing: border-box;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 5px 20px rgba(16, 52, 166, 0.25);
}
.rank-left { display: flex; align-items: center; gap: 15px; }
.rank-circle { 
    width: 40px; height: 40px; background: rgba(255,255,255,0.2); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald'; font-size: 1.2rem; font-weight: bold; border: 2px solid rgba(255,255,255,0.5);
}
.rank-info div { line-height: 1.2; }
.rank-nick { font-weight: bold; font-size: 1rem; }
.rank-label { font-size: 0.7rem; opacity: 0.8; }
.rank-total { font-family: 'Oswald'; font-size: 1.5rem; font-weight: bold; }

/* TEBRİK POP-UP */
#congratsOverlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 10000; }
.congrats-popup {
    position: fixed; top: 30%; left: 50%; transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ea2158 0%, #1034a6 100%);
    color: white; padding: 25px 40px; border-radius: 15px;
    text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10001; display: none; opacity: 0; transition: opacity 0.5s;
    border: 4px solid #ffd700; width: 80%; max-width: 300px;
}
.congrats-popup.show { display: block; opacity: 1; animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards; }
.congrats-popup h2 { color: #ffd700; margin: 0 0 10px 0; font-family: 'Oswald'; font-size: 2.2rem; text-shadow: 2px 2px 0px #000; }
.congrats-popup p { margin: 0; font-size: 1.1rem; font-weight: bold; }

/* ANKET & FEEDBACK */
.feedback-area { margin-top: 30px; border-top: 2px dashed #ddd; padding-top: 20px; }
.fb-title { font-family:'Oswald'; color:var(--brand-blue); margin-bottom:10px; text-align:center; }
.rating-box { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.rating-btn { font-size: 2rem; cursor: pointer; transition: 0.2s; opacity: 0.6; filter: grayscale(100%); }
.rating-btn:hover, .rating-btn.selected { transform: scale(1.2); opacity: 1; filter: grayscale(0%); }
.fb-input { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 8px; font-family: 'Montserrat'; font-size: 0.9rem; box-sizing: border-box; }
.poll-card { background: rgba(16, 52, 166, 0.05); padding: 15px; border-radius: 10px; border: 1px solid var(--brand-blue); margin-bottom: 15px; }
.poll-opt-btn { background: white; color: var(--text-main); border: 1px solid #ddd; padding: 10px; width: 100%; margin-top: 5px; border-radius: 5px; cursor: pointer; text-align: left; font-weight: bold; transition:0.2s; }
.poll-opt-btn:hover { background: #f0f0f0; }
.poll-opt-btn.voted { background: var(--brand-blue); color: white; border-color: var(--brand-blue); }
.sent-state { opacity: 0.5; pointer-events: none; filter: grayscale(100%); cursor: not-allowed; background: #555 !important; border-color: #555 !important; color: #ccc !important; }
.sent-text { display: block; text-align: center; color: var(--brand-red); font-size: 0.8rem; font-weight: bold; margin-top: 5px; }

/* BEKLENEN ETKİNLİK & SOSYAL MEDYA */
.next-event-box { background: rgba(16, 52, 166, 0.05); border: 2px solid var(--brand-blue); border-radius: 12px; padding: 20px; margin-bottom: 25px; text-align: center; display: none; }
.next-event-title { color: var(--brand-blue); font-weight: bold; font-family: 'Oswald'; font-size: 1.2rem; margin-bottom: 5px; text-transform: uppercase; }
.next-event-timer { font-size: 2rem; font-weight: bold; color: var(--brand-red); font-family: 'Oswald'; margin-top: 5px; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: bold; margin-bottom: 10px; transition: 0.2s; border: none; color: white; box-sizing: border-box; font-family: 'Oswald', sans-serif; font-size: 0.9rem;}
.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-insta { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.btn-web { background: #333; }
.btn-store { background: #000; border: 1px solid #333; font-size: 0.8rem; }