.creator-of-year-container {
max-width: 600px;
margin: 0 auto;
padding: 0 15px;
padding-bottom: 5px;
position: relative;
z-index: 50;
}

.creator-of-year-card {
background: #252b3d;
border: 1px solid rgba(255, 215, 0, 0.15);
border-radius: 12px;
padding: 12px 14px;
}

.creator-of-year-header {
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 10px;
}

.creator-of-year-header i {
font-size: 14px;
color: #ffd700;
}

.creator-of-year-title {
color: #ffd700;
font-size: 0.85rem;
font-weight: 700;
}

.creator-of-year-badge {
margin-left: auto;
font-size: 0.6rem;
color: #ffd700;
background: rgba(255, 215, 0, 0.1);
padding: 3px 8px;
border-radius: 8px;
font-weight: 600;
}

.total-votes-compact {
display: flex;
align-items: baseline;
justify-content: center;
gap: 5px;
padding: 8px;
background: rgba(255, 215, 0, 0.05);
border-radius: 8px;
margin-bottom: 10px;
}

.votes-number {
font-size: 22px;
font-weight: 800;
color: #ffd700;
line-height: 1;
}

.votes-label {
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.5);
font-weight: 500;
}

/* Compact Podium Styles */
.results-podium-compact {
display: flex;
flex-direction: column;
gap: 6px;
}

.podium-compact {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 10px;
background: rgba(255, 255, 255, 0.02);
border-radius: 8px;
transition: all 0.15s ease;
}

.podium-compact:hover {
background: rgba(255, 255, 255, 0.04);
}

.podium-compact.place-1 {
background: rgba(255, 215, 0, 0.06);
}

.podium-compact.place-2 {
background: rgba(192, 192, 192, 0.05);
}

.podium-compact.place-3 {
background: rgba(205, 127, 50, 0.05);
}

.podium-medal {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
flex-shrink: 0;
}

.podium-medal i {
font-size: 16px;
}

.podium-avatar-compact {
width: 32px;
height: 32px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
}

.podium-compact.place-3 .podium-avatar-compact {
border: 1px solid rgba(205, 127, 50, 0.3);
}

.podium-compact.place-1 .podium-avatar-compact {
border: 1px solid rgba(255, 215, 0, 0.4);
}

.podium-compact.place-2 .podium-avatar-compact {
border: 1px solid rgba(192, 192, 192, 0.4);
}

.podium-details {
flex: 1;
min-width: 0;
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}

.podium-username-compact {
font-size: 0.85rem;
font-weight: 600;
color: white;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.podium-percentage {
font-size: 0.75rem;
color: #4a9eff;
font-weight: 600;
background: rgba(74, 158, 255, 0.1);
padding: 3px 8px;
border-radius: 6px;
flex-shrink: 0;
white-space: nowrap;
}

.podium-mystery {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.25);
font-weight: 700;
letter-spacing: 2px;
font-family: monospace;
flex-shrink: 0;
}

.nominees-list {
margin-top: 12px;
display: flex;
flex-direction: column;
gap: 6px;
max-height: 220px;
overflow-y: auto;
}

.nominees-list::-webkit-scrollbar {
width: 3px;
}

.nominees-list::-webkit-scrollbar-track {
background: transparent;
}

.nominees-list::-webkit-scrollbar-thumb {
background: rgba(255, 215, 0, 0.2);
border-radius: 2px;
}

.nominee-item {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 10px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 8px;
transition: background 0.15s ease;
}

.nominee-item:hover {
background: rgba(255, 255, 255, 0.05);
}

.nominee-item.voted {
background: rgba(76, 175, 80, 0.08);
border-color: rgba(76, 175, 80, 0.25);
}

.nominee-item.voted .nominee-avatar {
border-color: rgba(76, 175, 80, 0.5);
}

.nominee-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
object-fit: cover;
border: 2px solid rgba(255, 215, 0, 0.25);
cursor: pointer;
flex-shrink: 0;
}

.nominee-info {
flex: 1;
min-width: 0;
}

.nominee-username {
font-size: 0.8rem;
font-weight: 600;
color: white;
}

.nominee-followers {
font-size: 0.68rem;
color: rgba(255, 255, 255, 0.45);
margin-top: 2px;
}

.nominee-vote-btn {
display: flex;
align-items: center;
gap: 4px;
padding: 6px 12px;
background: transparent;
border: 1px solid rgba(255, 215, 0, 0.35);
border-radius: 6px;
color: #ffd700;
font-size: 0.72rem;
font-weight: 600;
cursor: pointer;
transition: all 0.15s ease;
flex-shrink: 0;
}

.nominee-vote-btn:hover {
background: rgba(255, 215, 0, 0.1);
border-color: rgba(255, 215, 0, 0.5);
}

.nominee-vote-btn.voted {
background: rgba(76, 175, 80, 0.15);
border-color: rgba(76, 175, 80, 0.4);
color: #4caf50;
}

.nominee-vote-btn.cooldown {
background: transparent;
border-color: rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.3);
cursor: not-allowed;
}

.vote-confirm-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0);
z-index: 99999;
backdrop-filter: blur(0px);
-webkit-backdrop-filter: blur(0px);
transition: background 0.3s ease, backdrop-filter 0.3s ease;
align-items: center;
justify-content: center;
}

.vote-confirm-overlay.active {
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(4px);
}

.vote-confirm-popup {
background: #1e2330;
border-radius: 12px;
padding: 24px;
max-width: 320px;
width: 90%;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
transform: scale(0.9);
opacity: 0;
transition: transform 0.3s ease, opacity 0.3s ease;
text-align: center;
}

.vote-confirm-overlay.active .vote-confirm-popup {
transform: scale(1);
opacity: 1;
}

.vote-confirm-icon {
width: 50px;
height: 50px;
background: rgba(255, 215, 0, 0.12);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px;
}

.vote-confirm-icon i {
font-size: 20px;
color: #ffd700;
}

.vote-confirm-title {
font-size: 1rem;
font-weight: 700;
color: white;
margin-bottom: 8px;
}

.vote-confirm-text {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 6px;
}

.vote-confirm-text span {
color: #ffd700;
font-weight: 600;
}

.vote-confirm-note {
font-size: 0.72rem;
color: rgba(255, 255, 255, 0.4);
margin-bottom: 20px;
}

.vote-confirm-buttons {
display: flex;
gap: 10px;
}

.vote-confirm-cancel,
.vote-confirm-submit {
flex: 1;
padding: 11px 16px;
border-radius: 8px;
font-size: 0.8rem;
font-weight: 600;
cursor: pointer;
transition: all 0.15s ease;
border: none;
}

.vote-confirm-cancel {
background: rgba(255, 255, 255, 0.08);
color: rgba(255, 255, 255, 0.6);
}

.vote-confirm-cancel:hover {
background: rgba(255, 255, 255, 0.12);
color: white;
}

.vote-confirm-submit {
background: #ffd700;
color: #1a1f2e;
}

.vote-confirm-submit:hover {
background: #ffe033;
}

.vote-confirm-submit:disabled {
opacity: 0.5;
cursor: not-allowed;
}

/* Results Podium Styles */
.results-podium {
margin-top: 16px;
display: flex;
flex-direction: column;
gap: 12px;
}

.podium-item {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 16px;
background: rgba(255, 255, 255, 0.04);
border: 2px solid rgba(255, 255, 255, 0.08);
border-radius: 12px;
transition: all 0.2s ease;
position: relative;
overflow: hidden;
}

.podium-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(180deg, rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0.2));
}

.podium-item.place-1 {
background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
border-color: rgba(255, 215, 0, 0.3);
}

.podium-item.place-1::before {
background: linear-gradient(180deg, #ffd700, #ffed4e);
}

.podium-item.place-2 {
background: linear-gradient(135deg, rgba(192, 192, 192, 0.12) 0%, rgba(192, 192, 192, 0.04) 100%);
border-color: rgba(192, 192, 192, 0.25);
}

.podium-item.place-2::before {
background: linear-gradient(180deg, #c0c0c0, #e0e0e0);
}

.podium-item.place-3 {
background: linear-gradient(135deg, rgba(205, 127, 50, 0.12) 0%, rgba(205, 127, 50, 0.04) 100%);
border-color: rgba(205, 127, 50, 0.25);
}

.podium-item.place-3::before {
background: linear-gradient(180deg, #cd7f32, #e89a5a);
}

.podium-rank {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
min-width: 50px;
}

.podium-rank i {
font-size: 24px;
}

.podium-rank span {
font-size: 0.75rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.8);
}

.podium-avatar {
width: 56px;
height: 56px;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(255, 215, 0, 0.3);
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.podium-item.place-1 .podium-avatar {
border-color: rgba(255, 215, 0, 0.6);
}

.podium-item.place-2 .podium-avatar {
border-color: rgba(192, 192, 192, 0.5);
}

.podium-item.place-3 .podium-avatar {
border-color: rgba(205, 127, 50, 0.5);
}

.podium-info {
flex: 1;
min-width: 0;
}

.podium-username {
font-size: 1rem;
font-weight: 700;
color: white;
margin-bottom: 4px;
}

.podium-stats {
display: flex;
align-items: center;
gap: 8px;
}

.vote-percentage {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.7);
font-weight: 600;
background: rgba(74, 158, 255, 0.15);
padding: 4px 10px;
border-radius: 6px;
border: 1px solid rgba(74, 158, 255, 0.3);
}

.vote-mystery {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.4);
font-weight: 700;
letter-spacing: 2px;
font-family: monospace;
}

@media (max-width: 640px) {
.creator-of-year-container {
padding: 0 16px;
padding-bottom: 5px;
position: relative !important;
z-index: 45 !important;
}

.creator-of-year-card {
padding: 10px 12px;
position: relative;
z-index: 45;
}

.creator-of-year-header {
margin-bottom: 8px;
}

.creator-of-year-header i {
font-size: 13px;
}

.creator-of-year-title {
font-size: 0.8rem;
}

.creator-of-year-badge {
font-size: 0.55rem;
padding: 2px 6px;
}

.total-votes-compact {
padding: 6px;
margin-bottom: 8px;
}

.votes-number {
font-size: 20px;
}

.votes-label {
font-size: 0.65rem;
}

.results-podium-compact {
gap: 5px;
}

.podium-compact {
padding: 6px 8px;
gap: 8px;
}

.podium-medal {
width: 20px;
}

.podium-medal i {
font-size: 14px;
}

.podium-avatar-compact {
width: 28px;
height: 28px;
}

.podium-username-compact {
font-size: 0.8rem;
}

.podium-percentage {
font-size: 0.7rem;
padding: 2px 6px;
}

.podium-mystery {
font-size: 0.75rem;
letter-spacing: 1.5px;
}

.creator-of-year-desc {
font-size: 0.7rem;
}

.nominees-list {
margin-top: 10px;
max-height: 200px;
}

.nominee-item {
padding: 7px 8px;
}

.nominee-avatar {
width: 32px;
height: 32px;
}

.nominee-username {
font-size: 0.75rem;
}

.nominee-followers {
font-size: 0.62rem;
}

.nominee-vote-btn {
padding: 5px 10px;
font-size: 0.68rem;
}

.vote-confirm-popup {
width: 280px;
padding: 20px;
}

.vote-confirm-icon {
width: 44px;
height: 44px;
margin-bottom: 14px;
}

.vote-confirm-icon i {
font-size: 18px;
}

.vote-confirm-title {
font-size: 0.95rem;
}

.vote-confirm-text {
font-size: 0.85rem;
}

.vote-confirm-note {
font-size: 0.68rem;
margin-bottom: 16px;
}

.vote-confirm-cancel,
.vote-confirm-submit {
padding: 10px 14px;
font-size: 0.75rem;
}

.results-podium {
gap: 10px;
}

.podium-item {
padding: 12px 14px;
gap: 12px;
}

.podium-rank {
min-width: 42px;
}

.podium-rank i {
font-size: 20px;
}

.podium-rank span {
font-size: 0.7rem;
}

.podium-avatar {
width: 48px;
height: 48px;
border-width: 2px;
}

.podium-username {
font-size: 0.9rem;
}

.vote-percentage {
font-size: 0.75rem;
padding: 3px 8px;
}

.vote-mystery {
font-size: 0.95rem;
letter-spacing: 1.5px;
}
}
