/* =========================
   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: normal;
    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: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/Gotham-Book.woff2') format('woff2'),
        url('/assets/fonts/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/Gotham-Light.woff2') format('woff2'),
        url('/assets/fonts/Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/Gotham-Medium.woff2') format('woff2'),
        url('/assets/fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/Gotham-Thin.woff2') format('woff2'),
        url('/assets/fonts/Gotham-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/Gotham-Bold.woff2') format('woff2'),
        url('/assets/fonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/Gotham-Black.woff2') format('woff2'),
        url('/assets/fonts/Gotham-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ---------- 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,.0);

  /* 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:             4px;
  --lane-badge:          28px;
  --lane-gap:            2px;
  --font-family:         'Gotham', 'Open Sans', sans-serif;
  --base-font-size:      14.5px;
  --letter-spacing:      0.03em;
  --text:                #D6EFFF;
  --country-name:        #D6EFFF;
  --country-name-locked: #D6EFFF;
  --country-points:      #D6EFFF;
  --country-points-locked: #D6EFFF;
  --country-points-bg: transparent;
  --country-points-bg-locked: transparent;

  /* Gradients / states */
  --row-grad:            linear-gradient(10deg, #16142a, #16142a, #73263a);
  --row-grad-locked:     linear-gradient(to left, #ae3a04 0%, #ae3a04 15%, #ae3a04 30%);
  --row-grad-highlight:  linear-gradient(10deg, #16142a, #16142a, #73263a);
  --row-grad-gold:       linear-gradient(10deg, #73263a, #73263a, #16142a);

  /* Placement badge */
  --place-bg:            #000130;
  --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, #16142a, #61927b, #16142a, #73263a, #16142a);
  --anim-gradient-2:     linear-gradient(to right, #16142a, #61927b, #f5dc15, #f5dc15, #61927b, #16142a, #16142a);

  /* Points cells */
  --points-right-pad:    15px;
  --current-points-right:70px;
  --current-points:     #D6EFFF;
  --current-points-w:    28px;
  --current-points-bg:   linear-gradient(to left, #61927b 0%, #61927b 50%, #61927b 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); }

/* ---------- 6) CONTROL PANEL (DRAGGABLE) ---------- */
.sb-panel{
  position: absolute; right: 18px; top: 18px; z-index: var(--z-panel);
  display: flex; gap: 8px; padding: 8px 10px;
  background: var(--panel-bg); border-radius: var(--panel-radius);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  user-select: none; cursor: grab;
}
.sb-panel:active{ cursor: grabbing; }
.sb-panel button{
  border: 0; padding: 8px 10px; border-radius: 8px; font-weight: 600; cursor: pointer;
}
.sb-panel[data-visible="0"]{ display: none; }
/*.sb-panel .is-muted{ opacity: .6; }*/
.sb-panel .is-auto{ background: rgba(255,255,255,.15); }

/* pressed look – adapt to your theme */
.sb-panel [data-act][data-on="1"],
.sb-panel [data-act].is-on,
.sb-panel [data-act][aria-pressed="true"] {
  transform: translateY(1px);
  filter: brightness(0.6);
  /*outline: 2px solid var(--accent, #00b3ff);*/
}

/* ---------- 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: 700;
  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 */
    border: 0px solid #343a40;
    border-radius: 0px;
    background-color: #000130;
    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;
}

.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-color: #001A85;
}

.country-container.gold {
    /* background: linear-gradient(to left, #EBD317 0%, #DC40C4 15%); */
    background-color: #E22343;
    color: #003E76;
}

.country-container.locked {
    background-color: #191919;
    cursor: not-allowed; /* Indicate that it's not clickable */
}

.country-name {
    flex: 1;
    text-align: left; /* Align country names to the left */
    color: #FFFFFF; 
    padding-left: 10px; /* Padding to give space from the left edge */
    /* padding-top: 3px; */
    padding-bottom: 0px;
    text-transform: capitalize;
    z-index: 3;
    line-height: 28px;
}

.country-name.gold {
    /* background: linear-gradient(to left, #EBD317 0%, #DC40C4 15%); */
    color: #FFFFFF;
}

.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;
    line-height: 28px;
}

.country-code.gold {
    /* background: linear-gradient(to left, #EBD317 0%, #DC40C4 15%); */
    color: #FFFFFF;
}

.country-flag {
    height: 22px;
    width: auto;
    margin-right: 8px;
    margin-left: 8px;
    z-index: 3;
}

.country-points {
    text-align: right; /* Align overall points to the right */
    color: #ffffff; /* Dark text */
    padding-left: 10px; /* Padding to give space for current points box */
    white-space: nowrap; /* Prevent text from wrapping */
    position: absolute;
    right: 15px; /* 10px from the right edge */
    /* top: 8px; */
    z-index: 3;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 28px;
}

.country-points.gold {
    /* background: linear-gradient(to left, #EBD317 0%, #DC40C4 15%); */
    color: #FFFFFF;
    font-weight: bold;
}

.current-points {
    position: absolute;
    height: 28px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0px;
    background-color: #001A85; 
    /* background-color: rgba(6, 6, 6, 0.6); /* Darker background with 0.5 transparency */
    /* padding: 3px 3px 0px 3px; */
    font-size: 1.2em;
    color: #FFFFFF; /* text */
    /* display: none; */
    font-weight: bold;
    z-index: 3;
    line-height: 28px;
}

.current-points.gold {
    background-color: #E22343;
}

/* ---------- 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, #001A85, #E22343, #001A85, #001A85);
    background-size: 500% 500%;  /* Ensure the gradient is wide enough to animate */
    animation: gradientShift 1.5s ease-in-out; /* Animate over 2 seconds */
} 
/*
.country-container.animatedo-gradient {
    background: linear-gradient(to right, #001A85, #f5dc15, #fe48d8, #fe48d8, #f5dc15, #4B1E84, #4B1E84);
    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(150%, -50%);
    font-weight: 600;
    color: #ffffff;
    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: slideFromRight 0.7s ease-in-out forwards; /* Run the slide up animation */
}

@keyframes slideFromRight {
    0% {
        transform: translate(150%, -50%);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}



/* 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}
}

