/* ==================================================
   Global CSS Variables (Theme Colors)
   ================================================== */
:root {
  /* Overriding Water’s variables so they match your desired colors */

  /* Background Colors */
  --background-body: #FFFFFF;		/* Main background color */
  --background-alt: #0F89BC;		/* Header & footer background */

  /* Text Colors */
  --text-main: #1A2332;             /* Main text color */
  --links: #1A2332;                 /* Navigation/menu text color */
  --text-on-alt: #000000;          /* Text on --background-alt sections (header, footer, TOC, tables, reviews, contacts) */

  /* Button Colors */
  --button-base: #44FEFF;           /* Primary button background (if needed) */
  --button-hover: #44FEFF;          /* Button hover background */

  /* Additional variables you used */
  --login-btn-bg: #1E3A5F;          /* Login button background */
  --login-btn-color: #FFFFFF;       /* Login button text color */
  --login-btn-border: 1px solid #44FEFF;         /* Login button border (e.g. 2px solid #fff) */
  --registr-btn-gradient: linear-gradient(270deg, #44FEFF 100%, #2563EB 0%);
  --registr-btn-color: #FFFFFF;     /* Registr button text color */
  --main-btn-gradient: linear-gradient(270deg, #44FEFF 100%, #2563EB 0%);
  --main-btn-color: #FFFFFF;        /* Main button text color */

  /* Transitions */
  --transition-speed: 0.3s;

  /* Theme-adaptive Colors (change these for light themes) */
  --text-muted: rgba(0, 0, 0, 0.5);    /* Subdued text (review count, dates) */
  --text-accent: #1D4ED8;                     /* Accent text (breadcrumb active, TOC arrows) */
  --border-color: rgba(0, 0, 0, 0.12);  /* Input/card borders */
  --border-accent: #2563EB;                   /* TOC toggle, focus rings */
  --card-bg: rgba(37, 99, 235, 0.05);          /* TOC inner, overlay backgrounds */
  --card-shadow: 0 4px 20px rgba(0,0,0,0.06); /* Card box-shadows */
  --star-empty: #BDD4EC;                         /* Empty star color */

  /* Table Wrapper Styles */
  --table-scrollbar-color: #60A5FA;
  --table-scrollbar-hover: #2563EB;
}

/* ==================================================
   Global Reset & Base Styles
   ================================================== */
html {
  max-width: 100vw;
  overflow-x: hidden;
}

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

body {
  /* Now referencing the Water variables so your colors show up */
  background: var(--background-body);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1 {
  margin-top: 80px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

p {
  margin: 10px 0;
}

img[src*="gioco-responsabile"] { margin-top: 15px; }
img[src*="spielsuchthilfe"] { margin-top: 10px; }

/* ==================================================
   Table Styles - Override Water.css
   ================================================== */

/* Default table styles (unchanged from original) */
table {
    border-collapse: collapse !important;
    width: 100% !important;
    margin: 50px auto !important;
    background: var(--background-alt) !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

th {
    background: var(--registr-btn-gradient) !important;
    color: var(--registr-btn-color) !important;
    font-weight: 600 !important;
    padding: 12px 15px !important;
    text-align: left !important;
    border-bottom: 2px solid var(--table-border) !important;
    border-right: 1px solid var(--table-border-light) !important;
}

td {
    padding: 12px 15px !important;
    border-bottom: 1px solid var(--table-border-light) !important;
    border-right: 1px solid var(--table-border-light) !important;
    color: var(--text-on-alt) !important;
    background: transparent !important;
}

/* Override water's alternating row colors */
tbody tr:nth-child(2n) {
    background: var(--table-row-even) !important;
}

tbody tr:hover {
    background: var(--table-row-hover) !important;
    transition: background var(--transition-speed) !important;
}

/* ===== Only for tables with .c-268c2a ===== */
.c-268c2a {
    overflow-x: auto;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.c-268c2a table {
    border-collapse: collapse !important;
    width: 100% !important;
    margin: 0 !important;
    background: var(--background-alt) !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none !important;
    min-width: 1000px;
    font-size: 16px !important;
}

.c-268c2a th {
    font-size: 16px !important;
}

.c-268c2a td {
    font-size: 16px !important;
}

.c-268c2a::-webkit-scrollbar {
    height: 8px;
}

.c-268c2a::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.c-268c2a::-webkit-scrollbar-thumb {
    background: var(--table-scrollbar-color);
    border-radius: 4px;
}

.c-268c2a::-webkit-scrollbar-thumb:hover {
    background: var(--table-scrollbar-hover);
}

/* ==================================================
   HEADER – Desktop and Mobile
   ================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background-alt);
  z-index: 1000;
  /* Default header height for desktop */
  height: 66px;
  padding: 0 20px;
}

/* The checkbox and burger are now direct children of header */
.c-19ef91 {
  display: none;
}

/* Burger Icon */
.c-16ffb5 {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: var(--login-btn-bg);
  padding: 8px;
  gap: 8px;
  border-radius: 6px;
  /* Position the burger in the top right corner */
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.c-16ffb5 span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--login-btn-color);
  border-radius: 2px;
  transition: transform var(--transition-speed), opacity var(--transition-speed);
}

/* Header Inner – contains logo, desktop nav, header-buttons */
.c-c617eb {
  max-width: 1310px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Extra right padding so that the burger (absolutely positioned) does not overlap content */
  padding-right: 80px;
}

/* Logo */
.c-20363f img {
  max-height: 50px;
  width: auto;
}

/* Main Navigation – Desktop (centered) */
.c-7d3be2 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-7d3be2 ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.c-7d3be2 ul li a {
  color: var(--links);
  font-weight: 600;
  transition: color var(--transition-speed);
}

.c-7d3be2 ul li a:hover {
  text-decoration: underline;
}

/* Header Buttons (desktop) */
.c-85b997 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-85b997 a {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--transition-speed);
  white-space: nowrap;
}

.c-56c1a4 {
  background: var(--login-btn-bg);
  color: var(--login-btn-color);
  border: var(--login-btn-border, none);
}

.c-56c1a4:hover {
  opacity: 0.9;
}

.c-6aabbe {
  background: var(--registr-btn-gradient);
  color: var(--registr-btn-color);
  padding: 12px 24px;       /* Increased vertical/horizontal padding */
  font-size: 18px;          /* Larger font size */
  font-weight: 600;
  border-radius: 8px;       /* Slightly larger border radius */
  text-transform: uppercase;
  animation: pulse-main 2s infinite;
  transition: background var(--transition-speed);
}

.c-6aabbe:hover {
  background: var(--button-hover);
}

/* Pulse Animation for buttons (registr-btn & main-button) */
@keyframes pulse-main {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--button-base);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 4px 24px 0 var(--button-hover);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 transparent;
  }
}

/* ==================================================
   Mobile & Tablet Styles (max-width: 1023px)
   ================================================== */
@media (max-width: 1023px) {
  /* Reduce header inner right padding */
  .c-c617eb {
    justify-content: space-between;
    padding-right: 40px; /* reserves room for the absolutely-positioned burger */
  }
  .c-20363f img { margin-left: -12px; } /* pull logo flush left — SVG has built-in left whitespace */
  /* Hide desktop navigation */
  .c-7d3be2 {
    display: none;
  }
  /* Show burger icon */
  .c-16ffb5 {
    display: flex;
	right: 10px;
  }
  /* Mobile Navigation Curtain */
  .c-91b9ee {
    display: none;
    position: fixed;
    top: 0;             /* Cover full viewport height */
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--background-alt);
    flex-direction: column;
    padding-top: 60px;  /* Leave room for the close button */
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .c-91b9ee ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .c-91b9ee ul li {
    border-bottom: 1px solid var(--border-color);
  }
  /* Increase menu item text and padding */
  .c-91b9ee ul li a {
    padding: 18px 20px;
    font-size: 18px;
    color: var(--links);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-91b9ee ul li a::after {
    content: "";
    border: 5px solid transparent;
    border-left: 5px solid var(--links);
  }
  /* Display mobile nav when checkbox is checked */
  .c-19ef91:checked ~ .c-91b9ee {
    display: flex;
  }
  /* Animate burger icon when toggled */
  .c-19ef91:checked + .c-16ffb5 span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
  }
  .c-19ef91:checked + .c-16ffb5 span:nth-child(2) {
    opacity: 0;
  }
  .c-19ef91:checked + .c-16ffb5 span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ==================================================
   Desktop Styles (min-width: 1024px)
   ================================================== */
@media (min-width: 1024px) {
  .c-7d3be2 {
    display: flex !important;
    position: static;
    height: auto;
    background: none;
    padding: 0;
  }
  .c-91b9ee {
    display: none !important;
  }
  .c-16ffb5 {
    display: none;
  }
}

/* ==================================================
   Small Device Adjustments (max-width: 767px)
   ================================================== */
@media (max-width: 767px) {
  header {
    height: 54px;
  }
  .c-20363f img {
    max-height: 40px;
  }
  .c-85b997 a {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* ==================================================
   Mobile Nav Close Button
   ================================================== */
@media (max-width: 1023px) {
  .c-349ef8 {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: var(--links);
    cursor: pointer;
    z-index: 1001;
  }
}

/* ==================================================
   Main Content Padding (to account for fixed header)
   ================================================== */
main {
  padding-top: 80px;
}

/* ==================================================
   Content HeaderLogo Override (if used in content)
   ================================================== */
.c-743873 {
  display: block !important;
  position: relative;
  z-index: 2;
  margin-top: 80px;
  text-align: center;
  font-size: 2.5em;
  color: var(--text-on-alt);
}

/* ---------- Bonus Button (Main Button) ---------- */
.c-a5f768 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;       /* Slightly larger width */
  width: 100%;
  height: 70px;           /* Increased height */
  margin: 20px auto;      /* Vertical margin for spacing */
  border-radius: 10px;    /* More rounded corners */
  background: var(--main-btn-gradient);  /* Uses your gradient */
  color: var(--main-btn-color);
  font-size: 20px;        /* Larger text */
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: pulse-main 2s infinite;
}

.c-a5f768:hover {
  transform: scale(1.02);
}

/* Indent the first paragraph in .c-eb6f6e */
.c-eb6f6e p:first-of-type {
  text-indent: 2em;
  margin-left: 20px;
  margin-right: 20px;
}

/* ==================================================
   Cards Block and Grid
   ================================================== */
.c-cb4a02 {
  margin: 2rem 0;
  padding: 0 1rem;
}

.c-53aca3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each card occupies roughly one-fourth of the container (desktop) */
.c-4df388 {
  position: relative;
  flex: 1 1 calc(25% - 1rem);
  background: #161616; /* Or var(--background-alt) if you prefer */
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* On mobile devices: 2 per row */
@media (max-width: 767px) {
  .c-4df388 {
    flex: 1 1 calc(50% - 1rem);
  }
}

/* Scale up slightly on hover */
.c-4df388:hover {
  transform: scale(1.05);
}

/* Card image styles */
.c-9234c4 {
  position: relative;
}

.c-9234c4 img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Overlay on hover */
.c-011be6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 22, 0.7);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-4df388:hover .c-011be6 {
  opacity: 1;
}

/* Container for buttons inside card overlay */
.c-0c59b8 {
  display: flex;
  gap: 1rem;
}

/* Button styles within cards */
.c-0c59b8 a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--registr-btn-gradient);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.c-0c59b8 a:hover {
  background: #c34707;
}

/* Card title and provider text */
.c-632cb4,
.c-22bcbc {
  display: block;
  text-align: center;
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #a2a5af;
}

/* ==================================================
   Footer Styles
   ================================================== */
.c-ad74a3 {
  background: var(--background-alt);
  color: var(--text-on-alt);
  padding: 20px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin-top: 30px;
}

.c-ad74a3 .c-25d87c {
  margin-bottom: 20px;
}

.c-ad74a3 .c-25d87c a {
  margin: 0 10px;
  font-size: 2rem;
  color: var(--text-on-alt);
  transition: color 0.3s;
}

.c-ad74a3 .c-25d87c a:hover {
  color: var(--registr-btn-gradient);
}

.c-ad74a3 .c-6f65a2 {
  margin-bottom: 20px;
}

.c-ad74a3 .c-6f65a2 .c-dc92a2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.c-ad74a3 .c-6f65a2 .c-dc92a2 .c-442158 img {
  max-width: 120px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.c-ad74a3 .c-6f65a2 .c-dc92a2 .c-442158 img:hover {
  transform: scale(1.05);
}

.c-ad74a3 .c-d5195d {
  font-size: 0.9rem;
}

ul, ol {
  margin:20px 30px;
}

/* Footer Menu Styles */
.c-ad74a3 .c-45e74b {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 0 15px;
}

.c-ad74a3 .c-45e74b a {
  color: var(--links);
  padding: 8px 15px;
  transition: color var(--transition-speed);
  font-size: 0.9rem;
  position: relative;
}

.c-ad74a3 .c-45e74b a:hover {
  color: var(--button-base);
  text-decoration: underline;
}

/* Separator between links on desktop */
.c-ad74a3 .c-45e74b a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -3px;
  color: var(--text-on-alt); opacity: 0.4;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .c-ad74a3 .c-45e74b {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .c-ad74a3 .c-45e74b a {
    padding: 6px 10px;
  }
  
/* Remove separators on mobile */
  .c-ad74a3 .c-45e74b a:not(:last-child)::after {
    display: none;
  }
}

/* Contact Form Styles */
.c-2d7a98 {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

.c-60484e {
  background: var(--background-alt);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.c-bb9034 {
  font-size: 2.2em;
  margin-bottom: 15px;
  text-align: center;
  color: var(--text-on-alt);
}

.c-af38e3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-on-alt);
}

.c-cda988 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-a161d8 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-a161d8 label {
  font-weight: 600;
  color: var(--text-on-alt);
}

.c-a161d8 input,
.c-a161d8 textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--background-body);
  color: var(--text-main);
  font-size: 16px;
  transition: border-color var(--transition-speed);
}

.c-a161d8 input:focus,
.c-a161d8 textarea:focus {
  outline: none;
  border-color: var(--button-base);
  box-shadow: 0 0 0 2px rgba(42, 183, 101, 0.3);
}

.c-a161d8 textarea {
  resize: vertical;
  min-height: 150px;
}

.c-173857 {
  background: var(--registr-btn-gradient);
  color: var(--registr-btn-color);
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  margin-top: 10px;
  animation: pulse-main 2s infinite;
}

.c-173857:hover {
  transform: scale(1.05);
}

.c-173857:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success message styles */
.c-e76df0 {
  text-align: center;
  background: rgba(42, 183, 101, 0.1);
  border: 1px solid var(--button-base);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.c-e76df0 p {
  color: #2AB765;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .c-2d7a98 {
    margin-top: 80px;
  }
  
  .c-60484e {
    padding: 20px;
  }
  
  .c-bb9034 {
    font-size: 1.8em;
  }
}

/* ==================================================
   Breadcrumb Navigation Styles
   ================================================== */
.c-199799 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 70px 0 20px 0;
  padding: 10px 20px;
  background: var(--background-alt);
  border-radius: 8px;
  font-size: 14px;
}

.c-199799 li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.c-199799 li a {
  color: var(--links);
  opacity: 0.8;
  transition: opacity var(--transition-speed);
  text-decoration: none;
}

.c-199799 li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.c-199799 li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: var(--links);
  opacity: 0.6;
}

.c-199799 li:last-child a {
  color: var(--text-accent);
  opacity: 1;
  pointer-events: none;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .c-199799 {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .c-199799 li:not(:last-child)::after {
    margin: 0 5px;
  }
}

/* ==================================================
   Customer Reviews Section Styles
   ================================================== */
.c-6103cf {
  max-width: 1110px;
  margin: 60px auto;
  padding: 0 20px;
}

.c-6103cf h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-main);
}

/* Reviews Header */
.c-15b965 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-alt);
  border-radius: 15px;
  padding: 25px 30px;
  margin-bottom: 30px;
  box-shadow: var(--card-shadow);
}

.c-377a6b {
  display: flex;
  align-items: center;
  gap: 30px;
}

.c-902f3f {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-on-alt);
}

.c-9ea988 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-8d6856 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-on-alt);
}

.c-fa47a5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.c-fa47a5 svg {
  width: 120px;
  height: 22px;
}

.c-fa47a5 .c-ab5d48 {
  fill: var(--star-empty);
}

.c-fa47a5 .c-ab5d48.c-ebb3d3 {
  fill: #FFD700;
}

.c-fa47a5 .c-ab5d48.c-4accac {
  fill: url(#star-gradient);
}

.c-fa47a5 small {
  font-size: 14px;
  color: var(--text-muted);
}

/* Write Review Button */
.c-086fa1 {
  background: var(--registr-btn-gradient);
  color: var(--registr-btn-color);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.c-086fa1:hover {
  transform: scale(1.05);
}

/* Review Modal */
.c-94ee66 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.c-94ee66.active {
  display: flex;
}

.c-dbf05d {
  background: var(--background-alt);
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--card-shadow);
}

.c-dbf05d h3 {
  color: var(--text-on-alt);
  margin-bottom: 20px;
  text-align: center;
}

.c-b3b029 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-3c3e4b,
.c-f7fe8b {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--background-body);
  color: var(--text-main);
  font-size: 16px;
  transition: border-color 0.3s;
}

.c-3c3e4b:focus,
.c-f7fe8b:focus {
  outline: none;
  border-color: var(--button-base);
}

.c-f7fe8b {
  resize: vertical;
  min-height: 100px;
}

/* Star Rating Selection */
.c-5e99b4 {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 32px;
}

.c-ed4dbd {
  color: var(--star-empty);
  cursor: pointer;
  transition: color 0.2s;
}

.c-ed4dbd:hover,
.c-ed4dbd.active {
  color: #FFD700;
}

.c-dc55f1 {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.c-0c9dc5,
.c-b9b950 {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.c-0c9dc5 {
  background: var(--login-btn-bg);
  color: var(--login-btn-color);
}

.c-b9b950 {
  background: var(--registr-btn-gradient);
  color: var(--registr-btn-color);
}

.c-0c9dc5:hover,
.c-b9b950:hover {
  opacity: 0.9;
}

/* Reviews List */
.c-8b1a68 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.c-1563f7 {
  background: var(--background-alt);
  border-radius: 12px;
  padding: 25px;
  display: none;
  transition: all 0.3s ease;
}

.c-1563f7.show {
  display: block;
}

.c-cdae07 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.c-fafa1d {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--registr-btn-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--registr-btn-color);
  position: relative;
}

.c-ea99d8 {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  padding: 2px;
}

.c-f220ca {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-24de03 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-alt);
}

.c-2e8743 {
  font-size: 14px;
  color: var(--text-on-alt);
}

.c-b7b245 {
  margin-bottom: 15px;
}

.c-b7b245 svg {
  width: 100px;
  height: 20px;
}

.c-b7b245 .c-ab5d48 {
  fill: var(--star-empty);
}

.c-b7b245 .c-ab5d48.c-ebb3d3 {
  fill: #FFD700;
}

.c-b7b245 .c-ab5d48.c-c2a730 {
  fill: var(--star-empty);
}

.c-dbae2a {
  color: var(--text-on-alt);
  line-height: 1.6;
  font-size: 15px;
}

.c-dbae2a p {
  margin: 0;
}

/* Load More Button */
.c-939b17 {
  display: block;
  margin: 0 auto;
  background: var(--registr-btn-gradient);
  color: var(--registr-btn-color);
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: pulse-main 2s infinite;
}

.c-939b17:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .c-6103cf {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .c-6103cf h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  
  .c-15b965 {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  
  .c-377a6b {
    flex-direction: column;
    gap: 15px;
  }
  
  .c-8d6856 {
    font-size: 28px;
  }
  
  .c-086fa1 {
    width: 100%;
  }
  
  .c-1563f7 {
    padding: 20px;
  }
  
  .c-fafa1d {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .c-ea99d8 {
    width: 16px;
    height: 16px;
  }
  
  .c-dbf05d {
    padding: 20px;
  }
  
  .c-5e99b4 {
    font-size: 28px;
    gap: 8px;
  }
  
  .c-dc55f1 {
    flex-direction: column;
    gap: 10px;
  }
  
  .c-0c9dc5,
  .c-b9b950 {
    width: 100%;
  }
}


/* ==================================================
   Enhanced Table of Contents Styles
   ================================================== */
.c-4760bb {
  max-width: 1110px;
  margin: 40px auto;
  padding: 0 20px;
}

.c-2d4d44 {
  background: var(--background-alt);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.c-2d4d44::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--registr-btn-gradient);
}

.c-11cb59 {
  background: var(--background-alt);
  color: var(--text-on-alt);
  border: 2px solid var(--border-accent);
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  /* Remove the pulse animation */
}

.c-11cb59::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.c-11cb59:hover::before {
  left: 100%;
}

.c-11cb59:hover {
  transform: translateY(-1px);
  box-shadow: var(--card-shadow);
  border-color: var(--border-accent);
}

.c-6c520b {
  border-radius: 10px;
  background: var(--card-bg);
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
}

.c-6c520b[hidden] {
  display: none;
}

.c-6c520b ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

/* Two-column layout on desktop */
@media (min-width: 768px) {
  .c-6c520b ul {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

.c-6c520b ul li {
  position: relative;
}

.c-6c520b ul li a {
  display: block;
  color: var(--text-on-alt);
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--card-bg);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.c-6c520b ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--registr-btn-gradient);
  transition: width 0.3s ease;
  z-index: -1;
}

.c-6c520b ul li a:hover {
  color: var(--text-bright);
  transform: translateX(5px);
  border-left-color: var(--text-accent);
  box-shadow: var(--card-shadow);
}

.c-6c520b ul li a:hover::before {
  width: 100%;
}

.c-6c520b ul li a::after {
  content: '>';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--text-accent);
}

.c-6c520b ul li a:hover::after {
  opacity: 1;
}

/* Nested TOC items (sub-sections) */
.c-6c520b ul ul {
  margin-top: 8px;
  padding-left: 20px;
  grid-template-columns: 1fr;
  gap: 8px;
}

.c-6c520b ul ul li a {
  font-size: 14px;
  padding: 8px 15px;
  background: var(--card-bg);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .c-4760bb {
    margin: 20px auto;
    padding: 0 15px;
  }
  
  .c-2d4d44 {
    padding: 20px;
  }
  
  .c-6c520b ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .c-6c520b ul li a {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/* ==================================================
   Two-Column Text Blocks (Universal)
   ================================================== */

.c-986afd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 4px solid var(--button-base);
}

.c-e3490b,
.c-443baa {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Column headings */
.c-e3490b h4,
.c-443baa h4 {
  margin: 0;
  color: var(--button-base);
  font-size: 16px;
  font-weight: 600;
}

/* Paragraph styles */
.c-e3490b p,
.c-443baa p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-main);
}

/* List styles - remove default bullets */
.c-e3490b ul,
.c-443baa ul,
.c-e3490b ol,
.c-443baa ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

/* List item styling with padding for custom icons */
.c-e3490b li,
.c-443baa li {
  margin: 8px 0;
  line-height: 1.6;
  color: var(--text-main);
  padding-left: 25px;
  position: relative;
}

/* Unordered list custom icons (checkmark) */
.c-e3490b ul li::before,
.c-443baa ul li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  color: var(--button-base);
  font-weight: bold;
  font-size: 18px;
}

/* Ordered list custom numbering */
.c-e3490b ol li::before,
.c-443baa ol li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  color: var(--button-base);
  font-weight: bold;
  font-size: 16px;
}

/* Counter initialization for ordered lists */
.c-e3490b ol,
.c-443baa ol {
  counter-reset: list-item;
}

/* Counter increment for each list item */
.c-e3490b ol li,
.c-443baa ol li {
  counter-increment: list-item;
}

/* Mobile responsiveness - stack to single column */
@media (max-width: 1023px) {
  .c-986afd {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Small device adjustments */
@media (max-width: 767px) {
  .c-986afd {
    padding: 15px;
    gap: 15px;
    border-left-width: 3px;
  }
  
  .c-e3490b h4,
  .c-443baa h4 {
    font-size: 15px;
  }
}

.c-51b337 {
    display: block;
	margin: 30px auto;
	max-width: 100%;
	height: auto;
  }
