@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-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:             0px;
  --lane-badge:          28px;
  --lane-gap:            2px;
  --font-family:         'Gotham', 'Open Sans', sans-serif;
  --base-font-size:      14.5px;
  --letter-spacing:      0.03em;
  --text:                #0e1037;
  --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:            linear-gradient(45deg, #763bc9, #0ecbbc);
  --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;

}

body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Gotham', "es_buildmedium", "es_buildregular", "itc-avant-garde-gothic-pro", 'Open Sans', sans-serif; /* Use Open Sans font */
    font-weight: 300;
    letter-spacing: 0.03em;
    font-size: 14.5px;
    font-style: normal;
}

.scoreboard{
  width: var(--sb-width);
  height: var(--sb-height);
  padding: var(--sb-padding);
  background: rgba(255, 255, 255, 0.25);
  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);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
}

/* ================ */

/* 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;
  text-transform: uppercase;
  font-weight: 500;
}
/* 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: 500;
  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;
    display: flex;
    justify-content: space-between; /* Align items horizontally */
    align-items: center;
    cursor: pointer;
    transition: background-color 1.5s ease; 
    position: relative;
    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: #ffd700; /* Slightly darker for selected */
}

.country-container.highlight {
  /*  background: linear-gradient(to left, #C03BB4 0%, #4B1E84 15%, #20A1C2 20%, #4B1E84 25%); */
    /* background: #ffd700; */
}

.country-container.gold {
    /* background: linear-gradient(to left, #EBD317 0%, #DC40C4 15%); */
    /* background: #ffd700; */
}

.country-container.locked {
    opacity: 0.55;
    cursor: not-allowed; /* Indicate that it's not clickable */
}

.country-name {
    flex: 1;
    text-align: left; /* Align country names to the left */
    padding-left: 10px; /* Padding to give space from the left edge */
    padding-top: 3px;
    padding-bottom: 0px;
    text-transform: capitalize;
    z-index: 3;
    font-weight: 400;
}

.country-code {
    flex: 1;
    text-align: left; /* Align country names to the left */
    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;
}

.country-flag {
    height: 28px;
    width: auto;
    margin-right: 1px;
    z-index: 3;
}

.country-points {
    text-align: right; /* Align overall points to the right */
    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: 400;
}

.current-points {
    position: absolute;
    height: 28px;
    width: 40px;
    justify-content: center;
    align-items: center;
    right: 65px;
    /* background: linear-gradient(to left, rgb(163, 82, 234, 0) 0%, rgb(163, 82, 234) 50%, rgb(163, 82, 234, 0) 100%); 
    /* border-radius: 3px; */
    font-size: 1em;
    color: #ffffff; /* Light text */
    /* display: none; */
    z-index: 3;
    line-height: 28px;
    font-weight: 400;
}

.footer {
    font-size: 12px;
    text-align: center;
    color: white; /* White text color */
    text-transform: uppercase;
    font-weight: 500;
}

@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, #ffd700, transparent, #fa45e4, #0ad9d4, transparent, #ffd700, #ffd700);
    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, #ffd700, transparent, #fa45e4, #0ad9d4, transparent, #ffd700, #ffd700);
    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;    /* 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}
}
