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

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

.creator-of-year-header {
display: flex;
align-items: center;
gap: 8px;
}

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

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

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

.creator-of-year-desc {
margin: 8px 0 0 0;
color: rgba(255, 255, 255, 0.6);
font-size: 0.75rem;
line-height: 1.4;
}

.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;
}

@media (max-width: 640px) {
.creator-of-year-container {
padding: 0 16px;
padding-bottom: 5px;
padding-top: 80px;
margin-top: 0;
margin-bottom: -75px;
position: relative;
z-index: 1;
}

.creator-of-year-card {
padding: 12px 14px;
}

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

.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;
}
}
