.sc-contests { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem; }
.sc-contests-header { text-align: center; padding: 2rem; margin-bottom: 1.5rem; border-radius: 16px; background: rgba(26,39,68,0.7); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); }
.sc-contests-header h1 { color: #d4a843; margin: 0 0 0.5rem; font-size: 2rem; }
.sc-contests-header p { color: #94a3b8; margin: 0; }
.sc-contest-theme { margin-top: 0.5rem; padding: 0.5rem 1rem; background: rgba(212,168,67,0.1); border-radius: 8px; border: 1px solid rgba(212,168,67,0.2); color: #d4a843; display: inline-block; }
.sc-contest-prizes { margin-top: 1rem; display: flex; gap: 1rem; justify-content: center; }
.sc-prize { padding: 0.4rem 1rem; border-radius: 20px; font-weight: 700; font-size: 0.9rem; }
.sc-prize.gold { background: rgba(212,168,67,0.2); color: #d4a843; border: 1px solid rgba(212,168,67,0.3); }
.sc-prize.silver { background: rgba(192,192,192,0.2); color: #c0c0c0; border: 1px solid rgba(192,192,192,0.3); }
.sc-prize.bronze { background: rgba(205,127,50,0.2); color: #cd7f32; border: 1px solid rgba(205,127,50,0.3); }
.sc-contests-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.sc-contest-entry { border-radius: 12px; overflow: hidden; background: rgba(26,39,68,0.5); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.06); transition: transform 0.2s, border-color 0.2s; }
.sc-contest-entry:hover { transform: translateY(-3px); border-color: rgba(212,168,67,0.2); }
.sc-contest-entry img { width: 100%; height: 200px; object-fit: cover; display: block; }
.sc-contest-info { padding: 1rem; }
.sc-contest-info h3 { margin: 0 0 0.3rem; font-size: 1rem; }
.sc-contest-info h3 a { color: #e2e8f0; text-decoration: none; }
.sc-contest-info h3 a:hover { color: #d4a843; }
.sc-contest-author { color: #64748b; font-size: 0.85rem; }
.sc-contests-empty { text-align: center; padding: 3rem; border-radius: 12px; background: rgba(26,39,68,0.5); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.06); }
.sc-contests-empty p { color: #94a3b8; }
@media (max-width: 768px) { .sc-contests-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sc-contests-grid { grid-template-columns: 1fr; } }