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

  /* Background Colors */
  --v-7eaef: #FFF;		/* Main background color */
  --v-e0698: #fc6130;		/* Header & footer background */

  /* Text Colors */
  --v-8e1c4: #000000;             /* Main text color */
  --v-57010: #FFFFFF;                 /* Navigation/menu text color */
  --v-77215: #000000;          /* Text on --background-alt sections (header, footer, TOC, tables, reviews, contacts) */

  /* Button Colors */
  --v-2099f: #2AB765;           /* Primary button background (if needed) */
  --v-153d6: #f7d454;          /* Button hover background */

  /* Additional variables you used */
  --v-20324: #1D213C;          /* Login button background */
  --v-571d9: #FFFFFF;       /* Login button text color */
  --v-7795c: none;         /* Login button border (e.g. 2px solid #fff) */
  --v-32eed: linear-gradient(270deg, #fff 100%, #AC20C9 0%);
  --v-39b1d: #fc6130;     /* Registr button text color */
  --v-1b140: linear-gradient(270deg, #fc6130 100%, #AC20C9 0%);
  --v-1c0af: #fff;        /* Main button text color */

  /* Transitions */
  --v-ca85e: 0.3s;

  /* Theme-adaptive Colors (change these for light themes) */
  --v-0c196: #000;    /* Subdued text (review count, dates) */
  --v-21892: #FFC421;                     /* Accent text (breadcrumb active, TOC arrows) */
  --v-d6526: rgba(255, 255, 255, 0.2);  /* Input/card borders */
  --v-a3479: #530c63;                   /* TOC toggle, focus rings */
  --v-e0742: rgba(22, 22, 22, 0.3);          /* TOC inner, overlay backgrounds */
  --v-15bdd: 0 4px 20px rgba(0,0,0,0.3); /* Card box-shadows */
  --v-0be8d: #dddddd;                         /* Empty star color */

  /* Table Wrapper Styles */
  --v-3c646: #fc6130;
  --v-51381: #AC20C9;
}

/* ==================================================
   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(--v-7eaef);
  color: var(--v-8e1c4);
  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; }

/* ==================================================
   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(--v-e0698) !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

th {
    background: var(--v-32eed) !important;
    color: var(--v-39b1d) !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(--v-77215) !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(--v-ca85e) !important;
}

/* ===== Only for tables with .c-5f21eb ===== */
.c-5f21eb {
    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-5f21eb table {
    border-collapse: collapse !important;
    width: 100% !important;
    margin: 0 !important;
    background: var(--v-e0698) !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none !important;
    min-width: 1000px;
    font-size: 16px !important;
}

.c-5f21eb th {
    font-size: 16px !important;
}

.c-5f21eb td {
    font-size: 16px !important;
}

.c-5f21eb::-webkit-scrollbar {
    height: 8px;
}

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

.c-5f21eb::-webkit-scrollbar-thumb {
    background: var(--v-3c646);
    border-radius: 4px;
}

.c-5f21eb::-webkit-scrollbar-thumb:hover {
    background: var(--v-51381);
}

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

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

/* Burger Icon */
.c-61b05e {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: var(--v-20324);
  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-61b05e span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--v-571d9);
  border-radius: 2px;
  transition: transform var(--v-ca85e), opacity var(--v-ca85e);
}

/* Header Inner – contains logo, desktop nav, header-buttons */
.c-bd9859 {
  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-8dcd8d img {
  max-height: 50px;
  width: auto;
}

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

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

.c-15fb3b ul li a {
  color: var(--v-57010);
  font-weight: 600;
  transition: color var(--v-ca85e);
}

.c-15fb3b ul li a:hover {
  text-decoration: underline;
}

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

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

.c-7893fb {
  background: var(--v-20324);
  color: var(--v-571d9);
  border: var(--login-btn-border, none);
}

.c-7893fb:hover {
  opacity: 0.9;
}

.c-eca0a6 {
  background: var(--v-32eed);
  color: var(--v-39b1d);
  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(--v-ca85e);
}

.c-eca0a6:hover {
  background: var(--v-153d6);
}

/* Pulse Animation for buttons (registr-btn & main-button) */
@keyframes pulse-main {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--v-2099f);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 4px 24px 0 var(--v-153d6);
  }
  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-bd9859 {
    justify-content: space-between;
    padding-right: 40px;  /* Reduced from 80px */
  }
  /* Hide desktop navigation */
  .c-15fb3b {
    display: none;
  }
  /* Show burger icon */
  .c-61b05e {
    display: flex;
  }
  /* Mobile Navigation Curtain */
  .c-50b3bf {
    display: none;
    position: fixed;
    top: 0;             /* Cover full viewport height */
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--v-e0698);
    flex-direction: column;
    padding-top: 60px;  /* Leave room for the close button */
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .c-50b3bf ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .c-50b3bf ul li {
    border-bottom: 1px solid var(--v-d6526);
  }
  /* Increase menu item text and padding */
  .c-50b3bf ul li a {
    padding: 18px 20px;
    font-size: 18px;
    color: var(--v-57010);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-50b3bf ul li a::after {
    content: "";
    border: 5px solid transparent;
    border-left: 5px solid var(--v-57010);
  }
  /* Display mobile nav when checkbox is checked */
  .c-417ad8:checked ~ .c-50b3bf {
    display: flex;
  }
  /* Animate burger icon when toggled */
  .c-417ad8:checked + .c-61b05e span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
  }
  .c-417ad8:checked + .c-61b05e span:nth-child(2) {
    opacity: 0;
  }
  .c-417ad8:checked + .c-61b05e span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ==================================================
   Desktop Styles (min-width: 1024px)
   ================================================== */
@media (min-width: 1024px) {
  .c-15fb3b {
    display: flex !important;
    position: static;
    height: auto;
    background: none;
    padding: 0;
  }
  .c-50b3bf {
    display: none !important;
  }
  .c-61b05e {
    display: none;
  }
}

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

/* ==================================================
   Mobile Nav Close Button
   ================================================== */
@media (max-width: 1023px) {
  .c-12f590 {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: var(--v-57010);
    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-b26747 {
  display: block !important;
  position: relative;
  z-index: 2;
  margin-top: 80px;
  text-align: center;
  font-size: 2.5em;
  color: var(--v-77215);
}

/* ---------- Bonus Button (Main Button) ---------- */
.c-89a289 {
  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(--v-1b140);  /* Uses your gradient */
  color: var(--v-1c0af);
  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-89a289:hover {
  transform: scale(1.02);
}

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

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

.c-17183c {
  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-6135cc {
  position: relative;
  flex: 1 1 calc(25% - 1rem);
  background: #161616; /* Or var(--v-e0698) if you prefer */
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

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

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

/* Overlay on hover */
.c-130e09 {
  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-6135cc:hover .c-130e09 {
  opacity: 1;
}

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

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

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

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

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

.c-00c9e3 .c-ec5443 {
  margin-bottom: 20px;
}

.c-00c9e3 .c-ec5443 a {
  margin: 0 10px;
  font-size: 2rem;
  color: var(--v-77215);
  transition: color 0.3s;
}

.c-00c9e3 .c-ec5443 a:hover {
  color: var(--v-32eed);
}

.c-00c9e3 .c-01321b {
  margin-bottom: 20px;
}

.c-00c9e3 .c-01321b .c-4edb39 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.c-00c9e3 .c-01321b .c-4edb39 .c-79e573 img {
  max-width: 120px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.c-00c9e3 .c-01321b .c-4edb39 .c-79e573 img:hover {
  transform: scale(1.05);
}

.c-00c9e3 .c-7b6f59 {
  font-size: 0.9rem;
}

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

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

.c-00c9e3 .c-e3f0d3 a {
  color: var(--v-57010);
  padding: 8px 15px;
  transition: color var(--v-ca85e);
  font-size: 0.9rem;
  position: relative;
}

.c-00c9e3 .c-e3f0d3 a:hover {
  color: var(--v-2099f);
  text-decoration: underline;
}

/* Separator between links on desktop */
.c-00c9e3 .c-e3f0d3 a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -3px;
  color: var(--v-77215); opacity: 0.4;
}

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

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

.c-032b2d {
  background: var(--v-e0698);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.c-0fbde7 {
  font-size: 2.2em;
  margin-bottom: 15px;
  text-align: center;
  color: var(--v-77215);
}

.c-e147e2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--v-77215);
}

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

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

.c-1af10c label {
  font-weight: 600;
  color: var(--v-77215);
}

.c-1af10c input,
.c-1af10c textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--v-d6526);
  background: var(--v-7eaef);
  color: var(--v-8e1c4);
  font-size: 16px;
  transition: border-color var(--v-ca85e);
}

.c-1af10c input:focus,
.c-1af10c textarea:focus {
  outline: none;
  border-color: var(--v-2099f);
  box-shadow: 0 0 0 2px rgba(42, 183, 101, 0.3);
}

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

.c-dd522e {
  background: var(--v-32eed);
  color: var(--v-39b1d);
  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-dd522e:hover {
  transform: scale(1.05);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .c-6a7a0e {
    margin-top: 80px;
  }
  
  .c-032b2d {
    padding: 20px;
  }
  
  .c-0fbde7 {
    font-size: 1.8em;
  }
}

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

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

.c-907d3c li a {
  color: var(--v-57010);
  opacity: 0.8;
  transition: opacity var(--v-ca85e);
  text-decoration: none;
}

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

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

.c-907d3c li:last-child a {
  color: var(--v-21892);
  opacity: 1;
  pointer-events: none;
}

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

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

.c-c42582 h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--v-8e1c4);
}

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

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

.c-4dda07 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--v-77215);
}

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

.c-51873e {
  font-size: 36px;
  font-weight: 700;
  color: var(--v-77215);
}

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

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

.c-72d31b .c-452b7d {
  fill: var(--v-0be8d);
}

.c-72d31b .c-452b7d.c-34ffa6 {
  fill: #FFD700;
}

.c-72d31b .c-452b7d.c-693b62 {
  fill: url(#star-gradient);
}

.c-72d31b small {
  font-size: 14px;
  color: var(--v-0c196);
}

/* Write Review Button */
.c-16dddd {
  background: var(--v-32eed);
  color: var(--v-39b1d);
  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-16dddd:hover {
  transform: scale(1.05);
}

/* Review Modal */
.c-73cf82 {
  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-73cf82.active {
  display: flex;
}

.c-0dcc3b {
  background: var(--v-e0698);
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--v-15bdd);
}

.c-0dcc3b h3 {
  color: var(--v-77215);
  margin-bottom: 20px;
  text-align: center;
}

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

.c-4a37b6,
.c-0d8e96 {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--v-d6526);
  background: var(--v-7eaef);
  color: var(--v-8e1c4);
  font-size: 16px;
  transition: border-color 0.3s;
}

.c-4a37b6:focus,
.c-0d8e96:focus {
  outline: none;
  border-color: var(--v-2099f);
}

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

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

.c-19238b {
  color: var(--v-0be8d);
  cursor: pointer;
  transition: color 0.2s;
}

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

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

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

.c-ad31b1 {
  background: var(--v-20324);
  color: var(--v-571d9);
}

.c-a60e5f {
  background: var(--v-32eed);
  color: var(--v-39b1d);
}

.c-ad31b1:hover,
.c-a60e5f:hover {
  opacity: 0.9;
}

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

.c-19edd4 {
  background: var(--v-e0698);
  border-radius: 12px;
  padding: 25px;
  display: none;
  transition: all 0.3s ease;
}

.c-19edd4.show {
  display: block;
}

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

.c-9d4eae {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--v-32eed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--v-39b1d);
  position: relative;
}

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

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

.c-11e804 {
  font-size: 16px;
  font-weight: 600;
  color: var(--v-77215);
}

.c-bcea9b {
  font-size: 14px;
  color: var(--v-77215);
}

.c-6c64a8 {
  margin-bottom: 15px;
}

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

.c-6c64a8 .c-452b7d {
  fill: var(--v-0be8d);
}

.c-6c64a8 .c-452b7d.c-34ffa6 {
  fill: #FFD700;
}

.c-6c64a8 .c-452b7d.c-f19818 {
  fill: var(--v-0be8d);
}

.c-7facb0 {
  color: var(--v-77215);
  line-height: 1.6;
  font-size: 15px;
}

.c-7facb0 p {
  margin: 0;
}

/* Load More Button */
.c-6dd583 {
  display: block;
  margin: 0 auto;
  background: var(--v-32eed);
  color: var(--v-39b1d);
  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-6dd583:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .c-c42582 {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .c-c42582 h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  
  .c-d7b6ba {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  
  .c-cf0848 {
    flex-direction: column;
    gap: 15px;
  }
  
  .c-51873e {
    font-size: 28px;
  }
  
  .c-16dddd {
    width: 100%;
  }
  
  .c-19edd4 {
    padding: 20px;
  }
  
  .c-9d4eae {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .c-4ca30b {
    width: 16px;
    height: 16px;
  }
  
  .c-0dcc3b {
    padding: 20px;
  }
  
  .c-ef469b {
    font-size: 28px;
    gap: 8px;
  }
  
  .c-aa77ce {
    flex-direction: column;
    gap: 10px;
  }
  
  .c-ad31b1,
  .c-a60e5f {
    width: 100%;
  }
}


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

.c-0fab8f {
  background: var(--v-e0698);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--v-15bdd);
  border: 1px solid var(--v-d6526);
  position: relative;
  overflow: hidden;
}

.c-0fab8f::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--v-32eed);
}

.c-fcd901 {
  background: var(--v-e0698);
  color: var(--v-77215);
  border: 2px solid var(--v-a3479);
  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-fcd901::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-fcd901:hover::before {
  left: 100%;
}

.c-fcd901:hover {
  transform: translateY(-1px);
  box-shadow: var(--v-15bdd);
  border-color: var(--v-a3479);
}

.c-a33c74 {
  border-radius: 10px;
  background: var(--v-e0742);
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--v-d6526);
}

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

.c-a33c74 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-a33c74 ul {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

.c-a33c74 ul li {
  position: relative;
}

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

.c-a33c74 ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--v-32eed);
  transition: width 0.3s ease;
  z-index: -1;
}

.c-a33c74 ul li a:hover {
  color: var(--text-bright);
  transform: translateX(5px);
  border-left-color: var(--v-21892);
  box-shadow: var(--v-15bdd);
}

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

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

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

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

.c-a33c74 ul ul li a {
  font-size: 14px;
  padding: 8px 15px;
  background: var(--v-e0742);
}

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

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

.c-2bf7ae {
  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(--v-2099f);
}

.c-e493fe,
.c-628e15 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Column headings */
.c-e493fe h4,
.c-628e15 h4 {
  margin: 0;
  color: var(--v-2099f);
  font-size: 16px;
  font-weight: 600;
}

/* Paragraph styles */
.c-e493fe p,
.c-628e15 p {
  margin: 0;
  line-height: 1.6;
  color: var(--v-8e1c4);
}

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

/* List item styling with padding for custom icons */
.c-e493fe li,
.c-628e15 li {
  margin: 8px 0;
  line-height: 1.6;
  color: var(--v-8e1c4);
  padding-left: 25px;
  position: relative;
}

/* Unordered list custom icons (checkmark) */
.c-e493fe ul li::before,
.c-628e15 ul li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  color: var(--v-2099f);
  font-weight: bold;
  font-size: 18px;
}

/* Ordered list custom numbering */
.c-e493fe ol li::before,
.c-628e15 ol li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  color: var(--v-2099f);
  font-weight: bold;
  font-size: 16px;
}

/* Counter initialization for ordered lists */
.c-e493fe ol,
.c-628e15 ol {
  counter-reset: list-item;
}

/* Counter increment for each list item */
.c-e493fe ol li,
.c-628e15 ol li {
  counter-increment: list-item;
}

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

/* Small device adjustments */
@media (max-width: 767px) {
  .c-2bf7ae {
    padding: 15px;
    gap: 15px;
    border-left-width: 3px;
  }
  
  .c-e493fe h4,
  .c-628e15 h4 {
    font-size: 15px;
  }
}

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