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

  /* Background Colors */
  --v-13e4e: #171529;		/* Main background color */
  --v-ae8f2: #0e3361;		/* Header & footer background */

  /* Text Colors */
  --v-eac96: #FFFFFF;             /* Main text color */
  --v-5e05d: #FFFFFF;                 /* Navigation/menu text color */
  --v-e1cde: #FFFFFF;          /* Text on --background-alt sections (header, footer, TOC, tables, reviews, contacts) */

  /* Button Colors */
  --v-87782: #d90707;           /* Primary button background (if needed) */
  --v-3d21f: #ffcc03;          /* Button hover background */

  /* Additional variables you used */
  --v-f1dae: #171529;          /* Login button background */
  --v-c131b: #FFFFFF;       /* Login button text color */
  --v-d0e4b: none;         /* Login button border (e.g. 2px solid #fff) */
  --v-5adef: linear-gradient(270deg, #d90707 100%, #ffcc03 0%);
  --v-bcf9b: #FFFFFF;     /* Registr button text color */
  --v-93b7a: linear-gradient(270deg, #d90707 100%, #ffcc03 0%);
  --v-4565e: #FFFFFF;        /* Main button text color */

  /* Transitions */
  --v-97ff2: 0.3s;

  /* Theme-adaptive Colors (change these for light themes) */
  --v-0115d: rgba(255, 255, 255, 0.7);    /* Subdued text (review count, dates) */
  --v-32892: #FFC421;                     /* Accent text (breadcrumb active, TOC arrows) */
  --v-884a6: rgba(255, 255, 255, 0.2);  /* Input/card borders */
  --v-c8cd7: #530c63;                   /* TOC toggle, focus rings */
  --v-6ac89: rgba(22, 22, 22, 0.3);          /* TOC inner, overlay backgrounds */
  --v-9d62d: 0 4px 20px rgba(0,0,0,0.3); /* Card box-shadows */
  --v-92d4e: #ddd;                         /* Empty star color */

  /* Table Wrapper Styles */
  --v-c4e6e: #fcca6a;
  --v-eccd2: #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-13e4e);
  color: var(--v-eac96);
  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-ae8f2) !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

th {
    background: var(--v-5adef) !important;
    color: var(--v-bcf9b) !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-e1cde) !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-97ff2) !important;
}

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

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

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

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

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

.c-ecd99c::-webkit-scrollbar-thumb {
    background: var(--v-c4e6e);
    border-radius: 4px;
}

.c-ecd99c::-webkit-scrollbar-thumb:hover {
    background: var(--v-eccd2);
}

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

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

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

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

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

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

.c-0cc609 ul li a {
  color: var(--v-5e05d);
  font-weight: 600;
  transition: color var(--v-97ff2);
}

.c-0cc609 ul li a:hover {
  text-decoration: underline;
}

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

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

.c-e6f4aa {
  background: var(--v-f1dae);
  color: var(--v-c131b);
  border: var(--login-btn-border, none);
}

.c-e6f4aa:hover {
  opacity: 0.9;
}

.c-2942dd {
  background: var(--v-5adef);
  color: var(--v-bcf9b);
  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-97ff2);
}

.c-2942dd:hover {
  background: var(--v-3d21f);
}

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

/* ==================================================
   Desktop Styles (min-width: 1024px)
   ================================================== */
@media (min-width: 1024px) {
  .c-0cc609 {
    display: flex !important;
    position: static;
    height: auto;
    background: none;
    padding: 0;
  }
  .c-44be2e {
    display: none !important;
  }
  .c-6cff22 {
    display: none;
  }
}

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

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

/* ---------- Bonus Button (Main Button) ---------- */
.c-f8758e {
  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-93b7a);  /* Uses your gradient */
  color: var(--v-4565e);
  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-f8758e:hover {
  transform: scale(1.02);
}

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

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

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

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

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

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

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

/* Overlay on hover */
.c-538f54 {
  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-4cc3fa:hover .c-538f54 {
  opacity: 1;
}

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

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

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

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

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

.c-8faa9d .c-75e49e {
  margin-bottom: 20px;
}

.c-8faa9d .c-75e49e a {
  margin: 0 10px;
  font-size: 2rem;
  color: var(--v-e1cde);
  transition: color 0.3s;
}

.c-8faa9d .c-75e49e a:hover {
  color: var(--v-5adef);
}

.c-8faa9d .c-066e0d {
  margin-bottom: 20px;
}

.c-8faa9d .c-066e0d .c-97d619 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.c-8faa9d .c-066e0d .c-97d619 .c-521d94 img {
  max-width: 120px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.c-8faa9d .c-066e0d .c-97d619 .c-521d94 img:hover {
  transform: scale(1.05);
}

.c-8faa9d .c-6bb89f {
  font-size: 0.9rem;
}

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

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

.c-8faa9d .c-f73d1d a {
  color: var(--v-5e05d);
  padding: 8px 15px;
  transition: color var(--v-97ff2);
  font-size: 0.9rem;
  position: relative;
}

.c-8faa9d .c-f73d1d a:hover {
  color: var(--v-87782);
  text-decoration: underline;
}

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

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

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

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

.c-22de7c {
  font-size: 2.2em;
  margin-bottom: 15px;
  text-align: center;
  color: var(--v-e1cde);
}

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

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

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

.c-b1d228 label {
  font-weight: 600;
  color: var(--v-e1cde);
}

.c-b1d228 input,
.c-b1d228 textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--v-884a6);
  background: var(--v-13e4e);
  color: var(--v-eac96);
  font-size: 16px;
  transition: border-color var(--v-97ff2);
}

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

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

.c-e56e27 {
  background: var(--v-5adef);
  color: var(--v-bcf9b);
  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-e56e27:hover {
  transform: scale(1.05);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .c-83bd05 {
    margin-top: 80px;
  }
  
  .c-1f7a59 {
    padding: 20px;
  }
  
  .c-22de7c {
    font-size: 1.8em;
  }
}

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

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

.c-d4f5b6 li a {
  color: var(--v-5e05d);
  opacity: 0.8;
  transition: opacity var(--v-97ff2);
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

.c-58715b {
  font-size: 36px;
  font-weight: 700;
  color: var(--v-e1cde);
}

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

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

.c-09a997 .c-e0660b {
  fill: var(--v-92d4e);
}

.c-09a997 .c-e0660b.c-a26933 {
  fill: #FFD700;
}

.c-09a997 .c-e0660b.c-4b126d {
  fill: url(#star-gradient);
}

.c-09a997 small {
  font-size: 14px;
  color: var(--v-0115d);
}

/* Write Review Button */
.c-736bd8 {
  background: var(--v-5adef);
  color: var(--v-bcf9b);
  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-736bd8:hover {
  transform: scale(1.05);
}

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

.c-5f5569 {
  background: var(--v-ae8f2);
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--v-9d62d);
}

.c-5f5569 h3 {
  color: var(--v-e1cde);
  margin-bottom: 20px;
  text-align: center;
}

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

.c-28d42f,
.c-6602e2 {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--v-884a6);
  background: var(--v-13e4e);
  color: var(--v-eac96);
  font-size: 16px;
  transition: border-color 0.3s;
}

.c-28d42f:focus,
.c-6602e2:focus {
  outline: none;
  border-color: var(--v-87782);
}

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

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

.c-39cb01 {
  color: var(--v-92d4e);
  cursor: pointer;
  transition: color 0.2s;
}

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

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

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

.c-8b2ee8 {
  background: var(--v-f1dae);
  color: var(--v-c131b);
}

.c-98ee95 {
  background: var(--v-5adef);
  color: var(--v-bcf9b);
}

.c-8b2ee8:hover,
.c-98ee95:hover {
  opacity: 0.9;
}

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

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

.c-828f9d.show {
  display: block;
}

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

.c-8b419e {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--v-5adef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--v-bcf9b);
  position: relative;
}

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

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

.c-0f30dd {
  font-size: 16px;
  font-weight: 600;
  color: var(--v-e1cde);
}

.c-3526ed {
  font-size: 14px;
  color: var(--v-e1cde);
}

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

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

.c-079245 .c-e0660b {
  fill: var(--v-92d4e);
}

.c-079245 .c-e0660b.c-a26933 {
  fill: #FFD700;
}

.c-079245 .c-e0660b.c-fb2011 {
  fill: var(--v-92d4e);
}

.c-e86702 {
  color: var(--v-e1cde);
  line-height: 1.6;
  font-size: 15px;
}

.c-e86702 p {
  margin: 0;
}

/* Load More Button */
.c-e2292a {
  display: block;
  margin: 0 auto;
  background: var(--v-5adef);
  color: var(--v-bcf9b);
  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-e2292a:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .c-be6097 {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .c-be6097 h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  
  .c-2d3263 {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  
  .c-bd8fac {
    flex-direction: column;
    gap: 15px;
  }
  
  .c-58715b {
    font-size: 28px;
  }
  
  .c-736bd8 {
    width: 100%;
  }
  
  .c-828f9d {
    padding: 20px;
  }
  
  .c-8b419e {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .c-b51342 {
    width: 16px;
    height: 16px;
  }
  
  .c-5f5569 {
    padding: 20px;
  }
  
  .c-d09e3a {
    font-size: 28px;
    gap: 8px;
  }
  
  .c-3ca681 {
    flex-direction: column;
    gap: 10px;
  }
  
  .c-8b2ee8,
  .c-98ee95 {
    width: 100%;
  }
}


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

.c-7976f3 {
  background: var(--v-ae8f2);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--v-9d62d);
  border: 1px solid var(--v-884a6);
  position: relative;
  overflow: hidden;
}

.c-7976f3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--v-5adef);
}

.c-0cb1d9 {
  background: var(--v-ae8f2);
  color: var(--v-e1cde);
  border: 2px solid var(--v-c8cd7);
  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-0cb1d9::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-0cb1d9:hover::before {
  left: 100%;
}

.c-0cb1d9:hover {
  transform: translateY(-1px);
  box-shadow: var(--v-9d62d);
  border-color: var(--v-c8cd7);
}

.c-d0d040 {
  border-radius: 10px;
  background: var(--v-6ac89);
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--v-884a6);
}

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

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

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

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

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

.c-d0d040 ul li a:hover {
  color: var(--text-bright);
  transform: translateX(5px);
  border-left-color: var(--v-32892);
  box-shadow: var(--v-9d62d);
}

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

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

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

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

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

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

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

.c-9df086 {
  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-87782);
}

.c-48e81b,
.c-8e0640 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Column headings */
.c-48e81b h4,
.c-8e0640 h4 {
  margin: 0;
  color: var(--v-87782);
  font-size: 16px;
  font-weight: 600;
}

/* Paragraph styles */
.c-48e81b p,
.c-8e0640 p {
  margin: 0;
  line-height: 1.6;
  color: var(--v-eac96);
}

/* List styles - remove default bullets */
.c-48e81b ul,
.c-8e0640 ul,
.c-48e81b ol,
.c-8e0640 ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

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

/* Unordered list custom icons (checkmark) */
.c-48e81b ul li::before,
.c-8e0640 ul li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  color: var(--v-87782);
  font-weight: bold;
  font-size: 18px;
}

/* Ordered list custom numbering */
.c-48e81b ol li::before,
.c-8e0640 ol li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  color: var(--v-87782);
  font-weight: bold;
  font-size: 16px;
}

/* Counter initialization for ordered lists */
.c-48e81b ol,
.c-8e0640 ol {
  counter-reset: list-item;
}

/* Counter increment for each list item */
.c-48e81b ol li,
.c-8e0640 ol li {
  counter-increment: list-item;
}

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

/* Small device adjustments */
@media (max-width: 767px) {
  .c-9df086 {
    padding: 15px;
    gap: 15px;
    border-left-width: 3px;
  }
  
  .c-48e81b h4,
  .c-8e0640 h4 {
    font-size: 15px;
  }
}

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