html {
  background-color: #000; /* Darker background for dark theme */
  overflow-x: hidden;
  color: #e0e0e0; /* Light text for visibility */
  scroll-behavior: smooth;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Scrollbar Base */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #111;
  border-radius: 10px;
}

/* Handle (thumb) */
::-webkit-scrollbar-thumb {
  background: #555; /* Changed for better visibility */
  border-radius: 10px;
  transition: background 0.3s ease;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #007ACC; /* Changed to lighter blue */
}

/* Colors */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #007ACC #111; /* Changed track to dark */
}

#remain, #ct_cont {
  margin-top: 50px;
}
#bg {
  margin-top: 20px;
}
#c_1 {
  margin-top: 10px;
}

* {
  padding: 0;
  margin: 0;
}

.product-card {
  background: transparent;
  border: 2px solid #007bff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  background-color: #1a1a1a;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  min-height: 350px;
}

/* Dark Theme Styling */
body {
  background-color: #000; /* Dark background */
  color: #e0e0e0; /* Light text color */
  font-family: Arial, sans-serif;
}

header {
  
  display: flex;
  width: 100vw;
  height: 70px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: rgba(0,0,0,0.7); /* Darker header background */

  padding: 0 20px;
  z-index: 100000000;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
  
}

header nav ul {
  display: flex;
  gap: 20px;
  z-index: 10000;
  box-sizing: border-box;
}

#menu-btn {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

header nav ul li {
  list-style: none;
  box-sizing: border-box;
}

body {
  position: relative;
}

header nav a {
  text-decoration: none;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1.4em;
  font-weight: bold;
  color: #A9A9A9; /* Light gray text for high contrast */
  z-index: 10000;
  box-sizing: border-box;
}

header nav a:hover {
  color: #007ACC; /* Bright blue for hover effect */
}

@media (max-width: 768px) {
  header nav ul {
    width: 0px;
    height: 0px;
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  header nav ul a {
    color: #FFFFFF;
    width: 100%;
  }
  li {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-radius: 8px;
  }
  header nav ul li:hover {
    background-color: #282828;
  }
  header nav ul a:hover {
    color: #FFFFFF;
  }
  #menu-btn {
    visibility: visible;
    opacity: 1;
    width: unset;
    height: unset;
  }
}

header nav a:hover {
  text-decoration: underline;
}

.container {
  background-color: #1a1a1a; /* Changed to dark */
  border-radius: 10px;
}

@media (max-width: 424px) {
  header nav ul {
    min-width: 200px;
  }
}

main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.card {
  background-color: #1e1e1e;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 8px;
  flex: 1 1 30%;
  max-width: 30%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.them:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card img {
  min-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  background-color: #1a1a1a; /* Changed to dark */
  color: #e0e0e0; /* Changed to light */
  padding: 10px;
  border-top: 1px solid #333; /* Changed to dark */
}

/* Responsive Design */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .card {
    max-width: 80vw;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  main {
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    align-items: center;
    margin-bottom: 20px;
  }
  .card {
    min-width: 80vw;
    padding: 20px;
    margin: 0 auto;
    border: 1px solid #007ACC;
  }
  img {
    max-width: 100%;
    max-height: 100%;
  }
  .cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .them {
    height: auto;
  }
  body {
    font-size: 16px;
  }
  .us {
    min-width: 100vw;
    height: 100px;
    align-self: center;
  }
  .cards {
    display: flex;
    width: 90vw;
    height: auto;
    gap: 20px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }
  .them {
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #007ACC;
  }
  main {
    flex-direction: column;
  }
  .card {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 20px;
  }
  main {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
  }
  .card {
    max-width: 40%;
  }
  .us {
    max-width: 100vw;
    max-width: 100vw;
  }
  img {
    max-width: 100%;
    max-height: 100%;
  }
}

.logo_name {
  font-size: xx-large;
  font-weight: 900;
  color: #FFFFFF; /* Changed to white */
  text-shadow: 1px 1px #0056b3;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

@keyframes logo_name_animation {
  0% {
    scale: 0;
    transform: rotate(-360deg);
  }
  100% {
    scale: 1;
  }
}

/* Global Styles */
.smoother {
  padding-top: 62px;
  padding-left: 20px;
  z-index: 1000000;
}

.line {
 width: 140px;
    height: 5px; 
    background-color: #005f99;
    animation-name: slide;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    z-index: 10000;
}

@keyframes slide {
  50% {
    transform: translateX(101vw);
  }
}

.hi {
  height: 100vh;
}

.us {
  color: #007ACC;
  border: transparent;
  background-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  text-transform: capitalize;
  margin-bottom: 20px;
}

#user {
  animation: none;
}

.username {
  color: #CCC; /* Changed to lighter gray */
  background-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  text-transform: capitalize;
}

/* Product Section Container */
.product-section {
 background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #1a1a1a, #3a3a3a);
  background-size: 200% 200%;
  animation: kgradientMove 8s ease-in-out infinite; background: #1a1a1a;
  padding: 4rem 2rem;
}

.product-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* Grid Layout for Products */
.products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 90vw;
  min-width: 90vw;
  margin: 0 auto;
}

/* Product Card Styles */
/* Staggered Animation Delays for a Sequential Reveal */
.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.5s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 50px rgba(0, 123, 255, 0.9);
}

/* Image Container to maintain aspect ratio */
.img-container {
  height: 54%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  background: transparent;
}

.img-container img {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  top: 0;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: #FFF;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.product-info p {
  font-size: 1rem;
  color: #CCC;
  line-height: 1.4;
  min-height: 3em;
}

.product-info button {
  margin-top: -20px;
  background: #007BFF;
  border: 2px solid #007BFF;
  color: #FFF;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.product-info button:hover {
  background: transparent;
  color: #007BFF;
}

/* Keyframes for FadeInUp Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.loading-dots div {
  width: 20px;
  height: 20px;
  background-color: #3498DB;
  border-radius: 50%;
  animation: bounce 1.5s infinite ease-in-out;
}

.loading-dots div:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots div:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Light Theme for Makgetse Learners Dashboard */
body {
  background-color: #000;
  color: #e0e0e0;
  font-family: 'Arial', sans-serif;
}

header {
  background-color: rgba(0,0,0,0.7);
  border-bottom: 2px solid #333; /* Changed to dark */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.card {
  background-color: #1e1e1e; /* Changed to dark */
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08);
}

footer {
  text-align: center;
  background-color: #1a1a1a; /* Changed to dark */
  padding: 10px;
  border-top: 2px solid #333; /* Changed to dark */
  font-size: 14px;
  color: #e0e0e0; /* Changed to light */
}

footer p {
  color: #e0e0e0; /* Changed to light */
}

/* Ensure the page takes up full viewport height */
body {
  overflow-x: hidden;
  width: 100vw;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000000000;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.9);
}

.loading-container .title {
  font-size: 5rem;
  color: #FFFFFF; /* Changed to white */
  font-weight: 900;
  display: flex;
  z-index: 1010;
}

@media (max-width: 400px) {
  .loading-container .title {
    font-size: 4rem;
  }
}

.loading-container .loader {
  border: 8px solid #CCC; /* Changed to light gray */
  border-top: 8px solid #3498DB;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 20px;
  margin-bottom: 10px;
  animation-delay: 1.5s;
  visibility: hidden;
  z-index: 1010;
}

#username_loader {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  margin: 5px;
  text-shadow: 1px 1px #0056b3;
  border-bottom: 1px solid #0056b3;
  padding: 3px;
  border-radius: 3px;
}

.checkbox-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10001;
  margin: 10px;
}

.hide_bx {
  opacity: 0;
  width: 0;
  height: 0;
}

.appear_bx {
  min-width: auto;
  width: auto;
  height: auto;
  opacity: 1;
}

.check-box {
  min-width: auto;
  padding: 0.25rem 0.75rem;
  border: 2px solid #3b82f6;
  display: flex;
  align-items: center;
  background-color: #1e293b;
  border-radius: 0.375rem;
  color: #93c5fd;
  font-size: 0.75rem;
}

.checked::before {
  content: '\2713';
  font-size: 0.9rem;
  color: #3b82f6;
  margin-right: 0.4rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    visibility: visible;
  }
  100% {
    transform: rotate(360deg);
    visibility: visible;
  }
}

.letter {
  opacity: 0;
  transform: translateY(-200%) scale(2) rotateX(90deg);
  animation: assemble 1.5s forwards;
  perspective: 1000px;
  z-index: 1010;
  text-shadow: 1px 1px #0056b3;
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }
.letter:nth-child(7) { animation-delay: 0.6s; }
.letter:nth-child(8) { animation-delay: 0.7s; }

@keyframes assemble {
  0% {
    opacity: 0;
    transform: translateY(-200%) scale(2) rotateX(90deg);
  }
  60% {
    opacity: 1;
    transform: translateY(20%) scale(1.1) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

.subtitle {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: transparent;
  text-shadow: 3px 3px #007ACC;
  animation: fadeIn 2s ease-in-out 1.5s forwards;
  opacity: 0;
  z-index: 1001;
  transition-property: all;
  transition-duration: 3s;
  transition-timing-function: ease-in-out;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, #000000, #3b82f6); /* Adjusted for dark theme */
  border-radius: 50%;
  opacity: 0.8;
  animation: trail 5s infinite ease-in-out;
}

@keyframes trail {
  0% {
    transform: translateY(100vh) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(50vh) scale(1.2) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh) scale(0.5) rotate(360deg);
    opacity: 0;
  }
}

.container22 .c1 p {
  margin: 0;
  font-size: 18px;
  text-align: center;
  color: #e0e0e0;
}

/* Container holding all prediction cards */
.container22 .c1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 10px;
  padding-top: 20px;
}

/* Each prediction card */
.tab_holder_1 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  margin-left: auto;
  margin-right: auto;
}

.container22 .c2 {
  position: relative;
  width: 250px;
  min-height: 300px;
  max-height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}

/* Dark overlay for readability */
.container22 .c2 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

/* Top content: heading and match info */
.container22 .c2 .content h2 {
  margin: 0;
  font-size: 1.5rem;
  font-size: medium;
}

.container22 .c2 .content .match {
  font-size: 1.2rem;
  margin-top: 8px;
  text-align: center;
  align-self: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Footer with buttons aligned horizontally */
.container22 .c2 .footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

/* Each button with its percentage and progress line */
.container22 .btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container22 .btn-wrapper button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  background: #00BCD4;
  color: #FFF;
  cursor: pointer;
  font-size: 1rem;
  margin: 1px;
}

.container22 .progress {
  width: 100%;
  margin-top: 5px;
}

.container22 .progress .percentage {
  font-size: 0.8rem;
  display: block;
  text-align: center;
  margin-bottom: 3px;
}

.container22 .progress-bar {
  height: 5px;
  background-color: #00BCD4;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .container22 .c2 {
    min-width: 40%;
    max-height: 200px;
  }
  .container22 .c2 .overlay {
    padding: 15px;
  }
  .container22 .btn-wrapper button {
    font-size: 0.5rem;
    padding: 4px 10px;
  }
}

@media (min-width: 1441px) {
  .container22 .c2 {
    min-width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .container22 .c2 {
    max-width: 40vw;
    max-height: 200px;
  }
  .container22 .c2 .overlay {
    padding: 15px;
  }
  .container22 .btn-wrapper button {
    font-size: 0.5rem;
    padding: 4px 10px;
  }
}

@media (max-width: 645px) {
  .container22 .c2 {
    width: 46%;
    max-height: 200px;
    margin-left: 0;
    margin-right: 0;
  }
  .container22 .c1 {
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .container22 .c2 .overlay {
    padding: 15px;
  }
  .container22 .btn-wrapper button {
    font-size: 0.5rem;
    padding: 4px 10px;
  }
}

@media (max-width: 500px) {
  .container22 .c2 {
    min-width: 90%;
  }
}

@media (max-width: 441px) {
  .container22 .c2 {
    max-width: 100%;
    min-width: 100%;
    max-height: 100px;
  }
}

@media (max-width: 339px) {
  .container22 .c2 {
    min-width: 100%;
    max-width: 100%;
    max-height: 100px;
  }
}

.container22 .winp, .container22 .btn-wrapper .bwin {
  background-color: rgba(0, 255, 0, 0.8);
}

.container22 .losep, .container22 .btn-wrapper .blose {
  background-color: rgba(0, 255, 0, 0.8);
}

.container22 .drawp, .container22 .btn-wrapper .bdraw {
  background-color: rgba(255, 255, 0, 1);
  color: #008000;
  font-weight: bold;
}

.container22 .t1_ {
  color: #F5F5F5; /* Changed smokewhite to hex */
}

.container22 .t2_ {
  color: #F5DEB3; /* Changed wheat to hex */
}

/* sdffs */
.container22 {
  width: 95%;
  margin: 0 auto;
  border: 1px solid #333; /* Changed to dark */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.header {
  display: flex;
  align-items: center;
  background: #1a1a1a; /* Changed to dark */
  border-bottom: 1px solid #333; /* Changed to dark */
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.header div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  cursor: pointer;
  border-right: 1px solid #333; /* Changed to dark */
  transition: background 0.3s;
  font-weight: bold;
}

.header div:last-child {
  border-right: none;
  border-top-right-radius: 8px;
}

.header div:first-child {
  border-top-left-radius: 8px;
}

.header div.active {
  background: #000;
  border-bottom: 3px solid #007BFF;
  color: #FFF;
}

.content {
  padding: 20px;
}

@media (max-width: 320px) {
  /* body {
    display: none;
  } */
}

.headu {
  color: #007ACC;
}

.pas {
  margin-top: 20px;
  color: #808080;
  font-size: small;
}

.active_, .active_:hover {
  color: #007ACC;
  text-decoration: none;
}

/* BTS services */
.container33 .container-bts {
  width: 450px;
  padding: 20px;
  height: 300px;
  /* border: 2px solid #007ACC; */
  border-radius: 40px;
  border-left-color: transparent;
  border-right-color: transparent;
  background-color: transparent; /* Changed to dark */
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.5);
}

.container33 .cap {
  margin-top: -30px;
  margin-bottom: 40px;
  font-size: xx-large;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #e0e0e0; /* Changed to light */
  font-weight: 600;
  text-align: center;
}

.container33 label {
  font-weight: bold;
  color: #e0e0e0; /* Changed to light */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: larger;
}

.container33 #input {
  height: 35px;
  padding: 0 25px;
  border: 2px solid #666; /* Changed to lighter */
  border-radius: 10px;
  background-color: transparent;
  color: #e0e0e0; /* Changed to light */
  font-family: sans-serif;
}

.container33 .form {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container33 button {
  width: 60px;
  margin-top: 30px;
  height: 40px;
  font-size: small;
  text-align: center;
  padding: 2px;
  background-color: #007ACC;
  color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  border-right-color: transparent;
  border-left-color: transparent;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
}

.container33 button:hover {
  background-color: #1E1E1E;
  color: #FFFFFF;
  border: 3px solid #282828;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

@media (max-width: 558px) {
  .header div {
    font-size: small;
  }
  .container33 .container-bts {
    height: auto;
    width: unset;
    width: 100%;
    padding: 20px;
  }
  .container33 .cap {
    font-size: larger;
    margin-top: 20px;
  }
  .container33 #input {
    width: 50%;
  }
}

@media (max-width: 358px) {
  .header div {
    font-size: smaller;
  }
  .container33 .container-bts {
    min-width: 80%;
    max-width: 80%;
  }
  .container33 .cap {
    font-size: small;
  }
  .container33 #input {
    width: 195px;
  }
}

@keyframes rotate {
  0% {
    border: 2px solid #007ACC;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    color: #e0e0e0; /* Changed to light */
  }
  50% {
    border: 2px solid #007ACC;
    border-left: 2px solid transparent;
    border-left: 2px solid transparent;
    color: #e0e0e0; /* Changed to light */
  }
  100% {
    border: 2px solid #007ACC;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    color: #e0e0e0; /* Changed to light */
  }
}

.container33 .out {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  height: auto;
  border: none;
  text-align: center;
}

.container33 .match_head {
  text-transform: capitalize;
  text-align: center;
  padding: 30px;
  font-family: Arial, Helvetica, sans-serif;
  color: #e0e0e0; /* Changed to light */
  font-weight: bold;
  text-decoration: underline;
  font-size: large;
}

.container33 .match {
  text-align: center;
  color: #007ACC;
  font-weight: 800;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 10px;
}

.container33 .match_container {
  border: 1px solid #666; /* Changed to lighter */
  padding: 10px;
  padding-right: 5px;
  padding-left: 5px;
}

.container33 .match_info {
  font-weight: 600;
  color: #CCC; /* Changed to lighter */
  font-family: "Times New Roman", Times, serif;
  max-width: 90%;
  font-size: small;
  text-align: center;
}

.container33 .flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 10px;
  width: auto;
  justify-content: center;
  align-items: center;
}

.container33 .holder {
  width: 100%;
}

.container33 .container-bts {
  margin: 0 auto;
}

.container33 .output {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 95%;
  overflow-x: hidden;
  padding: 20px;
  gap: 20px;
  color: #e0e0e0; /* Changed to light */
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container33 .results {
  width: 45%;
}

@media (max-width: 800px) {
  .container33 .flex {
    display: unset;
    flex-basis: unset;
    margin: unset;
    margin-left: auto;
    margin-right: auto;
    width: unset;
    justify-content: unset;
  }
  .container33 .results {
    width: 90%;
  }
}

.container33 .status_heading {
  margin-top: 80px;
  font-size: x-large;
  color: #e0e0e0; /* Changed to light */
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
}

.container33 .state {
  margin-top: 30px;
  color: #e0e0e0; /* Changed to light */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700px;
  text-decoration: underline;
  cursor: pointer;
}

.container33 #green {
  color: #008000;
}

.container33 #red {
  color: rgba(255, 0, 0);
}

.container33 #vs_info {
  color: #e0e0e0; /* Changed to light */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  padding: 10px;
  border-bottom: 1px solid #007ACC;
  justify-content: center;
}

.container33 .info_line {
  min-width: 40%;
  max-width: 40%;
  margin: 10px;
}

.container33 .chance_w {
  margin-top: 20px;
  width: 100%;
}

.container33 .selections {
  margin-bottom: -10px;
  display: flex;
  gap: 10px;
  padding-top: 20px;
}

.container33 .pr {
  font-weight: 700px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #e0e0e0; /* Changed to light */
  text-decoration: underline;
  cursor: pointer;
}

.green {
  color: #008000;
}

.red {
  color: #FF0000;
}

.container33 .time {
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #00BD3F;
  display: block;
  width: 100%;
  margin: 20px auto;
}

.container33 .t-and-info {
  border: 1px solid #666; /* Changed to lighter */
  padding: 40px;
  margin: 80px;
}
 .bluee{
    color: #0056B3
  }

@media (max-width: 706px) {
  .container33 #vs_info {
    padding: 1px;
    width: 100%;
  }
  .container33 .chance_w {
    padding: 10px;
    margin: 20px auto;
    border: 1px solid #666; /* Changed to lighter */
  }
  .container33 .POutcome{
    border: 1px solid #0056B3;
    padding:10px;
   

  }
  .bluee{
    color: #0056B3
  }
  .container33 .info_line {
    min-width: 45%;
    max-width: 45%;
    margin: 10px;
    max-width: 0%;
    padding: 1px 0;
    margin: 15px auto;
    font-size: 12px;
    border-color: none;
  }
  .container33 .t-and-info {
    margin-top: 30px;
    overflow-x: hidden;
    padding: 0;
    margin: 0 auto;
    border-color: transparent;
    border-width: 0.2px;
    border-bottom: 1px solid #008000;
    border-top: 1px solid #008000;
  }
}
@media (min-width: 706px) {
  .container33 #vs_info {
    padding: 1px;
    width: 100%;
  }
  .container33 .chance_w {
    padding: 10px;
    margin: 20px auto;
    border: 1px solid #666; /* Changed to lighter */
  }
  .container33 .POutcome{
    border: 1px solid #0056B3;
    padding:10px;
   

  }
  .bluee{
    color: #0056B3
  }
  .container33 .info_line {
    min-width: 45%;
    max-width: 45%;
    margin: 10px;
    max-width: 0%;
    padding: 1px 0;
    margin: 15px auto;
    font-size: 12px;
    border-color: none;
  }
  .container33 .t-and-info {
    margin-top: 30px;
    overflow-x: hidden;
    padding: 0;
    margin: 0 auto;
    border-color: transparent;
    border-width: 0.2px;
    border-bottom: 1px solid #008000;
    border-top: 1px solid #008000;
  }
}



@media (max-width: 558px) {
  .container33 {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container33 .container-bts {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .container33 .cap {
    font-size: larger;
    margin-top: 20px;
  }
  .container33 .status_heading {
    font-size: small;
  }
}

@media (max-width: 358px) {
  .container33 .cap {
    font-size: 15px;
    margin-top: 20px;
  }
  .container33 #input {
    width: 45%;
    font-size: small;
  }
  .container33 .container-bts {
    width: 80px;
  }
}

@media (max-width: 345px) {
  .container33 .status_heading {
    font-size: large;
  }
}

.container33 .Removebtn {
  color: transparent;
  background-color: transparent;
  border-color: transparent;
  visibility: hidden;
}

.container33 {
  padding-top: 20px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contentArea {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 40px;
  border-radius: 1px solid 8px;
}

/* ddd */
.container33 .progress-container {
  min-width: 50%;
  width: 70%;
  background-color: #000000;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 30px;
  border: 1px solid #007BFF;
}

.container33 .progress-bar {
  width: 50%;
  height: 100%;
  background-color: #3498DB;
  text-align: center;
  line-height: 30px;
  color: #FFF;
  font-weight: bold;
  transition: width 2s ease-in-out;
}

.container33 .progress-label {
  margin-top: 10px;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 20px;
  background-color: #000000;
  border-radius: 8px;
  max-width: 150px;
}

.hide {
  visibility: hidden;
  min-width: 0px;
  max-width: 0px;
  min-height: 0px;
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  transition-property: all;
  transition-duration: 2s;
  transition-timing-function: ease-in-out;
}
  .container33 #input {

    font-size: small;
  }

@media (max-width: 457px) {
  .header div {
    padding: 13px 6.57px;
    font-size: small;
  }
}

@media (max-width: 558px) {
  #contentArea {
    padding-top: 20px;
    border-radius: none;
  }
}

@media (max-width: 433px) {
  .header div {
    padding: 15px 2px;
    font-size: x-small;
  }
}

@media (max-width: 329px) {
  .header div {
    padding: 12px 2px;
    font-size: x-small;
  }
}

/* .shiningBG {
  background-image: url('../../sources/ball.png');
  background-blend-mode: lighten;
  background-color: rgba(0, 0, 0, 0.8);
  background-repeat: no-repeat;
  background-size: cover;
} */

/* @media (min-width: 950px) {
  .shiningBG {
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.2);
  }
} */

.not1 {
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-weight: bolder;
}

/* fdd */



 .st_and_ac {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin:20px 0;
        display: flex;
        flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: transparent;
      color: #f0f0f0;
      width:100%;
      transition: background-color 0.5s ease, color 0.5s ease;
     
    }
      .dark-mode22 {
      background-color: transparent;
      color: #f0f0f0;
    }
    .toggle-button {
      padding: 0.5rem 1rem;
      margin-bottom: 1rem;
      border: none;
      cursor: pointer;
      background-color: #333;
      color: white;
      border-radius: 4px;
      font-size: 1rem;
    }
     .st_and_ac canvas {
      
     
      max-height: 300px;

  
    }
    .st_and_ac #stats {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      text-align: center;
          color:#f0f0f0;
    }
    .st_and_ac h2 {
      text-align: center;
         color:#f0f0f0;
    }
  
.b_pd{
  display:flex;
  flex-wrap: wrap;
 
  margin: 10px auto;
  max-width:100%;
  min-width:100%;
  justify-content: center;
  align-items: center;
 
  height:auto;
  /* padding:10px; */
}

.acpd,.wpd{
  min-width:45%;
  max-width:45%;

}



/* Base styles for the main containers */
.lineg,
#gfl {
  margin: 0 auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Container card styling */
.lineg  {
  width: 90%;
  /* max-width: 700px; */
  min-height: 400px;
  margin: 1rem auto;
  box-sizing: border-box;
}

/* Chart container */
.lineg .chart-container  {
  position: relative;
  max-width: 630px;
   margin: 1rem auto;
  height: 90%;
  padding: 20px;
  box-sizing: border-box;
  margin-top: -10px;;
}
.lineg .chart-container  {
  position: relative;
  max-width: 550px;
   margin: 1rem auto;
  height: 90%;
  padding: 20px;
  box-sizing: border-box;
  margin-top: -10px;}
.acpd,.wpd  {
  position: relative;
  max-width: 550px;
   margin: 10px auto;
  height: 90%;
  /* padding: 20px; */
  box-sizing: border-box;

}

/* Canvas element filling its container */
.lineg canvas,.st_and_ac canvas  {
  width: 100% !important;
  height: 100% !important;
}

/* Theme toggle container */
.lineg .theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0;
  width:100%;

}

/* Toggle label */
.lineg .toggle-label {
  font-weight: bold;
}

/* Switch component styling */
.lineg .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  vertical-align: middle;
}

.lineg .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.lineg .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.lineg .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.lineg input:checked + .slider {
  background-color: #4A90E2;
}

.lineg input:checked + .slider:before {
  transform: translateX(26px);
}

/* Theme modes for the parent container */
#gfl.light-mode {
  background-color: #f9f9f9;
  color: #333;
}

#gfl.dark-mode {
  background-color: #1e1e1e;
  color: #eee;
}

#gfl {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* --- Responsive Adjustments --- */

/* For tablets and mid-sized devices */
@media (max-width: 768px) {
    .container22,#contentArea{
    border-radius: none;
  }
  .lineg {
    width: 95%;
    /* Let the container adjust its height if needed */
    min-height: auto;
    padding: 10px;
  }
  
  .lineg .chart-container,.acpd,.wpd   {
    padding: 10px;
  }
  
  /* Stack theme toggle items vertically & reduce gaps */
  .lineg .theme-toggle {
    flex-direction: column;
    gap: 5px;
    padding: 0 10px;
  }
  
  /* Optionally adjust the switch to be slightly smaller */
  .lineg .switch {
    width: 40px;
    height: 20px;
  }
  
  .lineg .slider:before {
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
  }
  
  .lineg input:checked + .slider:before {
    transform: translateX(20px);
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  .container22{
    border-radius: none;
  }
  .lineg {
    width: 100%;
  
    padding: 5px;
  }
  
  .lineg .chart-container{
    padding: 5px;
    min-height: 400px;
    max-height: 400px;
  }

  .st_and_ac canvas{
    min-height:300px;
    max-height:300px;

  }

  .wnp,.acpd{
    width: 95%;
    margin: 10 auto;
  }
  
  .lineg .theme-toggle {
    padding: 0 5px;
  }
}

/* Base Reset & Container Layout */
.ana2_s2 #bg {
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  background-color: transparent;
  padding: 1rem;
}

.ana2_s2 .container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

/* Fade-in animation */
.ana2_s2 .fade-in {
  opacity: 0;
  animation: fadeIn_ 0.6s ease forwards;
}

@keyframes fadeIn_ {
  to {
    opacity: 1;
  }
}

/* Custom styles for .c_1s cards */
.ana2_s2 .c_1s {
  background-color: transparent;
  border-left: 4px solid #3b82f6;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ana2_s2 .c_1s:hover {
  transform: scale(1.015);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Typography refinements */
.ana2_s2 .c_1s .text-sm {
  font-size: 0.75rem;
  color: #CCC; /* Changed to lighter for dark theme */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ana2_s2 .c_1s .text-lg {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ana2_s2 .c_1s .space-y-1 > p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: #e0e0e0; /* Changed to light */
}

/* Badge Styling */
.ana2_s2 .c_1s .badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #FFFFFF;
}

/* Example Badge Colors */
.ana2_s2 .badge-success {
  background-color: #10B981;
}

.ana2_s2 .badge-error {
  background-color: #EF4444;
}

.ana2_s2 .bg-green-50 {
  background-color: #1a1a1a; /* Changed to dark */
}

.ana2_s2 .bg-red-50 {
  background-color: #1a1a1a; /* Changed to dark */
}

.ana2_s2 .text-green-700 {
  color: #047857;
}

.ana2_s2 .text-red-700 {
  color: #B91C1C;
}

.ana2_s2 .bg-green-100 {
  background-color: #1e1e1e; /* Changed to dark */
}

.ana2_s2 .bg-red-100 {
  background-color: #1e1e1e; /* Changed to dark */
}

/* Padding */
.ana2_s2 .p-4 { padding: 1rem; }
.ana2_s2 .p-2 { padding: 0.5rem; }

/* Borders */
.ana2_s2 .border { border-width: 1px; }
.ana2_s2 .border-green-500 { border-color: #10B981; }
.ana2_s2 .border-red-500 { border-color: #EF4444; }

/* Flexbox */
.ana2_s2 .flex { display: flex; }
.ana2_s2 .items-center { align-items: center; }
.ana2_s2 .justify-between { justify-content: space-between; }

/* Rounded */
.ana2_s2 .rounded-md { border-radius: 0.375rem; }

/* Media Queries for fine-tuning if needed */
@media (max-width: 480px) {
  .ana2_s2 .container-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .ana2_s2 .c_1s {
    width: 90%;
  }
}

/* klmdfg */
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.container66 {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  font-family: 'Outfit', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  color: #e0e0e0; /* Changed to light */
  min-height: 200px;
  width: 100%;
}

.construction-box {
  background: transparent;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 90%;
  max-width: 420px;
  animation: fadeInUp 0.8s ease-out;
}

.construction-box svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  animation: float 2.5s ease-in-out infinite;
}

.message {
  font-size: 1.4rem;
  font-weight: 700;
  min-height: 40px;
  white-space: nowrap;
  border-right: 2px solid #3498DB;
  overflow: hidden;
  animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 480px) {
  .construction-box {
    padding: 24px 16px;
    width: 80%;
  }
  .construction-box svg {
    width: 64px;
    height: 64px;
  }
  .message {
    font-size: small;
  }
}

@media (max-width: 360px) {
  .message {
    font-size: small;
  }
}

.prediction_ {
  color: #00BD3F;
  opacity: 0.5;
}

#behave {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

#idt_show {
  padding: 10px;
  background-color: #0056B3;
  border: 1px solid #0056B3;
  color: #FFFFFF;
  font-weight: bold;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  max-height: 50px;
  width: 175px;
  text-align: center;
  margin-bottom: 30px;
}

#idt_show:hover {
  transform: scale(1.015);
  background-color: #0056FFAA;
  border: 2px solid #0056B3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#idt_hide {
  padding: 10px;
  background-color: rgba(26, 26, 26, 0.5); /* Changed to dark */
  border: 1px solid #666; /* Changed to lighter */
  color: #0056B3;
  font-weight: bold;
  cursor: pointer;
  max-height: 50px;
  width: 175px;
  text-align: center;
  margin: 20px;
  align-self: center;
  justify-self: center;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#idt_hide:hover {
  transform: scale(1.015);
  background-color: rgba(0, 123, 255, 0.3);
  border: 2px solid #0056B3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* styles to td info */
._move_2 {
  background: linear-gradient(230deg, #CCC, rgba(0, 0, 0, 0.3), #CCC);
  background-size: 400% 400%;
  transition: background 0.5s ease;
  animation: moveGradient 3s ease infinite;
}

._move_1 {
  background: linear-gradient(230deg, #CCC, rgba(255, 0, 0, 0.3), #CCC);
  background-size: 400% 400%;
  transition: background 0.5s ease;
  animation: moveGradient 3s ease infinite;
}

._move_ {
  background: linear-gradient(230deg, #CCC, rgba(0, 123, 255, 0.3), #CCC);
  background-size: 400% 400%;
  transition: background 0.5s ease;
  animation: moveGradient 3s ease infinite;
}

/* Keyframes to animate the gradient movement */
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.search-container {
  position: relative;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  transition: width 0.35s ease-in-out;
  border-radius: 50px;
  z-index: 2;
}

.search-container:focus-within {
  width: 400px;
}

/* Animated Gradient Border */
.search-container::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50px;
  background: linear-gradient(45deg, #6A11CB, #2575FC, #00D2FF, #6A11CB);
  background-size: 300% 300%;
  filter: blur(6px);
  opacity: 0.8;
  z-index: -1;
  animation: gradientShift 8s ease infinite;
}

.search-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a; /* Changed to dark */
  border-radius: 50px;
  z-index: -1;
}

/* Search Input Styles */
.search-input {
  width: 100%;
  padding: 15px 60px 15px 25px;
  font-size: 1.2rem;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 50px;
  color: #e0e0e0; /* Changed to light */
}

.search-input::placeholder {
  color: #A0A0A0;
  transition: color 0.3s ease;
}

.search-input:focus::placeholder {
  color: #888;
}

/* Search Icon Styles */
.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}

.search-container:focus-within .search-icon {
  color: #2575FC;
  transform: translateY(-50%) scale(1.1);
}

/* Suggestions List Styles */
.suggestions-list {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  background: #1a1a1a; /* Changed to dark */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  text-align: left;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.suggestions-list.visible {
  opacity: 1;
  transform: translateY(0);
}

.suggestions-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.suggestions-list li {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid #333; /* Changed to dark */
  font-size: 1rem;
  color: #e0e0e0; /* Changed to light */
  cursor: pointer;
  transition: background 0.2s ease;
}

.suggestions-list li:last-child {
  border-bottom: none;
}

.suggestions-list li:hover {
  background: #282828; /* Changed to dark */
}

/* Keyframe for Animated Gradient */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive adjustments for small screens */
@media (max-width: 480px) {
  .search-container {
    width: 280px;
  }
  .search-container:focus-within {
    width: 340px;
  }
  .search-input {
    font-size: 1rem;
    padding: 12px 50px 12px 20px;
  }
  .search-icon {
    font-size: 1.3rem;
    right: 15px;
  }
  .suggestions-list li {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
}

/* gjd,bgkdfhgbj */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out;
}

.live-score-container {
  background: #111;
  padding: 20px 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Styling for the "LIVE" label */
.live-label {
  font-size: 1rem;
  font-weight: bold;
  padding: 2px;
  background: linear-gradient(90deg, #000000, #000000);
  color: #FFFFFF;
  border-radius: 6px;
  margin-right: 20px;
  text-transform: uppercase;
  animation: glowPulse 1.5s ease-in-out infinite;
}

/* Styling for the score text */
.live-score {
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #000000, #FFFFFF, #000000);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}

/* Keyframes for glowing pulse on the LIVE badge */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 65, 108, 0.8), 0 0 20px rgba(255, 75, 43, 0.8);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 65, 108, 1), 0 0 30px rgba(255, 75, 43, 1);
  }
}

/* Keyframes for shifting gradient on the score text */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#country_img {
  display: inline;
}

/* kljfejgo */
/* Container */
.c1 .tab-container {
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #1a1a1a, #3a3a3a);
  background-size: 200% 200%;
  animation: kgradientMove 8s ease-in-out infinite;
 /* Changed to dark */
  border-radius: 12px;
  overflow: hidden;
}
@keyframes kgradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Tab Headers */
.c1 .tab-header {
  display: flex;
  border-bottom: 1px solid #333;
  color:#fff /* Changed to dark */
}

.c1 .tab-header div {
  flex: 1;
  text-align: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
}

/* Hover Effect for All Tabs */
.c1 .tab-header div:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Unique Styles for Each Tab When Active */
/* Live Tab: A pulsating glow when active */
.c1 .live-tab.active {
  background: linear-gradient(45deg, #C20E1D, #A0A0A0F3);
  color: #FFF;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Upcoming Tab: A smooth slide-in effect */
.c1 .upcoming-tab.active {
  background: linear-gradient(45deg, #007BFF, #A0A0A0F3);
  color: #FFF;
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Ended Tab: A gentle fade-in with refined elegance */
.c1 .ended-tab.active {
  background: linear-gradient(45deg, #8E9EAB, #282828); /* Adjusted for dark theme */
  color: #e0e0e0; /* Changed to light */
  animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* Tab Content Container */
.c1 .tab-content {
  min-height: 300px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-sizing: border-box;
}

/* Content Panels (displaying only the active one) */
.c1 .tab-content > div {
  display: none;
  animation: contentFade 0.5s ease-in-out;
  box-sizing: border-box;
}

.c1 .tab-content > div.active {
  display: block;
  box-sizing: border-box;
}

@keyframes contentFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Optionally add a stylish divider at the bottom of each tab header */
.c1 .tab-header div::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  box-sizing: border-box;
  width: 0;
  height: 3px;
  background: transparent;
  transition: width 0.3s ease, left 0.3s ease;
}

.c1 .tab-header div.active::after {
  width: 100%;
  box-sizing: border-box;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}

.losep_ {
  color: #5F0101;
}

.drawp_ {
  color: rgba(255, 255, 0);
  display: none;
}

.winp_ {
  color: rgba(0, 225, 0);
}

/* jkajsncijsk */
.loader88 {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 3px solid #FFF;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin88 0.8s linear infinite;
  margin-left: 0.4em;
}

@keyframes spin88 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* chat */
:root {
  --primary-blue: #007BFF;
  --dark-blue: #0056B3;
  --light-gray: #282828; /* Adjusted for dark theme */
  --shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#chat-bot {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  height: 420px;
  border: 1px solid #666; /* Changed to lighter */
  background-color: #1a1a1a; /* Changed to dark */
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  display: none;
  animation: fadeInbt 0.3s ease-in-out;
}

#chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background-color 0.3s, transform 0.3s;
}

#chat-icon:hover {
  background-color: var(--dark-blue);
  transform: scale(1.1);
}

#chat-header {
  background-color: var(--primary-blue);
  color: #FFF;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#close-button {
  background: none;
  border: none;
  color: #FFF;
  font-size: 16px;
  cursor: pointer;
}

#close-button:hover {
  color: #DDD;
}

#chat-messages {
  height: 320px;
  overflow-y: scroll;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.user-message {
  align-self: flex-end;
  background-color: var(--primary-blue);
  color: #FFF;
  padding: 8px;
  border-radius: 10px;
  margin: 5px 0;
  max-width: 80%;
  word-wrap: break-word;
}

.bot-message {
  align-self: flex-start;
  background-color: var(--light-gray);
  color: #e0e0e0; /* Changed to light */
  padding: 8px;
  border-radius: 10px;
  margin: 5px 0;
  max-width: 80%;
  word-wrap: break-word;
}

#user-input {
  width: 70%;
  padding: 10px;
  border: none;
  outline: none;
  border-top: 1px solid #666; /* Changed to lighter */
}

#send-button {
  width: 30%;
  padding: 10px;
  border: none;
  background-color: var(--primary-blue);
  color: #FFF;
  cursor: pointer;
  border-top: 1px solid #666; /* Changed to lighter */
}

#send-button:hover {
  background-color: var(--dark-blue);
}

@keyframes fadeInbt {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 640px) {
  #chat-bot {
    width: 90vw;
    right: 5vw;
    bottom: 70px;
  }
  #chat-icon {
    right: 5vw;
  }
}

/* lgjdogntf */
body {
  font-family: 'Inter', sans-serif;
  background: #000000; /* Changed to solid dark */
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.glass {
  /* background: rgba(26, 26, 26, 0.85);  */
  background: rgba(26, 26, 26, 0.85); /* Changed to dark */
  box-shadow: 0 4px 24px 0 rgba(56, 189, 248, 0.08), 0 1.5px 6px 0 rgba(31, 38, 135, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 16px;
  border: 1.5px solid rgba(102, 102, 102, 0.5); /* Changed to darker */
  transition: box-shadow 0.3s, border 0.3s;
}

.slip-card {
 min-width: 200px;
      max-width: 260px;
  padding: 1.1rem 1rem 0.9rem 1rem;
  margin: 0 auto;
  border-radius: 16px;
  border: 1.5px solid #666; /* Changed to darker */
  box-shadow: 0 2px 12px 0 rgba(56, 189, 248, 0.07), 0 1.5px 6px 0 rgba(31, 38, 135, 0.04);
  /* background: rgba(26, 26, 26, 0.95);
   */
   /* Changed to dark */
   background-color: 3fff;
  transition: box-shadow 0.3s, border 0.3s, transform 0.25s;
}

.slip-card:hover {
  box-shadow: 0 8px 32px 0 rgba(56, 189, 248, 0.13), 0 2px 8px 0 rgba(31, 38, 135, 0.08);
  border-color: #38BDF8;
  transform: translateY(-3px) scale(1.025);
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: #000000; /* Changed to solid dark */
  background-size: 200% 200%;
  animation: gradientMove 14s ease-in-out infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-slip {
  animation: slipIn 0.7s cubic-bezier(.4, 0, .2, 1);
}

@keyframes slipIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.tab-btn.active {
  color: #2563EB;
  font-weight: 700;
  position: relative;
}

.tab-btn.active::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #2563EB, #38BDF8);
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -6px;
  animation: underlineIn 0.4s cubic-bezier(.4, 0, .2, 1);
}

@keyframes underlineIn {
  from { width: 0; }
  to { width: 100%; }
}

.slip-header {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #e0e0e0; /* Changed to light */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #666; /* Changed to darker */
  padding-bottom: 0.3rem;
  margin-bottom: 0.2rem;
}

.slip-summary {
  border-top: 1px solid #666; /* Changed to darker */
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.98rem;
  color: #CCC; /* Changed to lighter */
}

.slip-state {
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.slip-state.won { color: #16A34A; animation: bounce 1.2s infinite alternate; }
.slip-state.lost { color: #DC2626; animation: pulse 1.2s infinite alternate; }
.slip-state.pending { color: #2563EB; animation: pulse 1.2s infinite alternate; }

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

@keyframes pulse {
  0% { opacity: 1; }
  100% { opacity: 0.7; }
}

.match-card {
  background: #1e1e1e; /* Changed to dark */
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.4rem;
  font-size: 0.97rem;
  color: #CCC; /* Changed to lighter */
  box-shadow: 0 1px 4px 0 rgba(56, 189, 248, 0.04);
  border: 1px solid #666; /* Changed to darker */
  transition: background 0.2s;
}

.match-card.won {
  background: #1a1a1a; /* Changed to dark */
  color: #166534;
  border-color: #BBF7D0;
}

.match-card.lost {
  background: #1a1a1a; /* Changed to dark */
  color: #B91C1C;
  border-color: #FECACA;
}

.match-card.live {
  background: #1a1a1a; /* Changed to dark */
  color: #1E40AF;
  border-color: #BAE6FD;
}

.match-status {
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
}

.match-status.won {
  background: #BBF7D0;
  color: #166534;
}

.match-status.lost {
  background: #FECACA;
  color: #B91C1C;
}

.match-status.live {
  background: #BAE6FD;
  color: #1E40AF;
  animation: pulse 1.2s infinite alternate;
}

 @media (max-width: 640px) {
      .slip-card { min-width: 92%; max-width: 92%; }
    }
    @media (max-width: 400px) {
      .slip-card { 
        margin: 0 20px;}
    }





:root {
    --background-color: #121212;
    --text-color: #ffffff;
    --tab-bg-color: #333333;
    --tab-text-color: #ffffff;
    --tab-active-bg-color: #555555;
    --tab-active-text-color: #ffffff;
    --tab-hover-bg-color: #444444;
    --tab-hover-text-color: #ffffff;
    --border-color: #444444;
    --row-even-bg: #222222;
    --row-odd-bg: #333333;
}


#tabs, #sub-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tab-button, .sub-tab-button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(145deg, #ffffff, #f1f3f5);
  border: 1px solid #dee2e6;
  border-radius: 999px;
  font-weight: 600;
  color: #212529;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.4s ease;
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}

.tab-button::before, .sub-tab-button::before {
  content: "";
  position: absolute;
  background: rgba(0, 123, 255, 0.1);
  width: 300%;
  height: 300%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
  transition: all 0.7s ease;
  border-radius: 50%;
  z-index: 0;
}

.tab-button:hover::before, .sub-tab-button:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 123, 255, 0.15);
}

.tab-button:hover {
  transform: scale(1.05);
  background: linear-gradient(to top right, #ffffff, #dee2e6);
  color: #007bff;
}
 .sub-tab-button:hover {
  transform: scale(0.6);
  background: linear-gradient(to top right, #111, #fff);
  color: #000;
}
.tab-button.active {
  background: linear-gradient(to bottom right, #000, #0b5ed7);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
  transform: scale(1.1);
}
.sub-tab-button.active {
  background: linear-gradient(to bottom right, rgba(0,255,255,0.1), #000);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
  transform: scale(0.6);
}
.sub-tab-button{
  transform: scale(0.55)

  
}

#wrapper, #tabs, #sub-tabs, #won-content, #lost-content, #win-lost-by-draw-content, #lost-win-content {
  transition: all 0.5s ease;
}







@media (max-width: 768px) {
  .tab-button, .sub-tab-button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
}

/* Fade transition for content */
#wrapper > div {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#wrapper > div[style*="display: block"] {
  opacity: 1;
  transform: scale(1);
}

/* Optional subtle entrance animation */
@keyframes slideInFade {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#wrapper > div[style*="display: block"] {
  animation: slideInFade 0.4s ease;
}










.theme-dark .tab-button {
    background: linear-gradient(45deg, #333333, #555555, #333333);
    background-size: 200% 200%;
    animation: gradientMove33 5s ease infinite;
}

@keyframes gradientMove33 {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.dttt{
  min-width: 120px;
}











.ligh-theme{
  --border-color: black;
  --border-top-color: #3498db;
  --logo-name-color: white

}

.container_test1{
  height:500px;
  width:500px;
  margin :20px auto;

  border: 1px solid white;
  position: relative;
  overflow: hidden;
  background-color: black;
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(255,255,255,0.3);

}


.loading-container11 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 111;

  margin: 0;
}

.loading-container11 .title11 {
  font-size: 5rem;
  color: #FFFFFF; /* Changed to white */
  font-weight: 900;
  display: flex;
  z-index: 1010;
}

@media (max-width: 400px) {
  .loading-container11 .title11 {
    font-size: 4rem;
  }
}

.loading-container11 .loader11 {
  border: 8px solid #CCC; /* Changed to light gray */
  border-top: 8px solid #3498DB;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin11 1s linear infinite;
  margin: 20px;
  margin-bottom: 10px;
  animation-delay: 1.5s;
  visibility: hidden;
  z-index: 1010;
}

#username_loader11 {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  margin: 5px;
  text-shadow: 1px 1px #0056b3;
  border-bottom: 1px solid #0056b3;
  padding: 3px;
  border-radius: 3px;
}

.checkbox-container11 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10001;
  margin: 10px;
}

.hide_bx11 {
  opacity: 0;
  width: 0;
  height: 0;
}

.appear_bx11 {
  min-width: auto;
  width: auto;
  height: auto;
  opacity: 1;
}

.check-box11 {
  min-width: auto;
  padding: 0.25rem 0.75rem;
  border: 2px solid #3b82f6;
  display: flex;
  align-items: center;
  background-color: #1e293b;
  border-radius: 0.375rem;
  color: #93c5fd;
  font-size: 0.75rem;
}

.checked11::before {
  content: '\2713';
  font-size: 0.9rem;
  color: #3b82f6;
  margin-right: 0.4rem;
}

@keyframes spin11 {
  0% {
    transform: rotate(0deg);
    visibility: visible;
  }
  100% {
    transform: rotate(360deg);
    visibility: visible;
  }
}

.letter11 {
  opacity: 0;
  transform: translateY(-200%) scale(2) rotateX(90deg);
  animation: assemble11 1.5s forwards;
  perspective: 1000px;
  z-index: 1010;
  text-shadow: 1px 1px #0056b3;
}

.letter11:nth-child(1) { animation-delay: 0s; }
.letter11:nth-child(2) { animation-delay: 0.1s; }
.letter11:nth-child(3) { animation-delay: 0.2s; }
.letter11:nth-child(4) { animation-delay: 0.3s; }
.letter11:nth-child(5) { animation-delay: 0.4s; }
.letter11:nth-child(6) { animation-delay: 0.5s; }
.letter11:nth-child(7) { animation-delay: 0.6s; }
.letter11:nth-child(8) { animation-delay: 0.7s; }

@keyframes assemble11 {
  0% {
    opacity: 0;
    transform: translateY(-200%) scale(2) rotateX(90deg);
  }
  60% {
    opacity: 1;
    transform: translateY(20%) scale(1.1) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

.subtitle11 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: transparent;
  text-shadow: 3px 3px #007ACC;
  animation: fadeIn11 2s ease-in-out 1.5s forwards;
  opacity: 0;
  z-index: 1001;
  transition-property: all;
  transition-duration: 3s;
  transition-timing-function: ease-in-out;
}

@keyframes fadeIn11 {
  to {
    opacity: 1;
  }
}

.particles11 {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle11 {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, #000000, #3b82f6); /* Adjusted for dark theme */
  border-radius: 50%;
  opacity: 0.8;
  animation: trail11 5s infinite ease-in-out;
 
}

@keyframes trail11 {
  0% {
    transform: translateY(100%) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(50%) scale(1.2) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-20%) scale(0.5) rotate(360deg);
    opacity: 0;
  }
}




.whitec{
  color:#fff;
}


 :root {
        --primary-blue: #007BFF;
        --accent: #00ffe7;
        --dark-blue: #0056B3;
        --light-gray: #222c38;
        --shadow: 0 4px 24px #007bff33;
        --background: linear-gradient(135deg, #0a0a23 0%, #23234a 100%);
        --btn-bg: rgba(0, 20, 40, 0.7);
        --btn-hover: #007BFF;
        --btn-text: #fff;
        --cir1: #00ffe7;
        --cir2: #007BFF;
        --cir3: #fff;
    }

.refresh-btn {
        background: var(--btn-bg);
        border: none;
        color: var(--btn-text);
        border-radius: 50%;
        box-shadow: var(--shadow);
        width: 64px;
        height: 64px;
        display: flex;
        transform: scale(0.7);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin: 10px auto;
        position: relative;
        padding: 0;
        text-align: center;
        font-size: 1.1em;
        font-weight: bold;
        letter-spacing: 1px;
        transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
        overflow: visible;
        outline: none;
        user-select: none;
        border: 2px solid var(--primary-blue);
        animation: popIn22 0.7s cubic-bezier(.68,-0.55,.27,1.55);
    }
    @keyframes popIn22 {
        0% { transform: scale(0.5); opacity: 0; }
        80% { transform: scale(1.1); opacity: 1; }
        100% { transform: scale(1); }
    }
    .refresh-active:hover, .refresh-active:focus {
        background: var(--btn-hover);
        color: var(--btn-text);
        box-shadow: 0 8px 24px var(--primary-blue, #007BFF);
        transform: scale(0.85) rotate(-2deg);
    }
    .refresh-btn span {
        z-index: 2;
        position: relative;
        font-size: 1.1em;
        font-weight: 700;
        text-shadow: 0 2px 8px #0002;
    }
    .cir, .cir2, .cir3 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        border-radius: 50%;
        pointer-events: none;
        transition: all 0.6s cubic-bezier(.68,-0.55,.27,1.55);
    }
    .cir {
        width: 100%;
        height: 100%;
        border: 2.5px solid var(--cir1);
        border-bottom-color: transparent;
        border-top-color: transparent;
        box-shadow: 0 0 16px var(--cir1);
        opacity: 0.7;
        z-index: 1;
    }
    .cir2 {
        width: 70%;
        height: 70%;
        border: 2px solid var(--cir2);
        border-right-color: transparent;
        border-left-color: transparent;
        opacity: 0.5;
        z-index: 1;
    }
    .cir3 {
        width: 48%;
        height: 48%;
        border: 2px dashed var(--cir3);
        border-top-color: transparent;
        border-bottom-color: transparent;
        opacity: 0.4;
        z-index: 1;
    }
     .refresh-active:hover .cir {
        transform: translate(-50%, -50%) rotate(360deg) scale(1.08);
        box-shadow: 0 0 32px var(--cir1);
    }
     .refresh-active:hover .cir2 {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-180deg) scale(1.1);
    }
     .refresh-active:hover .cir3 {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.15);
        opacity: 0.7;
    }
     .refresh-active:active {
        transform: scale(0.97) rotate(2deg);
        box-shadow: 0 2px 8px var(--primary-blue, #007BFF);
    }


.twns{
  color: rgba(0,255,0)
}
.tlss{
  color: rgba(255,0,0)
}

.tacs{
  color:#007BFF
}

@media (max-width: 699px) {
      .htables { 
       display:none}
    }



    
        
        .cont2{
          margin:0;
            padding:0;
            box-sizing:border-box;
            background-color: black;
       
            padding: 2px;
            
        }
        .cont{
            height: 80px;
            width: 200px;
            border: 1px solid white;
            border-radius: 4px;
            background-color: rgba(0,0,0,1);
            position: relative;
            padding:0;
            margin:0;
            box-sizing:border-box;

        }
        .cont .cheader{
          margin:0;
            padding:0;
            box-sizing:border-box;
            display: flex;
            height:20px;
            width:100%;
            border-bottom: 1px solid white;
            padding:2px;
            align-items: center;
            justify-content: center;
         

            
        }
        .cont .cheader img{
          display:inline-block;
        }
        .cont .cheader .lh{
            font-size: small;
            color:white;
            letter-spacing: 1px;
            margin: 0 auto;
             box-sizing:border-box;
             padding:0;

            
            /* font-weight: bold; */

        }
        .cont .cheader .rh{
          margin:0;
            padding:0;
            box-sizing:border-box;
            font-size:large;
            color: #ccc;
            margin:0;
            padding:0;
            box-sizing:border-box;
            margin-top: -5px;
            justify-self: flex-end;
            margin-left: auto;
            font-weight: lighter;
            cursor: pointer;
            text-shadow: 1px 1px 2px red;
             
             


        }
        .cont .body{
          margin:0;
            padding:0;
            box-sizing:border-box;
            text-shadow: 1px 1px 2px aqua;
            color:white;
            text-align: center;
            height:38px;
            display: flex;
            align-items: center;
            justify-content: center;
          

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

        }
        .cont footer{
        margin:0;
            padding:0;
            box-sizing:border-box;

            position: absolute;
            background-color: black;
            height:20px;
            width:100%;
            bottom: 0;
            display: flex;
            color:white;
            padding:2px;
            align-items: center;
            justify-content: center;

            border-top: 1px solid white;
        }
        .cont footer a{
          margin:0;
            padding:0;
            box-sizing:border-box;
            color:white;
            text-decoration: underline;
            font-weight: bold;



        }


        .cont2{
          
            transition-property: all;
            transition-duration: 2s;
            transition-timing-function: ease-in-out;
            opacity: 0.9;
            position: absolute;
            top:80px;
            right:0;
            transform: translateX(100%);
            
            
        
        }
        

        
    
