/* ===== EVENTS.CSS — Ultra-Responsive Cyber Glassmorphism Event Stylesheet ===== */

:root {
  --ev-primary: #ff6633;
  --ev-primary-glow: rgba(255, 102, 51, 0.35);
  --ev-cyan: #00e5ff;
  --ev-cyan-glow: rgba(0, 229, 255, 0.25);
  --ev-gold: #ffd700;
  --ev-gold-glow: rgba(255, 215, 0, 0.3);
  --ev-silver: #e0e6ed;
  --ev-silver-glow: rgba(224, 230, 237, 0.25);
  --ev-bronze: #cd7f32;
  --ev-bronze-glow: rgba(205, 127, 50, 0.25);
  --ev-bg-card: rgba(16, 20, 30, 0.72);
  --ev-border: rgba(255, 255, 255, 0.08);
  --ev-border-hover: rgba(255, 102, 51, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #080b10;
  color: #f0f0f0;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

main {
  padding-top: calc(75px + env(safe-area-inset-top, 0px));
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: hidden;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.ev-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 5% 3rem;
  overflow: hidden;
  width: 100%;
}

.ev-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ev-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.65;
}

.ev-hero-orb--1 {
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: radial-gradient(circle, rgba(255, 102, 51, 0.22) 0%, transparent 70%);
  top: -150px;
  left: 5%;
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.ev-hero-orb--2 {
  width: min(450px, 75vw);
  height: min(450px, 75vw);
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  bottom: -100px;
  right: 5%;
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes orbDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -40px) scale(1.08); }
}

.ev-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 75%);
}

.ev-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.ev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 102, 51, 0.08);
  border: 1px solid rgba(255, 102, 51, 0.28);
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.68rem, 2.2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ff9955;
  box-shadow: 0 0 20px rgba(255, 102, 51, 0.15);
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.ev-badge-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #ff6633;
  box-shadow: 0 0 10px #ff6633;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

.ev-hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.9rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 20%, #e0e6ed 60%, #ff8844 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(255, 102, 51, 0.2));
  word-break: break-word;
}

.ev-accent {
  background: linear-gradient(135deg, #ffaa00 0%, #ff5500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ev-hero-desc {
  font-size: clamp(0.92rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: rgba(240, 243, 248, 0.78);
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 0.5rem;
}

/* Hero Quick Stats Pill */
.ev-hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 0.85rem 1.75rem;
  background: rgba(16, 20, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.ev-hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 auto;
}

.ev-hero-stat-item strong {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 800;
  color: #ff9944;
}

.ev-hero-stat-item span {
  font-size: clamp(0.6rem, 1.8vw, 0.68rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   EDITION TABS NAVIGATION
   ========================================================================== */
.ev-tabs-container {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto 3rem;
  padding: 0 4%;
}

.ev-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(16, 20, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.ev-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  color: #00e5ff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  white-space: nowrap;
}

.ev-share-btn:hover {
  background: rgba(0, 229, 255, 0.18);
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ev-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .ev-share-btn {
    grid-column: span 2;
  }
}

.ev-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.6rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.ev-tab-num {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 800;
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.ev-tab-label {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.68rem, 1.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ev-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.ev-tab.ev-tab--active {
  background: linear-gradient(135deg, rgba(255, 102, 51, 0.2), rgba(255, 70, 0, 0.08));
  border-color: rgba(255, 102, 51, 0.45);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 102, 51, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.ev-tab.ev-tab--active .ev-tab-num {
  color: #ff9944;
  text-shadow: 0 0 12px rgba(255, 153, 68, 0.4);
}

/* ==========================================================================
   EDITION SECTIONS
   ========================================================================== */
.ev-edition {
  display: block;
  animation: editionFade 0.35s ease-out both;
  padding-bottom: 5rem;
  width: 100%;
}

.ev-edition[hidden] {
  display: none !important;
}

@keyframes editionFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ev-edition-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

/* Section Header */
.ev-edition-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.ev-edition-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(255, 102, 51, 0.12);
  border: 1px solid rgba(255, 102, 51, 0.3);
  border-radius: 50px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.68rem, 1.8vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ff9944;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.ev-edition-badge--2 {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: #00e5ff;
}

.ev-edition-badge--3 {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.35);
  color: #ffd700;
}

.ev-edition-badge--4 {
  background: rgba(166, 133, 255, 0.15);
  border-color: rgba(166, 133, 255, 0.35);
  color: #c4a8ff;
}

.ev-edition-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 2.75rem);
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ==========================================================================
   STATS CARDS GRID
   ========================================================================== */
.ev-recap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  width: 100%;
}

.ev-stat-card {
  padding: 1.4rem 1rem;
  background: var(--ev-bg-card);
  border: 1px solid var(--ev-border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.ev-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--ev-border-hover);
  box-shadow: 0 16px 35px rgba(255, 102, 51, 0.18);
}

.ev-stat-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.ev-stat-card strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.ev-stat-card span {
  font-size: clamp(0.65rem, 1.8vw, 0.74rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   INFO DUO / STORY CARDS
   ========================================================================== */
.ev-info-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.ev-info-block {
  background: var(--ev-bg-card);
  border: 1px solid var(--ev-border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  width: 100%;
}

.ev-info-block:hover {
  transform: translateY(-5px);
  border-color: var(--ev-border-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 102, 51, 0.12);
}

.ev-info-img {
  height: clamp(180px, 22vw, 240px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ev-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.ev-info-block:hover .ev-info-img img {
  transform: scale(1.05);
}

.ev-info-text {
  padding: 1.5rem;
}

.ev-info-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(255, 102, 51, 0.1);
  border: 1px solid rgba(255, 102, 51, 0.25);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff9955;
  margin-bottom: 0.65rem;
}

.ev-info-text h4 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.ev-info-text p {
  font-size: clamp(0.85rem, 1.8vw, 0.92rem);
  line-height: 1.65;
  color: rgba(240, 243, 248, 0.75);
  margin: 0;
}

/* ==========================================================================
   RESULTS & PODIUM ARENA
   ========================================================================== */
.ev-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.ev-results-grid--single {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ev-result-card {
  background: var(--ev-bg-card);
  border: 1px solid var(--ev-border);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.ev-result-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-result-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.ev-result-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ev-cat-label {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* Podium Items */
.ev-podium {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.ev-podium-place {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  width: 100%;
}

.ev-podium-place:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.05);
}

.ev-podium-place.ev-gold {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.1);
}

.ev-podium-place.ev-silver {
  background: linear-gradient(90deg, rgba(224, 230, 237, 0.1) 0%, rgba(224, 230, 237, 0.02) 100%);
  border-color: rgba(224, 230, 237, 0.35);
}

.ev-podium-place.ev-bronze {
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.1) 0%, rgba(205, 127, 50, 0.02) 100%);
  border-color: rgba(205, 127, 50, 0.35);
}

.ev-medal {
  font-size: 1.6rem;
  min-width: 34px;
  text-align: center;
  flex-shrink: 0;
}

.ev-medal--gray {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
}

.ev-place-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.ev-place-num {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.1rem;
}

.ev-gold .ev-place-num { color: #ffd700; }
.ev-silver .ev-place-num { color: #e0e6ed; }
.ev-bronze .ev-place-num { color: #cd7f32; }

.ev-place-name {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 700;
  color: #ffffff;
  word-break: break-word;
}

.ev-place-name small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.15rem;
}

/* ==========================================================================
   PRIZES & VIDEO SECTION
   ========================================================================== */
.ev-prizes-info-section {
  background: var(--ev-bg-card);
  border: 1px solid var(--ev-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.ev-prizes-header-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.ev-prizes-header-block h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.6rem;
}

.ev-prizes-header-block p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 1.6;
  color: rgba(240, 243, 248, 0.75);
  margin: 0;
}

.ev-prizes-display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.ev-prize-show-card {
  padding: 1.75rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.ev-prize-show-card:hover {
  transform: translateY(-4px);
  border-color: var(--ev-primary);
  box-shadow: 0 14px 35px rgba(255, 102, 51, 0.2);
}

.prize-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.gold-tag { background: rgba(255, 215, 0, 0.15); color: #ffd700; border: 1px solid rgba(255, 215, 0, 0.35); }
.silver-tag { background: rgba(224, 230, 237, 0.15); color: #e0e6ed; border: 1px solid rgba(224, 230, 237, 0.35); }
.bronze-tag { background: rgba(205, 127, 50, 0.15); color: #cd7f32; border: 1px solid rgba(205, 127, 50, 0.35); }

.ev-prize-show-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
}

.ev-prize-show-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.ev-video-section {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-video-section h4 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
}

.ev-video-section p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 1.25rem;
}

.btn-yt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  background: linear-gradient(135deg, #ff0033 0%, #cc0000 100%);
  color: #ffffff;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 0, 51, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 100%;
}

.btn-yt:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 0, 51, 0.5);
  color: #ffffff;
}

/* ==========================================================================
   DOWNLOADS & PRESS COVERAGE
   ========================================================================== */
.ev-section-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.25rem;
}

.ev-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
  margin-bottom: 3rem;
  width: 100%;
}

.ev-dl-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  min-height: 48px;
  background: var(--ev-bg-card);
  border: 1px solid var(--ev-border);
  border-radius: 14px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  width: 100%;
}

.ev-dl-card:hover {
  transform: translateY(-2px);
  border-color: var(--ev-primary);
  background: rgba(255, 102, 51, 0.08);
}

.ev-dl-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.ev-dl-name {
  flex: 1;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.78rem, 1.8vw, 0.86rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  word-break: break-word;
}

.ev-dl-arrow {
  font-size: 1.1rem;
  color: #ff9944;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.ev-dl-card:hover .ev-dl-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   ORGANIZERS & PARTNERS
   ========================================================================== */
.ev-organizers {
  background: var(--ev-bg-card);
  border: 1px solid var(--ev-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
}

.ev-organizers h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.75rem;
}

.ev-org-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

.ev-org-card {
  padding: 1.25rem 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 140px;
  flex: 1 1 140px;
  max-width: 220px;
}

.ev-org-card--lead {
  border-color: rgba(255, 102, 51, 0.35);
  background: rgba(255, 102, 51, 0.06);
}

.ev-org-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 0.65rem;
}

.ev-org-avatar--lead {
  background: #ff6633;
  color: #111;
  box-shadow: 0 0 15px rgba(255, 102, 51, 0.4);
}

.ev-org-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}

.ev-org-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ev-org-tag--lead {
  color: #ff9955;
}

.ev-org-info {
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.55;
}

/* Partners */
.ev-partners {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.ev-partners h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.25rem;
}

.ev-partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}

.ev-partner-logos img {
  height: clamp(36px, 6vw, 48px);
  width: auto;
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.25s ease;
  filter: grayscale(20%);
  max-width: 100%;
}

.ev-partner-logos img:hover {
  opacity: 1;
  transform: scale(1.06);
  filter: none;
}

/* ==========================================================================
   EDITION 4 — TECH FEST & SIGNUP
   ========================================================================== */
.ev-status-panel {
  background: var(--ev-bg-card);
  border: 1px solid var(--ev-border);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 3rem;
  width: 100%;
}

.ev-status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(166, 133, 255, 0.15);
  border: 1px solid rgba(166, 133, 255, 0.35);
  border-radius: 50px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #c4a8ff;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.ev-status-panel h4 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.ev-status-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(255, 102, 51, 0.15);
  border: 1px solid rgba(255, 102, 51, 0.35);
  border-radius: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff9944;
  margin-bottom: 1rem;
}

.ev-status-panel p {
  font-size: clamp(0.88rem, 1.8vw, 0.95rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.65;
}

.ev-signup {
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.ev-signup-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.4rem;
}

.ev-signup-header p {
  font-size: clamp(0.85rem, 1.8vw, 0.92rem);
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.75rem;
}

.ev-signup-card {
  padding: 2rem 1.5rem;
  background: var(--ev-bg-card);
  border: 1px solid var(--ev-border);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.ev-signup-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.ev-signup-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: #fff;
  margin: 0 0 0.5rem;
}

.ev-signup-date {
  font-size: 0.9rem;
  color: #ff9944;
  margin: 0 0 0.4rem;
}

.ev-signup-subtext {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   ADVANCED RESPONSIVE BREAKPOINTS
   ========================================================================== */
/* Tablet & Medium screens */
@media (max-width: 980px) {
  .ev-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .ev-recap-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ev-info-duo {
    grid-template-columns: 1fr;
  }
  .ev-results-grid {
    grid-template-columns: 1fr;
  }
  .ev-prizes-display-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .ev-hero {
    padding: 3.5rem 4% 2rem;
    min-height: auto;
  }
  .ev-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    width: 100%;
  }
  .ev-tabs-container {
    padding: 0 3%;
    margin-bottom: 2rem;
  }
  .ev-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding: 0.35rem;
    border-radius: 14px;
  }
  .ev-tab {
    padding: 0.6rem 0.35rem;
    border-radius: 10px;
  }
  .ev-edition-inner {
    padding: 0 3%;
  }
  .ev-edition-header {
    margin-bottom: 2rem;
  }
  .ev-recap-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 2rem;
  }
  .ev-stat-card {
    padding: 1rem 0.6rem;
    border-radius: 14px;
  }
  .ev-info-duo {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .ev-info-img {
    height: 180px;
  }
  .ev-info-text {
    padding: 1.25rem 1rem;
  }
  .ev-result-card {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }
  .ev-podium-place {
    padding: 0.8rem 0.85rem;
    gap: 0.75rem;
    border-radius: 10px;
  }
  .ev-prizes-info-section {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
  .ev-prize-show-card {
    padding: 1.25rem 1rem;
  }
  .ev-download-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .ev-dl-card {
    padding: 0.95rem 1rem;
  }
  .ev-organizers {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
  .ev-org-row {
    gap: 0.75rem;
  }
  .ev-org-card {
    min-width: 120px;
    flex: 1 1 120px;
    padding: 0.9rem 0.65rem;
  }
  .ev-status-panel {
    padding: 2rem 1rem;
    border-radius: 16px;
  }
  .ev-signup-card {
    padding: 1.75rem 1rem;
    border-radius: 16px;
  }
}

/* Extra small devices (Fold phones / 320px-360px) */
@media (max-width: 360px) {
  .ev-hero-stats {
    grid-template-columns: 1fr;
  }
  .ev-recap-stats {
    grid-template-columns: 1fr;
  }
  .ev-org-card {
    min-width: 100%;
  }
  .ev-tab-label {
    font-size: 0.62rem;
  }
}
