    .navbar {
      background: #dd7702;
      color: #f5f5f5;
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-color: black;
      border-width: 2px;
      border-style: solid;

    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #FFFDD0;
    }

    body.dark-mode {
      background-color: #1a1a1a;
      color: #f5f5f5;
    }

    body.dark-mode .navbar {
      background: #8b4b01;
    }

    body.dark-mode .feature,
    body.dark-mode .review,
    body.dark-mode .add-review,
    body.dark-mode .settings-panel {
      background: #2a2a2a;
      border-color: #555;
    }

    body.dark-mode h2,
    body.dark-mode h3,
    body.dark-mode p {
      color: #f5f5f5;
    }

    .feature {
      background: #f5f5f5;
      padding: 1rem;
      margin: 1rem;
      border-radius: 8px;
      text-align: center;
      border-color: black;
      border-width: 2px;
      border-style: solid;
    }

    .navbar a {
      color: #f5f5f5;
      text-decoration: none;

    }

    .navbar nav {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .reviews {
      max-width: 760px;
      margin: 1.5rem auto;
      padding: 0 1rem 1.5rem;
    }

    .reviews h2 {
      margin: 0 0 1rem;
      color: #252525;
      text-align: center;
    }

    .review-container {
      --loop-distance: 50%;
      border: 2px solid #000;
      border-radius: 14px;
      padding: 0.9rem;
      overflow: hidden;
      background: #fff8e8;
      height: 270px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .review-track {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      will-change: transform;
      animation: review-flow 20s linear infinite;
    }

    .review-container:hover .review-track,
    .review-container:focus-within .review-track,
    .reviews.is-paused .review-track {
      animation-play-state: paused;
    }

    .review {
      border: 2px solid #000;
      border-radius: 12px;
      background: #fff;
      padding: 0.85rem;
      min-height: 88px;
    }

    .review p {
      margin: 0;
      color: #1f1f1f;
      line-height: 1.35;
    }

    .review .stars {
      color: #b86a00;
      letter-spacing: 0.08rem;
      margin-top: 0.45rem;
      font-weight: bold;
    }

    .review h3 {
      margin: 0.3rem 0 0;
      font-size: 0.95rem;
      color: #343434;
    }

    .add-review {
      margin-top: 1rem;
      display: grid;
      gap: 0.45rem;
      background: #fff8e8;
      border: 2px solid #000;
      border-radius: 14px;
      padding: 1rem;
    }

    .settings-panel {
      max-width: 760px;
      margin: 1.5rem auto;
      padding: 1.5rem;
      background: #fff8e8;
      border: 2px solid #000;
      border-radius: 14px;
    }

    .toggle-container {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      font-weight: bold;
    }

    #theme-toggle:focus-visible {
      outline: 3px solid #006aa6;
      outline-offset: 2px;
    }

    .add-review h3 {
      margin: 0 0 0.4rem;
    }

    .add-review input,
    .add-review select,
    .add-review button {
      font: inherit;
      border: 2px solid #000;
      border-radius: 8px;
      padding: 0.55rem;
    }

    .add-review button {
      background: #dd7702;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
    }

    .add-review button:focus-visible,
    .add-review input:focus-visible,
    .add-review select:focus-visible {
      outline: 3px solid #006aa6;
      outline-offset: 1px;
    }

    @keyframes review-flow {
      from {
        transform: translateY(calc(-1 * var(--loop-distance)));
      }

      to {
        transform: translateY(0);
      }
    }

    @media (max-width: 520px) {
      .review-container {
        height: 240px;
      }

      .review {
        padding: 0.75rem;
        min-height: 80px;
      }

      .review p {
        font-size: 0.93rem;
      }
    }

    .review-track {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      will-change: transform;
      /* Use 3d transform for GPU acceleration (smoother) */
      transform: translateZ(0);
      animation: review-flow 20s linear infinite;
    }

  

    @media (prefers-reduced-motion: reduce) {
      .review-container {
        overflow-y: auto;
        height: auto;
        max-height: 320px;
      }

      .review-track {
        animation: none;
        transform: none;
      }

      .review.review-clone {
        display: none;
      }
    }

    .review-actions button {
      font-size: 0.8rem;
      padding: 4px 8px;
      border: 1px solid #000;
      border-radius: 4px;
      background: #fff;
      cursor: pointer;
      transition: 0.2s;
    }

    .review-actions button:hover {
      background: #f0f0f0;
      transform: scale(1.05);
    }

    /* Ensure buttons don't show up in the cloned reviews if they shouldn't work */
    .review-clone .review-actions {
      display: none;
    }

    /* Used for text size scaling with rem units */
    :root {
      /* This is the default font size */
      --base-font-size: 16px;
    }

    body {
      font-size: 1rem;
      transition: font-size 0.2s ease;
    }

    .feature p {
      font-size: 1.1rem;
      /* Changed from px to rem */
    }

    .review p {
      font-size: 1rem;
      /* Use rem so it scales */
    }

    .room-desc {
      font-size: 1rem;
      /* Use rem so it scales */
    }

    html {
      font-size: var(--base-font-size);
    }

    /* Use relative units (rem) for your other elements so they scale too! */
    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

    p {
      font-size: 1rem;
    }

    .settings-grid {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      max-width: 760px;
      margin: 0 auto;
    }

    .about-content {
      margin-top: 2rem;
    }

    /* Ensure font-slider is easy to use */
    .font-control {
      flex-grow: 1;
      max-width: 300px;
    }

    #font-slider {
      width: 100%;
      accent-color: #dd7702;
    }

    @media (max-width: 600px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Rooms Page Styles */
    .rooms-hero {
      text-align: center;
      padding: 3rem 1rem 2rem;
      background: linear-gradient(135deg, #dd7702 0%, #8b4b01 100%);
      color: #fff;
    }

    .rooms-hero h2 {
      margin: 0 0 0.5rem;
      font-size: 2.2rem;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .rooms-hero p {
      margin: 0;
      font-size: 1.1rem;
      opacity: 0.95;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 1.5rem;
    }

    .room-card {
      background: #fff8e8;
      border: 3px solid #000;
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 6px 6px 0 #000;
    }

    .room-card:hover {
      transform: translateY(-8px);
      box-shadow: 10px 10px 0 #dd7702;
    }

    .room-icon {
      background: linear-gradient(135deg, #dd7702, #8b4b01);
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
    }

    .room-content {
      padding: 1.5rem;
    }

    .room-content h3 {
      margin: 0 0 0.5rem;
      font-size: 1.4rem;
      color: #252525;
    }

    .room-desc {
      color: #555;
      margin: 0 0 1rem;
      line-height: 1.5;
    }

    .difficulty {
      display: inline-block;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .difficulty.easy {
      background: #d4edda;
      color: #155724;
    }

    .difficulty.medium {
      background: #fff3cd;
      color: #856404;
    }

    .enter-btn {
      display: block;
      width: 100%;
      max-width: 180px;
      margin: 0 auto;
      padding: 0.8rem 1.5rem;
      background: #dd7702;
      color: #fff;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      border-radius: 8px;
      border: 2px solid #000;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .enter-btn:hover {
      background: #8b4b01;
      transform: scale(1.02);
    }

    body.dark-mode .rooms-hero {
      background: linear-gradient(135deg, #8b4b01 0%, #5a3208 100%);
    }

    body.dark-mode .room-card {
      background: #2a2a2a;
      border-color: #555;
      box-shadow: 6px 6px 0 #444;
    }

    body.dark-mode .room-card:hover {
      box-shadow: 10px 10px 0 #dd7702;
    }

    body.dark-mode .room-content h3 {
      color: #f5f5f5;
    }

    body.dark-mode .room-desc {
      color: #aaa;
    }

    @media (max-width: 520px) {
      .rooms-hero h2 {
        font-size: 1.6rem;
      }

      .rooms-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }

      .room-icon {
        height: 100px;
        font-size: 3rem;
      }
    }