:root {
  --primary-color: #3b82f6;
  --secondary-color: #10b981;
  --dark-bg: #0f172a;
  --navy-blue: #1a202c;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
}

.navbar {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-section {
  padding: 60px 0 80px;
  background: #1e293b;
  color: white;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-section {
    padding: 100px 0 120px;
  }
}

.badge-custom {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.project-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.project-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}

.project-image-wrapper {
  height: 180px;
  overflow: hidden;
}
.project-image-wrapper img {
  height: 100%;
  object-fit: cover;
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.projects-container {
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.esc-banner-top .banner-image-container {
  height: 35vh;
  min-height: 200px;
  max-height: 600px;
}
@media (min-width: 768px) {
  .esc-banner-top .banner-image-container {
    height: 50vh;
    min-height: 300px;
  }
}
.esc-banner-top .banner-overlay {
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .esc-banner-top .banner-overlay {
    padding-bottom: 5rem;
  }
}
.esc-banner-top .banner-text-box {
  padding: 1rem 1.5rem;
}
@media (min-width: 768px) {
  .esc-banner-top .banner-text-box {
    padding: 1.5rem 2.5rem;
  }
}
.esc-banner-top .banner-text-box h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .esc-banner-top .banner-text-box h1 {
    font-size: 5rem;
  }
}
.esc-banner-top .esc-subtitle {
  letter-spacing: 0.3rem;
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .esc-banner-top .esc-subtitle {
    letter-spacing: 0.5rem;
    font-size: 0.9rem;
  }
}

.esc-voting-container .voting-slot {
  min-height: 80px;
  transition: all 0.2s ease;
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  pointer-events: auto;
  padding: 0.15rem;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .esc-voting-container .voting-slot {
    min-height: 100px;
    padding: 0.25rem;
  }
}
.esc-voting-container .voting-slot.voting-slot-large {
  min-height: 120px;
  background: #ffffff;
  border-width: 2px;
}
@media (min-width: 768px) {
  .esc-voting-container .voting-slot.voting-slot-large {
    min-height: 150px;
  }
}
.esc-voting-container .voting-slot .points-badge-small {
  margin-right: 0 !important;
  margin-bottom: 0.25rem;
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .esc-voting-container .voting-slot .points-badge-small {
    margin-bottom: 0.5rem;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}
.esc-voting-container .voting-slot .slot-content {
  width: 100%;
}
.esc-voting-container .voting-slot .slot-content .d-flex {
  flex-direction: column;
  justify-content: center !important;
}
.esc-voting-container .voting-slot .slot-content .d-flex span.fw-semibold {
  font-size: 0.85rem;
}
.esc-voting-container .voting-slot button {
  position: absolute;
  top: 2px;
  right: 2px;
}
.esc-voting-container .voting-slot * {
  pointer-events: none;
}
.esc-voting-container .voting-slot button {
  pointer-events: auto;
}
.esc-voting-container .voting-slot.slot-filled {
  background: #ffffff;
  border-style: solid;
  border-color: #3b82f6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}
.esc-voting-container .voting-slot.drag-over {
  background: #eff6ff;
  border-color: #3b82f6;
}
.esc-voting-container .points-badge {
  width: 32px;
  height: 32px;
  background: #1e293b;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
}
.esc-voting-container .points-badge-large {
  width: 40px;
  height: 40px;
  background: #1e293b;
  color: #fbbf24;
  border-radius: 8px;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .esc-voting-container .points-badge-large {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
.esc-voting-container .points-badge-small {
  width: 28px;
  height: 28px;
  background: #1e293b;
  color: white;
  border-radius: 6px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .esc-voting-container .points-badge-small {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 1.1rem;
  }
}
.esc-voting-container .x-small {
  font-size: 0.75rem;
}
.esc-voting-container .country-item {
  cursor: grab;
  transition: all 0.2s ease;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.esc-voting-container .country-item:active {
  cursor: grabbing;
}
.esc-voting-container .country-item.draggable:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}
.esc-voting-container .country-item.selected-country {
  background: #f1f5f9;
  cursor: default;
}
.esc-voting-container .country-item.pending-selection {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3) !important;
  background-color: #eff6ff !important;
}
.esc-voting-container .country-pool .fi {
  line-height: 1;
}
.esc-voting-container .voting-slot .fi {
  line-height: 1;
}

.results-table .ranking-row {
  transition: transform 1.2s ease, background-color 0.4s ease;
}
.results-table .ranking-row:hover {
  background-color: rgba(59, 130, 246, 0.03) !important;
}
.results-table .rank-badge {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 800;
  font-size: 0.9rem;
}
.results-table .rank-badge.rank-1 {
  background: #fbbf24;
  color: #78350f;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}
.results-table .rank-badge.rank-2 {
  background: #94a3b8;
  color: #1e293b;
}
.results-table .rank-badge.rank-3 {
  background: #d97706;
  color: #fff;
}
.results-table .country-flag-wrapper {
  width: 30px;
  height: 20px;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .results-table .country-flag-wrapper {
    width: 44px;
    height: 30px;
    border-radius: 4px;
  }
}
.results-table .country-flag-wrapper .fi {
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .results-table .country-flag-wrapper .fi {
    font-size: 1.8rem;
  }
}
.results-table .total-points {
  color: #1e293b;
}

.podium-container {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.podium-container .podium-card {
  background: white;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .podium-container .podium-card {
    border-radius: 20px;
  }
}
.podium-container .podium-card .podium-rank {
  font-size: 2rem;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
@media (min-width: 768px) {
  .podium-container .podium-card .podium-rank {
    font-size: 3rem;
    top: 10px;
  }
}
.podium-container .podium-card .podium-flag .fi {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
@media (min-width: 768px) {
  .podium-container .podium-card .podium-flag .fi {
    font-size: 3rem;
  }
}
.podium-container .podium-card.podium-1 {
  z-index: 2;
  border: 2px solid #fbbf24;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
  padding-bottom: 1.5rem !important;
}
@media (min-width: 768px) {
  .podium-container .podium-card.podium-1 {
    padding-bottom: 3rem !important;
  }
}
.podium-container .podium-card.podium-1 .podium-crown {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .podium-container .podium-card.podium-1 .podium-crown {
    top: -25px;
    font-size: 2.5rem;
  }
}
.podium-container .podium-card.podium-1 .podium-rank {
  color: #fbbf24;
  opacity: 0.2;
}
.podium-container .podium-card.podium-1 .podium-flag .fi {
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .podium-container .podium-card.podium-1 .podium-flag .fi {
    font-size: 4.5rem;
  }
}
.podium-container .podium-card.podium-2 {
  border-bottom: 8px solid #94a3b8;
  padding-bottom: 2rem !important;
}
.podium-container .podium-card.podium-2 .podium-rank {
  color: #94a3b8;
}
.podium-container .podium-card.podium-3 {
  border-bottom: 8px solid #d97706;
  padding-bottom: 1.5rem !important;
}
.podium-container .podium-card.podium-3 .podium-rank {
  color: #d97706;
}

.voter-avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  perspective: 1000px;
  max-width: 100%;
  overflow: hidden;
  padding: 2px 0;
}
.voter-avatars .voter-badge {
  width: 32px;
  height: 32px;
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: help;
}
.voter-avatars .voter-badge.is-flipped {
  transform: rotateY(180deg);
}
.voter-avatars .voter-badge.not-flipped {
  transform: rotateY(0deg);
}
.voter-avatars .voter-badge.both-sides {
  width: auto;
  min-width: 50px;
  height: 28px;
  display: flex;
  background: white;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.voter-avatars .voter-badge.both-sides .side-front {
  background: #f1f5f9;
  color: #475569;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  border-right: 1px solid #e2e8f0;
  min-width: 24px;
}
.voter-avatars .voter-badge.both-sides .side-back {
  background: #1e293b;
  color: #fbbf24;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  min-width: 24px;
}
.voter-avatars .voter-badge .badge-front, .voter-avatars .voter-badge .badge-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.voter-avatars .voter-badge .badge-front {
  background: #e2e8f0;
  color: #475569;
}
.voter-avatars .voter-badge .badge-back {
  background: #1e293b;
  color: #fbbf24;
  transform: rotateY(180deg);
  font-size: 0.9rem;
}
.voter-avatars .voter-badge:hover {
  z-index: 10;
}
.voter-avatars .voter-badge:hover .badge-front, .voter-avatars .voter-badge:hover .badge-back {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.italic {
  font-style: italic;
}

@media (max-width: 991.98px) {
  .esc-voting-container .voting-slots {
    margin-bottom: 2rem;
  }
}
.table-hover tbody tr {
  transition: background-color 0.2s ease;
}
.table-hover tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.05);
}

/*# sourceMappingURL=app.output.css.map */
