/* =========================
   SCOREBOARD — STRUCTURED CSS
   ========================= */

/* ---------- 0) FONTS ---------- */
@font-face {
  font-family: 'es_buildregular';
  src: url('/assets/fonts/es_build-webfont.woff2') format('woff2'),
       url('/assets/fonts/es_build-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'es_buildmedium';
  src: url('/assets/fonts/es_build_medium-webfont.woff2') format('woff2'),
       url('/assets/fonts/es_build_medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* ---------- 1) ROOT VARIABLES ---------- */
:root {
  /* Canvas */
  --sb-width:            1360px;
  --sb-width-collapsed:  1050px;        /* 20 + 500 + 10 + 500 + 20 */
  --sb-height:           655px;
  --sb-padding:          20px;
  --sb-radius:           10px;
  --sb-bg:               rgba(255,255,255,.1);

  /* Grid */
  --grid-gap:            10px;
  --col-left-w:          500px;
  --col-right-w:         500px;
  --col-info-w:          300px;
  --row-content-h:       515px;
  --row-footer-h:        90px;
  --row-footer-h-compact:40px;

  /* One-column presentation (unified) */
  --onecol-content-w:    1010px;  /* 500 + 10 + 500 */
  --onecol-stack-w:      500px;   /* visual rail width inside left */

  /* Status bar (when info collapsed) */
  --status-bar-h:        40px;
  --status-font-size:    30px;

  /* Row lane + typography */
  --row-h:               28px;
  --row-gap:             0px;
  --lane-badge:          28px;
  --lane-gap:            2px;
  --font-family:         "es_buildmedium","es_buildregular","itc-avant-garde-gothic-pro",'Open Sans',system-ui,sans-serif;
  --base-font-size:      14.5px;
  --letter-spacing:      0.03em;
  --text:                #ffffff;

  /* Gradients / states */
  --row-grad:            linear-gradient(to left, #f04be6 0%, #0dd6d3 15%, #eb2550 30%);
  --row-grad-locked:     linear-gradient(to left, #84287d 0%, #0f8a88 15%, #a51d3b 30%);
  --row-grad-highlight:  linear-gradient(to left, #f04be6 0%, #0dd6d3 15%, #eb2550 30%);
  --row-grad-gold:       linear-gradient(to left, #f04be6 0%, #0dd6d3 15%, #eb2550 30%);

  /* Placement badge */
  --place-bg:            #6424b9;
  --place-fg:            #ffffff;

  /* Overlay / effects */
  --overlay-fg:          #ffffff;
  --overlay-shadow:      0 0 10px rgba(0,0,0,.5);
  --anim-gradient-1:     linear-gradient(to right, #f04be6, #01A6C4, #f04be6, #f04be6);
  --anim-gradient-2:     linear-gradient(to right, #f04be6, #f5dc15, #eb2550, #eb2550, #0dd6d3, #f04be6, #f04be6);

  /* Points cells */
  --points-right-pad:    15px;
  --current-points-right:55px;
  --current-points-w:    40px;
  --current-points-bg:   linear-gradient(to left, #eb255000 0%, #eb2550 50%, #eb255000 100%);

  /* Panel (drag box) */
  --panel-bg:            rgba(0,0,0,.35);
  --panel-radius:        10px;

  /* Transitions */
  --t-fast:              .2s ease;
  --t-med:               .25s ease;
  --t-slow:              1.5s ease;

  /* Z index */
  --z-panel:             50;
  --z-row:               2;
  --z-overlay:           20;

}

/* ---------- 2) BASE / RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 300 var(--base-font-size)/1.3 var(--font-family);
  letter-spacing: var(--letter-spacing);
  color: var(--text);
  background: transparent;
}

#backgroundVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    min-height: 100%;
    object-fit: cover;
}

/* ---------- 3) SCOREBOARD WRAPPER ---------- */
.scoreboard{
  width: var(--sb-width);
  height: var(--sb-height);
  padding: var(--sb-padding);
  background: var(--sb-bg);
  border-radius: var(--sb-radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* columns vs footer */
  align-items: center;
  position: relative;
  z-index: 1;
  transition: width var(--t-med);
}

/* With info collapsed, the canvas becomes narrower */
.scoreboard.info-collapsed{
  width: var(--sb-width-collapsed) !important;
}

/* ---------- 4) GRID LAYOUT ---------- */
#grid{
  display: grid;
  gap: var(--grid-gap);
  width: 100%;
  height: 100%;
  grid-template-columns: var(--col-left-w) var(--col-right-w) var(--col-info-w);
  grid-template-rows: var(--row-content-h) var(--row-footer-h);
  grid-template-areas:
    "left  right info"
    "footer footer info";
}

/* one-col unified layout (keep info column visible on the right) */
#grid.onecol{
  grid-template-columns: var(--onecol-content-w) var(--col-info-w);
  grid-template-rows: var(--row-content-h) var(--row-footer-h);
  grid-template-areas:
    "left   info"
    "footer info";
}

/* info collapsed (2-col) — put status on top, footer compact */
#grid.info-collapsed{
  grid-template-columns: var(--col-left-w) var(--col-right-w);
  grid-template-rows: var(--status-bar-h) var(--row-content-h) var(--row-footer-h-compact);
  grid-template-areas:
    "status status"
    "left   right"
    "footer footer";
}

/* info collapsed + 1-col (unified) */
#grid.onecol.info-collapsed{
  grid-template-columns: var(--onecol-content-w);
  grid-template-rows: var(--status-bar-h) var(--row-content-h) var(--row-footer-h-compact);
  grid-template-areas:
    "status"
    "left"
    "footer";
}

/* Region mapping */
#col-left   { grid-area: left;   }
#col-right  { grid-area: right;  }
#col-info   { grid-area: info;   }
#col-footer { grid-area: footer; }

/* Collapsed info is removed from layout */
#col-info.is-collapsed { display: none; }

/* ---------- 5) PANELS / COLUMNS ---------- */
.column, .panel { width: 100%; height: 100%; }

#col-left, #col-right {
  display: flex; flex-direction: column; justify-content: flex-start;
}

.column{
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.column .stack{
  display: flex;
  flex-direction: column;
  gap: var(--row-gap);
  will-change: transform;
}

/* In 1-col mode, disable any translate centering done in JS for safety */
#grid.onecol .stack { transform: none !important; }

/* One-col: center the narrow rail inside the content area */
#grid.onecol #col-left{
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
}
#grid.onecol #col-left .stack{ width: var(--onecol-stack-w); }

/* ---------- 7) STATUS BAR / INFO ---------- */
.voting-status {
  font-size: var(--status-font-size);
  margin-bottom: 5px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 300;
}
/* When elevated into grid top row */
#grid > .voting-status.status-bar{
  grid-area: status;
  width: 100%;
  height: var(--status-bar-h);
  display: flex;
  align-items: center;
  padding-inline: 12px;
  box-sizing: border-box;
}

/* Info column contents (expanded) */
#col-info .spokesperson  { width: var(--col-info-w); height: 435px; background: rgba(255,255,255,.2); border-radius: 10px; }
#col-info .voting-status { width: var(--col-info-w); height: 170px; }

/* ---------- 8) ROWS / CELLS ---------- */
.row-wrap{
  display: flex;
  align-items: center;
}

.placements {
  height: var(--lane-badge);
  width:  var(--lane-badge);
  margin-right: var(--lane-gap);
  display: none; /* JS flips to flex when needed */
  align-items: center; justify-content: center;
  font-weight: 300;
  background: var(--place-bg);
  color: var(--place-fg);
  user-select: none;
}

/* Keep country row shrinking next to placements */
.row-wrap .country-container { flex: 1 1 auto; }

.country-container {
    width: 100%; /* Full width in each column */
    height: 28px;
    padding: 0px; /* Reduced padding for a tighter fit */
    margin: 2px 0; /* Reduced margin for a tighter fit */
    border: 0px solid #343a40;
    border-radius: 0px;
    background: #6424b9;
    display: flex;
    justify-content: space-between; /* Align items horizontally */
    align-items: center;
    cursor: pointer;
    transition: background-color 1.5s ease; 
    position: relative;
    color: #ffffff; /* Dark text */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    z-index: 2;
    overflow: hidden;
}

.country-container.standby,
.country-container.selected,
.country-container.highlight,
.country-container.gold,
.country-container.locked {
    transition: background-color 1.5s ease; /* Smooth background-color transition for all states */
}

.country-container.selected {
    background-color: rgba(45, 120, 176, 0.8); /* Slightly darker for selected */
}

.country-container.highlight {
  /*  background: linear-gradient(to left, #C03BB4 0%, #4B1E84 15%, #20A1C2 20%, #4B1E84 25%); */
    background: #6424b9;
}

.country-container.gold {
    /* background: linear-gradient(to left, #EBD317 0%, #DC40C4 15%); */
    background: #09dad7;
}

.country-container.locked {
    background: #bb01c6;
    cursor: not-allowed; /* Indicate that it's not clickable */
}

.country-name {
    flex: 1;
    text-align: left; /* Align country names to the left */
    color: #ffffff; /* Dark text */
    padding-left: 10px; /* Padding to give space from the left edge */
    text-transform: capitalize;
    z-index: 3;
    font-weight: 400;
    font-size: 1.1em;
    display: flex;
    justify-content: center;
}

.country-name.gold, .country-code.gold {
    color: #6424b9;
}

.country-code {
    flex: 1;
    text-align: left; /* Align country names to the left */
    color: #ffffff; /* Dark text */
    padding-left: 10px; /* Padding to give space from the left edge */
    padding-top: 3px;
    padding-bottom: 0px;
    text-transform: uppercase;
    z-index: 3;
    font-weight: 400;
    font-size: 1.1em;
}

.country-flag {
    height: 28px;
    width: 28px;
    margin-right: 1px;
    z-index: 3;
    object-fit: cover;
    object-position: center;
}

.country-container,
.country-flag {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);          /* promote to its own layer */
  -webkit-transform: translateZ(0);
  will-change: transform;            /* hint: we will animate transform in JS */
}

.country-points {
    text-align: center; /* Align overall points to the right */
    color: #000000; /* Dark text */
    background: #ffffff;
    width: 28px;
    height: 28px;
    white-space: nowrap; /* Prevent text from wrapping */
    position: sticky;
    right: 0px; /* 10px from the right edge */
    z-index: 3;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9em;
}

.current-points {
    position: absolute;
    height: 28px;
    width: 28px;
    right: 28px;
    background: #bb01c6;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 3px; */
    font-size: 1em;
    color: #ffffff; /* Light text */
    z-index: 3;
    font-weight: 400;
    line-height: 28px;
}

/* ---------- 9) FOOTER ---------- */
#col-footer      { height: var(--row-footer-h); display:flex; align-items:center; justify-content:center; }
#col-footer.compact { height: var(--row-footer-h-compact); }

.footer{
  font-size: 12px;
  text-align: center;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- 10) EFFECTS / ANIMATIONS ---------- */
@keyframes gradientShift {
    0% {
        background-position: 100% 50%;  /* Start from the left */
    }
    100% {
        background-position: 0% 50%;  /* End on the right */
    }
}

.country-container.highlight.animated-gradient {
    background: linear-gradient(to right, #3fc1ce, #8258d4, #ff0bff, #3053bf, #3fc1ce, #3fc1ce);
    background-size: 500% 500%;  /* Ensure the gradient is wide enough to animate */
    animation: gradientShift 2s ease-in-out; /* Animate over 2 seconds */
}


.country-container.animatedo-gradient {
    background: linear-gradient(to right, #3fc1ce, #8258d4, #3053bf, #ff0bff, #3fc1ce, #8258d4, #3053bf, #3fc1ce, #3fc1ce);
    background-size: 500% 500%;  /* Ensure the gradient is wide enough to animate */
    animation: gradientShift 2s ease-in-out; /* Animate over 2 seconds */
    z-index: 10;
}

.points-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Optional: text shadow for better visibility */
    z-index: 20; /* Ensure it is on top */
    pointer-events: none; /* Make sure the overlay doesn't interfere with clicks */

    /* Animation to make the text appear from the bottom */
    animation: slideUp 0.7s ease-in-out forwards; /* Run the slide up animation */
}

@keyframes slideUp {
    0% {
        transform: translate(-50%, 150%);
        opacity: 0;    /* Fully transparent at the beginning */
    }
    50% {
        opacity: 0.2;    /* Become fully visible halfway through the animation */
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;    /* Fully visible at the end */
    }
}

/* dim-out for animation mode 3 */
.dimmed{ opacity:.25; filter: grayscale(.6); }

/* blink for animation mode 4 (two blinks) */
.blink-twice{ animation: sb-blink .22s ease-in-out 2; }
@keyframes sb-blink{
  0%{opacity:1} 50%{opacity:0} 100%{opacity:1}
}

