@import url("https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&family=Merriweather:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap");
:root {
  --ff-primary: Tangerine, cursive;
  --ff-secondary: Merriweather, serif;
  --fs-300: 0.875rem;
  --fs-400: 1rem;
  --fs-500: 1.25rem;
  --fs-600: 1.5rem;
  --fs-700: 2rem;
  --fs-800: 2.5rem;
  --fs-900: 3.5rem;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-bold: 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul:where([role=list]),
ol:where([role=list]) {
  list-style: none;
  margin: 0;
  padding: 0;
}

img,
picture {
  max-width: 100%;
  display: block;
}

body {
  margin: 0;
  padding: 0 0 70px;
  font-family: "Merriweather", serif;
  background-image: url("/assets/config_bg.jpg"); /* Replace 'background-image.jpg' with the path to your image */
  background-size: cover; /* Cover the entire viewport */
  background-position: center; /* Center the background image */
}

h1,
h2,
h3 {
  font-family: "Tangerine", cursive;
  line-height: 1.1;
}
h1.h1,
h2.h1,
h3.h1 {
  font-size: 3.5rem;
  font-weight: 700;
}
h1.h2,
h2.h2,
h3.h2 {
  font-size: 2.5rem;
  font-weight: 400;
}
h1.h3,
h2.h3,
h3.h3 {
  font-size: 2rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .button {
    padding: 20px 25px;
    font-size: 1.2rem;
  }
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

button {
  text-align: middle;
  margin-top: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 80px;
  padding-right: 80px;
  -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgba(255, 139, 253, 0);
  box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgba(255, 139, 253, 0);
  text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px, #FF2D95 0px 0px 20px, #FF2D95 0px 0px 30px, #FF2D95 0px 0px 40px, #FF2D95 0px 0px 50px, #FF2D95 0px 0px 75px;
  border: 3px double #FF4294;
  border-radius: 3px;
  color: #00004A;
  font-family: "Arial", sans-serif;
  font-size: 16px;
}
button:hover {
  background-color: #7b61ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}
button:active {
  background-color: #5642a6;
  transform: translateY(1px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .button {
    padding: 5px;
    font-size: 0.7rem;
    min-width: 80px;
  }
}
.test-type-button {
  padding: 8px 16px;
  border: 2px solid transparent;
  background-color: #ffffff;
  color: #007bff;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.test-type-button:hover {
  color: #000;
}
.test-type-button.active {
  color: #ffffff;
  background-image: linear-gradient(to right, #007bff, #6200ea);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.card {
  color: #333;
  margin: 1.5rem auto;
  width: 90%;
  max-width: 500px;
  min-height: 200px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Increased shadow */
  background-color: #fff;
  overflow: hidden;
  animation: slideInFromTop 0.5s ease-out forwards;
}
.card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}
.card-body {
  padding: 2rem;
}
.card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #b30000;
}
.card-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4d4d4d;
}
.card-image {
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0 0;
}

.card-title .translate-button,
.card-text .translate-button {
  padding: 1rem;
  font-size: 1rem;
  color: #b30000;
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  transform: translateY(-50%);
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .action-buttons {
    margin-top: 0.5rem;
  }
  .action-buttons button {
    padding: 0.5rem 0rem;
    font-size: 0.8rem;
  }
}

.footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #e7e7e7;
}

.header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #f8f9fa;
}

.navigation {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
.navigation nav {
  background: linear-gradient(to right, #7F25FD, #FF86A1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: auto;
}
.navigation nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}
.navigation nav a:hover {
  color: #b2dfdb;
}
@media (max-width: 768px) {
  .navigation nav {
    padding: 1rem;
  }
  .navigation nav a {
    font-size: 0.8rem;
    margin: 0 5px;
  }
}

.main-menu {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 500;
  color: #EE82EE;
}
.main-menu .burger-menu {
  z-index: 999;
  cursor: pointer;
  padding: 0.8rem;
  font-size: 24px;
  background-color: #D147A3;
  color: white;
  border: 2px solid #B53591;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10px;
  right: 10px;
}
.main-menu .main-menu .active .burger-menu {
  transform: rotate(90deg);
  transition: transform 0.5s ease;
}
.main-menu .menu-items {
  transform: translateX(100%);
  transition: transform 0.5s ease;
  will-change: transform;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background-color: #E1D3F2;
  box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 60px;
}
.main-menu .menu-items a {
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  width: 100%;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.main-menu .menu-items a:hover {
  background-color: #CA5BA6;
  color: #FFF;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.main-menu .menu-items.active {
  animation: slideFadeInRight 0.5s ease-in-out forwards;
}
.main-menu .menu-items.inactive {
  animation: slideFadeOutRight 0.5s ease-in-out forwards;
}
@media (max-width: 768px) {
  .main-menu .menu-items {
    width: 200px;
  }
  .main-menu .burger-menu {
    width: 40px;
    height: 30px;
  }
  .main-menu .burger-menu .burger {
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
}

@keyframes slideFadeInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideFadeOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes glowingBorder {
  0% {
    box-shadow: 0 0 5px #ff5f6d;
  }
  50% {
    box-shadow: 0 0 20px #ffc371;
  }
  100% {
    box-shadow: 0 0 5px #ff5f6d;
  }
}
.progress-container {
  width: 100%;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
}

.fire-gradient-progress-bar .progress-bar, .progress-bar {
  height: 20px;
  line-height: 20px;
  color: black; /* Ensuring text color is white */
  text-align: center;
  transition: width 0.4s ease;
  border-radius: 8px;
  animation: intenseMoveGradient 3s linear infinite, glowingBorder 3s infinite alternate;
}

.fire-gradient-progress-bar .progress-bar {
  background: linear-gradient(90deg, #ff0000, #ff7f00, #ffbf00, #ffff00);
  background-size: 200% 100%;
}

.progress-bar {
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  background-size: 200% 100%;
  position: relative;
  z-index: 10;
}

.wallet {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wallet label {
  margin-right: 5px;
}
.wallet input {
  flex-grow: 1;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-image: linear-gradient(to right, #8e9bcc, #cc65ce); /* Gradient background */
  color: white;
  transition: border-color 0.3s, background-image 0.3s; /* Add transition effects */
}
.wallet input:focus {
  border-color: #5f72bd; /* Adjust border color on focus */
}
.wallet input:hover {
  background-image: linear-gradient(to right, #cc65ce, #8e9bcc); /* Change gradient on hover */
}
.wallet button {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  background-image: linear-gradient(to right, #ff8a00, #e52e71); /* Gradient background */
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
.wallet button:hover {
  background-image: linear-gradient(to right, #e52e71, #ff8a00); /* Gradient background on hover */
}

.select-language {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: white;
  cursor: pointer;
  width: auto;
  display: block;
  margin: 1rem 1rem;
}

.language-flags span {
  margin-right: 0.5rem;
  display: inline-block;
}

.slide-show {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 100000001;
}
@media (max-width: 768px) {
  .slide-show {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
  }
}
.slide-show img {
  width: 100%;
  height: auto;
}
.slide-show button {
  margin: 10px;
  padding: 8px 16px;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
.slide-show button:hover {
  background-color: #0062cc;
}

.dots {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}
.dots .dot.active, .dots .dot.viewed {
  background-color: #007bff;
}

.telegram-link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0088cc;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s;
  z-index: 1000;
}
.telegram-link:hover {
  background-color: #0077b5;
}
.telegram-link::before {
  content: "\f2c6";
  font-family: "Font Awesome 5 Brands";
  margin-right: 10px;
}

.telegram-link a {
  color: white;
  text-decoration: none;
}

.test-chart svg rect {
  fill-opacity: 0.5;
}

.test-results {
  margin: 1rem;
  overflow-x: auto;
  color: #6200ea;
}
.test-results .correct-answer {
  background-color: #d4edda;
  color: #4caf50;
}
.test-results .incorrect-answer {
  background-color: #f8d7da;
  color: #721c24;
}
@media (max-width: 768px) {
  .test-results {
    padding: 0 10px;
  }
}

.test-statistics {
  padding: 2rem;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  width: 80%;
  max-width: 1000px;
  opacity: 0.9;
}
.test-statistics h2 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.test-statistics p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.test-statistics .chart-container {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
}
.test-statistics h3 {
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.test-statistics ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}
.test-statistics ul li {
  background-color: #fff;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
}
.test-statistics ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .test-statistics {
    width: 95%;
    padding: 1rem;
  }
  .test-statistics h2, .test-statistics p, .test-statistics h3 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .test-statistics .chart-container {
    margin: 1rem auto;
  }
  .test-statistics ul li {
    flex-direction: column;
    text-align: center;
  }
}
.typeselector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .typeselector .button-group button {
    padding: 6px 10px;
    font-size: 14px;
    min-width: 60px;
  }
}
.pro-version-container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}
.pro-version-container .coming-soon {
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .pro-version-container {
    padding: 1rem;
  }
  .pro-version-container h1 {
    font-size: 2rem;
  }
  .pro-version-container p {
    font-size: 0.875rem;
  }
  .pro-version-container button {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  .pro-version-container .coming-soon {
    padding: 0.5rem;
  }
  .pro-version-container .coming-soon h2 {
    font-size: 1.5rem;
  }
}
/* About Page Styles */
.about-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fafafa;
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2), 0 0 80px rgba(0, 0, 0, 0.1), 0 0 120px rgba(0, 0, 0, 0.05);
  position: relative;
  background-clip: padding-box;
  border-image: linear-gradient(to right, #8a2be2, #9932cc, #9400d3, #800080) 1; /* Gradient border */
}

.about-page::before, .about-page::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  border-radius: 20px;
  z-index: -1;
}

.about-page::after {
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.about-page:hover {
  background-color: #f0f0f0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2), 0 0 80px rgba(0, 0, 0, 0.1), 0 0 120px rgba(0, 0, 0, 0.05), 0 0 160px rgba(138, 43, 226, 0.5); /* Gradient shadow */
}

.about-page:hover p {
  color: #666;
}

h1 {
  color: #333;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul {
  list-style: inside square;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

strong {
  color: #004d40;
}

.config-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/config_bg.jpg"); /* Replace with your background image URL */
  background-size: cover;
  z-index: -1; /* Send the background behind other content */
}

.fluffy-ball {
  width: 100px; /* Adjusted size */
  height: 100px; /* Adjusted size */
  background: radial-gradient(circle at center, #FCCDD3 0%, #F9A9BC 70%, #F583A7 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Fixed relative to the viewport */
  bottom: 100px; /* Adjust based on your navigation's height */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), inset 0 4px 4px rgba(255, 255, 255, 0.2), inset 0 -3px 3px rgba(0, 0, 0, 0.1); /* Bottom inner shadow */
  z-index: 101; /* Ensure it's above the navigation bar */
  /* Ensure the hair is visible outside the ball */
  overflow: visible;
}

@keyframes rollEyes {
  0% {
    transform: translateX(-40%) translateY(-10%);
  }
  25% {
    transform: translateX(-30%) translateY(-15%);
  }
  50% {
    transform: translateX(-40%) translateY(-25%);
  }
  75% {
    transform: translateX(-50%) translateY(-15%);
  }
  100% {
    transform: translateX(-40%) translateY(-10%);
  }
}
/* Style for the cat mouth's center downturned arc */
.fluffy-ball::after {
  content: "";
  position: absolute;
  bottom: 15px; /* Position slightly above the side arcs to create the downturn */
  left: 50%;
  width: 3px; /* Smaller width for the downturned arc */
  height: 5px; /* Smaller height for the downturned arc */
  background-color: #000;
  border-radius: 10px/5px; /* More circular arc */
  transform: translateX(-50%) rotate(180deg); /* Rotate to create the downturn */
  z-index: 102; /* Above the fur but below the eyes */
}

.eye {
  width: 30px;
  height: 30px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 35%;
}

.left-eye {
  left: 10px;
}

.right-eye {
  right: 10px;
}

.eye::before {
  content: "";
  position: absolute;
  width: 25px; /* Making the pupil almost as large as the eye */
  height: 25px; /* Making the pupil almost as large as the eye */
  background-color: #000;
  border-radius: 50%;
  top: 0; /* Adjust the pupil to the top */
  left: 50%;
  transform: translateX(-50%) translateY(-10%);
  animation: rollEyes 5s infinite; /* Apply the animation here */
}

.eye::after {
  content: "";
  position: absolute;
  width: 5px; /* Adjusting the sparkle size */
  height: 5px; /* Adjusting the sparkle size */
  background-color: #FFF;
  border-radius: 50%;
  top: 15%; /* Adjust based on the pupil's new position to look upwards */
  left: 60%; /* Adjusting the sparkle position to be within the pupil */
}

/* Config Page Styles */
.config-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2), 0 0 80px rgba(0, 0, 0, 0.1), 0 0 120px rgba(0, 0, 0, 0.05);
  position: relative;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.config-page h1 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.config-page > * {
  margin-bottom: 1rem;
}

/* History Page Styles */
.history-page {
  position: relative;
  overflow: hidden; /* Hide overflow to prevent background image from sticking out */
}

.history-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/map_bg.jpg"); /* Replace with your background image URL */
  background-size: cover;
  filter: blur(8px); /* Add blur effect to the background */
  z-index: -1; /* Send the background behind other content */
}

.content {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px; /* Maintain rounded corners for the background */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
  padding: 20px;
  color: #666; /* Soft color for readability */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05); /* Very subtle text shadow for softness */
}

/* Add gradient shadow effect */
.content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)); /* Adjust gradient colors as needed */
  z-index: -1;
  border-radius: 8px;
}

/* Example: Special button or link styling */
a.special, button.special {
  background-color: #FFAACC; /* Example: Soft pink background */
  color: white;
  border-radius: 20px; /* More pronounced rounded edges */
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-shadow: none; /* Clear text shadow for legibility */
  transition: all 0.3s ease;
}

a.special:hover, button.special:hover {
  background-color: #FF88C2; /* Slightly darker pink on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* History Page Styles */
.history-page {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "Varela Round", Arial, Helvetica, sans-serif;
}
.history-page .history-page h1, .history-page .history-page h2 {
  font-family: "Varela Round", Arial, Helvetica, sans-serif;
  color: #FF88C2; /* Example pastel pink */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  letter-spacing: 0.5px; /* Slightly more space between letters */
}
.history-page h1 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.history-page p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
.history-page h2 {
  color: #444;
  margin-top: 30px;
  margin-bottom: 10px;
}
.history-page ul {
  list-style: none;
  padding: 0;
}
.history-page li {
  background-color: #eee;
  margin-bottom: 5px;
  padding: 10px;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.history-page li:hover {
  background-color: #e0e0e0;
}
.history-page .gradient-background {
  background: linear-gradient(90deg, rgb(255, 175, 189) 0%, rgb(255, 195, 160) 100%);
  color: white;
  padding: 10px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .history-page {
    margin: 10px;
    padding: 15px;
  }
}

.history-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.history-entry:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.history-entry ul {
  flex: 1;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  list-style-type: none;
}
.history-entry li {
  padding: 0.5rem 1rem;
  text-align: center;
}
.history-entry_type, .history-entry_result, .history-entry_date {
  font-weight: bold;
  color: #0056b3;
}
.history-entry_result {
  color: #28a745;
}
.history-entry_date {
  color: #6c757d;
}
.history-entry a {
  color: inherit;
  text-decoration: none;
}
.history-entry_mint {
  padding: 0.5rem 1rem;
  text-align: right;
}

.language-page {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.language-page h1 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 2rem;
}
.language-page p,
.language-page select,
.language-page div {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #333;
}
.language-page select {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: white;
  cursor: pointer;
  width: auto;
  display: block;
  margin: 1rem auto;
}
@media (max-width: 768px) {
  .language-page {
    padding: 1rem;
    margin: 1rem;
  }
  .language-page h1 {
    font-size: 1.5rem;
  }
  .language-page p,
  .language-page select,
  .language-page div {
    font-size: 1rem;
  }
}

/* leaderboard.scss */
.leaderboard-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #ffd700;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2), 0 0 80px rgba(0, 0, 0, 0.1), 0 0 120px rgba(0, 0, 0, 0.05), 0 0 160px rgba(255, 215, 0, 0.5), 0 0 200px rgba(255, 215, 0, 0.3);
}

.leaderboard-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/leaderboard_bg.jpg");
  background-size: cover;
  filter: blur(8px);
  z-index: -1;
}

.leaderboard-page h1 {
  color: #000000;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
  animation: glow 2s infinite alternate;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.leaderboard-page ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.leaderboard-page li {
  color: #333333;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(to bottom, #ffd700, #ffab00);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.leaderboard-page li:hover {
  transform: translateY(-3px);
}

/* Profile Page Styles */
.profile-page {
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fafafa;
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2), 0 0 80px rgba(0, 0, 0, 0.1), 0 0 120px rgba(0, 0, 0, 0.05);
  position: relative;
  background-clip: padding-box;
  border-image: linear-gradient(to right, #8a2be2, #9932cc, #9400d3, #800080) 1; /* Gradient border */
}

.profile-page::before, .profile-page::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  border-radius: 20px;
  z-index: -1;
}

.profile-page::after {
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.profile-page:hover {
  background-color: #f0f0f0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2), 0 0 80px rgba(0, 0, 0, 0.1), 0 0 120px rgba(0, 0, 0, 0.05), 0 0 160px rgba(138, 43, 226, 0.5); /* Gradient shadow */
}

.profile-page:hover p {
  color: #666;
}

h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

label {
  color: #333;
}

input[type=text] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.profile-page button {
  padding: 0.5rem 1rem;
  background-color: #8a2be2;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.profile-page button:hover {
  background-color: #9932cc;
  border-radius: 20px;
}

.profile-page {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.profile-page h2 {
  color: #007bff;
  margin-bottom: 24px;
}
.profile-page input[type=text] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.profile-page button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.profile-page button:hover {
  background-color: #0056b3;
}
.profile-page .notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: #4caf50;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease, top 0.3s ease;
  pointer-events: none;
}
.profile-page .notification.show {
  opacity: 1;
  top: 30px;
}

.results-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.results-page h1 {
  color: #333;
  margin-bottom: 24px;
}
.results-page p,
.results-page .verified,
.results-page .share-url-input,
.results-page button {
  margin-bottom: 16px;
}
.results-page button {
  padding: 10px 20px;
  background-color: #6200ea;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}
.results-page button:hover {
  background-color: #7b61ff;
}
.results-page button:active {
  background-color: #5642a6;
}
@media (max-width: 768px) {
  .results-page {
    padding: 10px;
    margin: 20px;
  }
  .results-page .share-url-input,
  .results-page button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.verified {
  font-size: 18px;
  color: #4caf50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.share-url-input {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f7f7f7;
  color: #333;
}

.congratulations-container {
  margin: 2rem;
  padding: 1rem;
  background-color: #f0f4c3;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.congratulations-container h2 {
  color: #388e3c;
  margin-bottom: 15px;
}
.congratulations-container p {
  color: #666;
  line-height: 1.6;
}
.congratulations-container button {
  padding: 10px 20px;
  background-color: #6200ea;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}
.congratulations-container button:hover {
  background-color: #7b61ff;
}
.congratulations-container button:active {
  background-color: #5642a6;
}

.fun-message {
  font-style: italic;
  color: #888;
  margin-top: 20px;
}

.player-input-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.player-input-container input[type=text] {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.2s ease-in-out;
}
.player-input-container input[type=text]:focus {
  outline: none;
  border-color: #6200ea;
}

.verified-icon {
  color: #4caf50;
}

.share-results-btn {
  padding: 10px 20px;
  background-color: #6200ea;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}
.share-results-btn:hover {
  background-color: #7b61ff;
}
.share-results-btn:active {
  background-color: #5642a6;
}

.try-again {
  margin-top: 2rem;
  text-align: center;
}
.try-again a {
  padding: 10px 20px;
  background-color: #6200ea;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
  text-decoration: none;
  font-weight: bold;
}
.try-again a:hover {
  background-color: #7b61ff;
}
.try-again a:active {
  background-color: #5642a6;
}
.try-again a:hover {
  background-color: #7b61ff;
}

.copied-message {
  margin-top: 10px;
  color: #4caf50;
  font-size: 14px;
}

.certificate {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  border: 2px solid #007bff;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.certificate h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #007bff;
  text-decoration: underline;
}
.certificate p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #333;
}
.certificate p:last-child {
  font-style: italic;
  margin-top: 2rem;
  color: #666;
}
.certificate a {
  color: #0654ba;
  text-decoration: none;
}
.certificate a:hover {
  text-decoration: underline;
}

.certificate-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Survey Page Styles */
.survey-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fafafa;
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2), 0 0 80px rgba(0, 0, 0, 0.1), 0 0 120px rgba(0, 0, 0, 0.05);
  position: relative;
  background-clip: padding-box;
  border-image: linear-gradient(to right, #8a2be2, #9932cc, #9400d3, #800080) 1; /* Gradient border */
}
