@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --border: #1a1a1a;
  --primary: #B50534;
  --primary-light: #d4083f;
  --accent: #B50534;
  --text: #ffffff;
  --text-muted: #888;
  --text-dim: #555;
  --gold: #FFD700;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes countdownGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(181, 5, 52, 0.3); }
  50% { text-shadow: 0 0 40px rgba(181, 5, 52, 0.6); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

.page-enter {
  animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== NAVBAR ===== */
header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1100px;
}

nav {
  background: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  transition: background 0.3s, box-shadow 0.3s;
  animation: navAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navAppear {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

nav.scrolled {
  background: rgba(14, 14, 14, 0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  transition: transform 0.2s;
}

.logo:hover { transform: scale(1.05); }

.logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  transition: all 0.25s;
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover { color: var(--text); }

.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.nav-right {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-right a {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  transition: all 0.25s;
}

.nav-right a:hover { color: var(--text); }

.nav-right a.highlight {
  color: var(--text);
  font-weight: 600;
}

.nav-right a.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: flex-end;
  padding: 56px;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1.05);
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.slide-content h2 .hl { color: var(--accent); }

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.4s;
}

.slider-dots .dot.active {
  background: white;
  width: 44px;
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
}

.section-header h2 .hl { color: var(--accent); }
.section-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--primary);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-banner-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 12px;
}

.page-banner h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-banner .countdown-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* ===== COUNTDOWN ===== */
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.countdown-number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  animation: countdownGlow 3s ease-in-out infinite;
}

.countdown-unit {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: 6px;
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 300;
  opacity: 0.4;
  margin-top: -12px;
}

/* ===== NEWS CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: #2a2a2a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.news-card .card-image {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-card .card-image .placeholder-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 16px;
  line-height: 1.6;
}

.news-card .card-body { padding: 18px; }

.news-card .card-date {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.news-card .card-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-card .card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== WINNERS ===== */
.winners-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.winners-banner-full {
  width: 100%;
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.winners-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.winners-banner-full:hover .winners-bg {
  transform: scale(1.03);
}

.winners-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.15) 60%,
    rgba(10,10,10,0.85) 100%
  );
  pointer-events: none;
}

.winners-top-label {
  position: relative;
  z-index: 2;
  padding: 32px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-light);
}

.winners-bottom {
  position: relative;
  z-index: 2;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.winners-left .winners-song {
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.winners-left .winners-artist {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.winners-right {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .winners-banner-full { height: 300px; }
  .winners-top-label { padding: 24px; font-size: 0.95rem; }
  .winners-bottom { padding: 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .winners-left .winners-artist { font-size: 1.3rem; }
  .winners-right { font-size: 1.1rem; }
}

/* ===== PARTICIPANTS ===== */
.participants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.participant-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.participant-card:hover {
  border-color: #2a2a2a;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.participant-flag { font-size: 2.8rem; margin-bottom: 12px; }
.participant-country { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.participant-artist { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.participant-song { color: var(--text-muted); font-size: 0.85rem; font-style: italic; }
.participant-semifinal { margin-top: 12px; display: inline-block; background: rgba(255,255,255,0.06); color: var(--text-muted); font-size: 0.7rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

/* ===== SOCHI / SCHEDULE ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  border-radius: 0 4px 4px 0;
}

.schedule-card:hover {
  border-color: #2a2a2a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.schedule-card .date {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.schedule-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.schedule-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.about-text p strong { color: var(--text); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
  border-color: #2a2a2a;
  transform: translateY(-3px);
}

.stat-card .number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-light);
}

.stat-card .label {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 6px;
}

/* ===== CAREER ===== */
.career-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== HISTORY ===== */
.coming-soon {
  text-align: center;
  padding: 80px 24px;
}

.coming-soon h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.coming-soon p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== VOTING ===== */
.vote-unavailable {
  text-align: center;
  padding: 80px 24px;
}

.vote-unavailable h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.vote-unavailable p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.vote-unavailable .vote-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

/* ===== CENTER MESSAGE ===== */
.center-message {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== PARTNERS ===== */
.partners-section {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.partners-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  opacity: 0.4;
}

.partner-logo {
  width: 64px;
  height: 64px;
  background: #1a1a1a;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #555;
  transition: all 0.3s;
}

.partner-logo:hover { opacity: 0.7; transform: scale(1.05); }

.partner-logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s;
}

.partner-logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s;
  border-radius: 50%;
}

.footer-socials a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.footer-hearts {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  opacity: 0.25;
}

.footer-hearts svg { width: 48px; height: 48px; }

.footer-copy {
  color: var(--text-dim);
  font-size: 0.7rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-red { background: var(--primary); color: white; }
.btn-red:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(181,5,52,0.3); }
.btn-small { padding: 6px 16px; font-size: 0.78rem; }
.btn-danger { background: #e74c3c; color: white; }
.btn-danger:hover { background: #c0392b; }
.btn-outline { background: transparent; color: var(--text-muted); border: 1px solid #333; }
.btn-outline:hover { border-color: #555; color: var(--text); }

/* ===== ADMIN ===== */
.admin-login {
  max-width: 380px;
  margin: 160px auto 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-login h2 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1.3rem;
}

.form-group { margin-bottom: 14px; text-align: left; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(181,5,52,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-error { color: #e74c3c; font-size: 0.8rem; margin-top: 8px; }

.admin-panel {
  max-width: 850px;
  margin: 100px auto 80px;
  padding: 0 24px;
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-panel > h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.admin-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.admin-item:last-child { border-bottom: none; }
.admin-item .info { flex: 1; }
.admin-item .info strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.admin-item .info small { color: var(--text-muted); font-size: 0.75rem; }
.admin-item .actions { display: flex; gap: 6px; }

.admin-form {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.admin-form.visible { display: block; animation: fadeInUp 0.3s ease; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1a1a1a;
  color: white;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1), slideOut 0.4s ease 2.6s forwards;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border: 1px solid #2a2a2a;
}

.toast.error { background: #e74c3c; border-color: #e74c3c; }
.toast.success { background: #1a8a4a; border-color: #1a8a4a; }

@keyframes slideIn {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateY(0) scale(1); opacity: 1; }
  to { transform: translateY(40px) scale(0.95); opacity: 0; }
}

/* ===== LOADER ===== */
.loader {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.loader::after {
  content: '';
  width: 28px;
  height: 28px;
  border: 2px solid #1a1a1a;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== DIVIDER ===== */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin: 0 auto 40px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  header { top: 8px; width: calc(100% - 24px); }
  nav { padding: 0 16px; height: 48px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    background: rgba(14,14,14,0.95);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 12px;
    gap: 2px;
    border-radius: 16px;
    border: 1px solid var(--border);
    animation: fadeInUp 0.3s ease;
  }

  .nav-links.open { display: flex; }
  .nav-right { display: none; }
  .burger { display: flex; }

  .hero-slider { height: 320px; }
  .slide { padding: 28px; }
  .slide-content h2 { font-size: 1.8rem; }

  .about-content { grid-template-columns: 1fr; gap: 32px; }

  .page-banner { padding: 32px 24px; margin-top: 72px; }
  .page-banner h1 { font-size: 1.4rem; }
  .countdown-number { font-size: 2rem; }
  .countdown-block { min-width: 56px; }

  .winners-banner { height: 240px; }
  .winners-banner .winner-content { padding: 24px; flex-direction: column; gap: 8px; }

  .schedule-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .participants-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .countdown { gap: 10px; }
  .countdown-number { font-size: 1.6rem; }
  .countdown-sep { font-size: 1.4rem; }
}
