    :root {
      --bg-deep: #080014;
      --bg-plum: #22002c;
      --accent-gold: #ffcc33;
      --accent-gold-soft: #ffe58a;
      --accent-red: #c2185b;
      --accent-magenta: #ff3366;
      --accent-cyan: #00f6ff;
      --accent-purple: #7b1fa2;
      --text-main: #f8f5ff;
      --text-muted: #c8bfe0;
      --machine-face: #2b1539;
      --machine-face-inner: #3b214b;
      --border-radius-large: 24px;
      --reel-width: 24px;
      --cell: 44px;      /* reel cell height */
      --spin-ms: 1200;   /* base spin duration */
    }

    * { box-sizing: border-box; }

    html, body {
/*      margin: 0;
      padding: 0;
      min-height: 100%;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      color: var(--text-main);*/
/*      background:
        radial-gradient(circle at top, #3a0058 0, transparent 50%),
        radial-gradient(circle at bottom, #000 0, transparent 55%),
        linear-gradient(145deg, var(--bg-deep), var(--bg-plum));
      background-attachment: fixed;*/
    }

    body {
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    main.app {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 24px 16px 32px;
    }

    .app-header {
      text-align: center;
      margin-bottom: 24px;
    }

    .title-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }

    .title-icon {
      font-size: 3rem;
      filter: drop-shadow(0 0 8px rgba(255, 204, 51, 0.6));
      animation: pulse-glow 2s ease-in-out infinite;
    }

    @keyframes pulse-glow {
      0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 204, 51, 0.6));
        transform: scale(1);
      }
      50% {
        filter: drop-shadow(0 0 16px rgba(255, 204, 51, 0.9));
        transform: scale(1.05);
      }
    }

    .app-header h1 {
      font-size: clamp(2.2rem, 3vw, 2.8rem);
      margin: 0;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: linear-gradient(
        to right,
        var(--accent-gold),
        var(--accent-magenta),
        var(--accent-cyan)
      );
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
    }

    .app-header p {
      margin: 0;
      font-size: 0.98rem;
      color: var(--text-muted);
    }

    /* Google AdSense compatibility */
    .ad-container {
      max-width: 1100px;
      margin: 16px auto;
      padding: 0 16px;
      text-align: center;
      min-height: 90px;
    }

    .ad-container.top-ad {
      margin-top: 0;
      margin-bottom: 24px;
    }

    .ad-container.bottom-ad {
      margin-top: 32px;
      margin-bottom: 16px;
    }

    .ad-label {
      font-size: 0.7rem;
      color: var(--text-muted);
      opacity: 0.6;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .machine-section {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .machine-outer {
      position: relative;
      perspective: 1200px;
      max-width: 900px;
      margin: 0 auto;
    }

    .no-3d .machine-outer { perspective: none; }

    .machine-frame {
      position: relative;
      border-radius: var(--border-radius-large);
      padding: 24px 20px 20px;
      background:
        linear-gradient(145deg, #4a274a, #120516),
        radial-gradient(circle at top left, #7b2cbf, transparent 60%),
        radial-gradient(circle at bottom right, #ff8a00, transparent 60%);
      box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.06),
        0 0 24px rgba(0, 0, 0, 0.9),
        0 32px 72px rgba(0, 0, 0, 0.95);
      transform-style: preserve-3d;
      transform: none; /* fixed, no tilt */
      transition: transform 280ms ease-out, box-shadow 280ms ease-out;
    }

    .no-3d .machine-frame { transform: none; }

    /* Bulb border strips */
    .bulb-strip {
      position: absolute;
      display: flex;
      pointer-events: none;
      z-index: 2;
    }

    .bulb-strip.top,
    .bulb-strip.bottom {
      left: 11%;
      right: 11%;
      justify-content: space-between;
    }

    .bulb-strip.top { top: 6px; }
    .bulb-strip.bottom { bottom: 6px; }

    .bulb-strip.left,
    .bulb-strip.right {
      top: 18%;
      bottom: 18%;
      flex-direction: column;
      justify-content: space-between;
    }

    .bulb-strip.left { left: 6px; }
    .bulb-strip.right { right: 6px; }

    .bulb {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 30%, #fff 0, #fff 20%, #ffd76a 45%, #b57b11 70%, #704813 100%);
      box-shadow:
        0 0 6px rgba(255, 204, 51, 0.85),
        0 0 16px rgba(255, 204, 51, 0.7);
      filter: brightness(1);
    }

    .machine-frame.spinning .bulb {
      animation: bulb-marquee 0.9s linear infinite;
      animation-delay: calc(var(--i) * 0.06s);
    }

    @keyframes bulb-marquee {
      0%, 30% {
        filter: brightness(0.7);
        box-shadow:
          0 0 3px rgba(255, 204, 51, 0.4),
          0 0 8px rgba(255, 204, 51, 0.3);
      }
      45% {
        filter: brightness(1.9);
        box-shadow:
          0 0 8px rgba(255, 255, 255, 1),
          0 0 20px rgba(255, 204, 51, 1);
      }
      100% {
        filter: brightness(0.7);
        box-shadow:
          0 0 3px rgba(255, 204, 51, 0.4),
          0 0 8px rgba(255, 204, 51, 0.3);
      }
    }

    .machine-frame.jackpot .bulb {
      animation: bulb-flash 0.35s ease-in-out 2;
    }

    @keyframes bulb-flash {
      0%, 100% {
        filter: brightness(1);
        box-shadow:
          0 0 6px rgba(255, 204, 51, 0.6),
          0 0 10px rgba(255, 204, 51, 0.4);
      }
      50% {
        filter: brightness(1.9);
        box-shadow:
          0 0 12px rgba(255, 255, 255, 1),
          0 0 24px rgba(255, 204, 51, 1);
      }
    }

    .machine-body {
      position: relative;
      border-radius: calc(var(--border-radius-large) - 6px);
      padding: 18px 18px 16px;
      background: linear-gradient(160deg, #1b0f27, #321b42);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 12px 24px rgba(255, 255, 255, 0.05),
        0 16px 40px rgba(0, 0, 0, 0.9);
      z-index: 1;
    }

    .machine-display-block {
      background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 65%),
        linear-gradient(135deg, var(--machine-face), var(--machine-face-inner));
      border-radius: 18px;
      padding: 14px 14px 12px;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 12px 28px rgba(0, 0, 0, 0.85);
      margin-bottom: 16px;
    }

    .display-header {
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-gold-soft);
      opacity: 0.85;
      margin-bottom: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .display-header span.status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
      margin-left: 6px;
      background: radial-gradient(circle, #0f0 0, #0f0 40%, #093 70%, transparent 100%);
      box-shadow:
        0 0 6px rgba(0, 255, 128, 0.8),
        0 0 12px rgba(0, 255, 128, 0.6);
    }

    .reel-window {
      position: relative;
      border-radius: 14px;
      padding: 10px;
      background:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.18), transparent 55%),
        linear-gradient(180deg, #140b24, #1f1033);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.9);
      overflow: hidden;
    }

    /* Reels container (reference-style grid + light rim) */
    .reels {
      position: relative;
      display: grid;
      justify-content: center;
      gap: 4px;
      grid-template-columns: repeat(var(--cols, 12), var(--reel-width));
      width: calc(28 * var(--reel-width) + 27 * 4px + 12px);
      padding: 4px 6px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 4px 12px rgba(0, 0, 0, 0.6),
        inset 0 -4px 12px rgba(0, 0, 0, 0.6);
      overflow: hidden;
    }

    .reels.light-rim {
      border-color: rgba(212, 175, 55, 0.9);
      box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.95),
        0 0 24px rgba(212, 175, 55, 0.85),
        inset 0 0 24px rgba(212, 175, 55, 0.75);
      animation: rimBlink 140ms steps(2) infinite;
    }

    @keyframes rimBlink {
      0%, 50% { filter: brightness(1); }
      100% { filter: brightness(1.25); }
    }

    .reel {
      width: var(--reel-width);
      height: var(--cell);
      overflow: hidden;
      border-radius: 10px;
      background: radial-gradient(
        circle at 50% 0,
        rgba(255, 255, 255, 0.16),
        transparent 70%
      );
      box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.85),
        0 4px 10px rgba(0, 0, 0, 0.6);
      position: relative;
    }

    .strip { will-change: transform; transform: translateY(0); }

    .symbol {
      height: var(--cell);
      display: grid;
      place-items: center;
      font-weight: 600;
      font-size: 1.08rem;
      color: var(--accent-cyan);
      text-shadow:
        0 0 10px rgba(0, 246, 255, 0.9),
        0 0 16px rgba(0, 0, 0, 0.7);
    }

    .password-output {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .password-output input {
      flex: 1 1 auto;
      min-width: 0;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: radial-gradient(circle at top, #280c3d, #13021c);
      color: var(--accent-gold-soft);
      font-size: 0.95rem;
      letter-spacing: 0.12em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      outline: none;
      box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.75),
        0 0 12px rgba(255, 255, 255, 0.04);
    }

    .password-output input::placeholder {
      color: rgba(255, 255, 255, 0.35);
    }

    .btn, .pill-button {
      position: relative;
      border-radius: 999px;
      border: none;
      padding: 8px 14px;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      color: #1a061e;
      background: radial-gradient(circle at 30% 10%, #fffbe5 0, #ffe58a 45%, #ffb300 80%);
      box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.8),
        0 0 18px rgba(255, 204, 51, 0.8);
      transition:
        transform 120ms ease-out,
        box-shadow 120ms ease-out,
        filter 120ms ease-out;
    }

    .btn:hover, .pill-button:hover {
      transform: translateY(-1px) scale(1.03);
      box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 225, 120, 0.85);
      filter: brightness(1.05);
    }

    .btn:active, .pill-button:active {
      transform: translateY(1px) scale(0.98);
      box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(255, 204, 51, 0.7);
    }

    .btn:focus-visible, .pill-button:focus-visible {
      outline: 2px solid var(--accent-cyan);
      outline-offset: 2px;
    }

    .copy-toast {
      font-size: 0.8rem;
      color: var(--accent-cyan);
      opacity: 0;
      transform: translateY(2px);
      transition: opacity 160ms ease-out, transform 160ms ease-out;
    }

    .copy-toast.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .toast {
      position: fixed;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: #0d0a13;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 10px 14px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
      opacity: 0;
      transition: 0.25s ease;
      z-index: 1000;
    }

    .toast.on {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .machine-controls {
      margin-top: 14px;
      padding: 12px 12px 14px;
      border-radius: 14px;
      background: linear-gradient(
        180deg,
        rgba(9, 3, 24, 0.92),
        rgba(10, 4, 20, 0.98)
      );
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 6px 20px rgba(0, 0, 0, 0.9);
    }

    .control-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) minmax(0, 1.6fr);
      gap: 10px;
      align-items: flex-start;
    }

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

    .control-group { text-align: left; }

    .control-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .control-label span.value {
      color: var(--accent-gold-soft);
      font-weight: 600;
    }

    .length-slider {
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        var(--accent-magenta),
        var(--accent-gold),
        var(--accent-cyan)
      );
      outline: none;
      box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.7),
        0 0 10px rgba(255, 255, 255, 0.06);
    }

    .length-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #fff 0, #ffe58a 45%, #ffb300 80%);
      border: 1px solid rgba(0, 0, 0, 0.7);
      box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(255, 204, 51, 0.9);
      cursor: pointer;
      margin-top: -6px;
    }

    .length-slider::-moz-range-thumb {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #fff 0, #ffe58a 45%, #ffb300 80%);
      border: 1px solid rgba(0, 0, 0, 0.7);
      box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(255, 204, 51, 0.9);
      cursor: pointer;
    }

    .length-slider::-moz-range-track {
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        var(--accent-magenta),
        var(--accent-gold),
        var(--accent-cyan)
      );
    }

    .switch-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
    }

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

    .pill-toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #2d1639, #120415);
      color: var(--text-muted);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 3px 6px rgba(0, 0, 0, 0.9);
      user-select: none;
    }

    .pill-toggle input { display: none; }

    .toggle-knob {
      width: 26px;
      height: 16px;
      border-radius: 999px;
      background: linear-gradient(180deg, #120016, #2a0636);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 6px rgba(0, 0, 0, 0.9);
      position: relative;
    }

    .toggle-knob::before {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #fff, #ffd76a, #ffb300);
      box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 0 6px rgba(255, 204, 51, 0.8);
      transition: transform 140ms ease-out;
    }

    .pill-toggle input:checked + .toggle-knob::before {
      transform: translateX(8px);
    }

    .pill-toggle input:checked ~ .toggle-label {
      color: var(--accent-gold-soft);
    }

    .pill-toggle:hover {
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.09),
        0 4px 8px rgba(0, 0, 0, 0.95);
    }

    .toggle-label { flex: 1; }

    .constraints {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4px;
      margin-top: 4px;
    }

    .constraints .pill-toggle {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
    }

    .hint {
      font-size: 0.75rem;
      color: var(--accent-cyan);
      margin-top: 4px;
      opacity: 0.75;
    }

    .sound-control {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
      text-align: right;
    }

    .pill-button {
      width: 100%;
      justify-content: center;
    }

    .pill-button.muted {
      background: radial-gradient(circle at 30% 10%, #f5f5f5 0, #d5d5d5 45%, #999 80%);
      box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(180, 180, 180, 0.5);
      color: #333;
    }

    .sound-caption {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .error-message {
      margin-top: 8px;
      font-size: 0.78rem;
      color: #ff8080;
      min-height: 0.9em;
    }

    .spin-row {
      margin-top: 10px;
      display: flex;
      justify-content: center;
    }

    .spin-btn {
      padding: 10px 22px;
      font-size: 0.95rem;
      max-width: 280px;
      width: 100%;
      text-align: center;
    }

    .history-section {
      margin-top: 22px;
      padding: 12px 14px 10px;
      border-radius: 18px;
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%),
        linear-gradient(160deg, rgba(7, 2, 18, 0.96), rgba(10, 4, 24, 0.98));
      box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.9),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .history-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }

    .history-header h2 {
      font-size: 0.9rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin: 0;
    }

    .history-header span {
      font-size: 0.76rem;
      color: rgba(200, 191, 224, 0.8);
    }

    .history-list {
      list-style: none;
      margin: 4px 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 6px;
    }

    .history-list li {
      padding: 6px 8px;
      border-radius: 999px;
      background: radial-gradient(circle at top, #241338, #11051d);
      border: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.78rem;
      color: var(--accent-gold-soft);
      letter-spacing: 0.08em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: pointer;
      box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.85),
        0 0 10px rgba(255, 255, 255, 0.05);
      transition: transform 120ms ease-out, box-shadow 120ms ease-out,
        border-color 120ms ease-out;
    }

    .history-list li:hover {
      transform: translateY(-1px);
      border-color: rgba(0, 246, 255, 0.6);
      box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.95),
        0 0 16px rgba(0, 246, 255, 0.5);
    }

    .history-list li:focus-visible {
      outline: 2px solid var(--accent-cyan);
      outline-offset: 2px;
    }

    .confetti-piece {
      position: fixed;
      top: -10px;
      width: 6px;
      height: 14px;
      border-radius: 2px;
      opacity: 0.9;
      z-index: 999;
      animation-name: confettiFall;
      animation-timing-function: linear;
      animation-fill-mode: forwards;
      pointer-events: none;
    }

    @keyframes confettiFall {
      0% {
        transform: translate3d(0, 0, 0) rotateZ(0deg);
        opacity: 1;
      }
      100% {
        transform: translate3d(15px, 100vh, 0) rotateZ(540deg);
        opacity: 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .confetti-piece {
        animation: none !important;
        display: none !important;
      }
      .machine-frame {
        transition: none !important;
      }
    }

    @media (max-width: 640px) {
      .machine-frame { padding: 18px 14px 16px; }
      .machine-body { padding: 12px 10px 10px; }
      .password-output {
        flex-direction: column;
        align-items: stretch;
      }
      .password-output .btn {
        width: 100%;
        justify-content: center;
      }
      .sound-control {
        align-items: flex-start;
        text-align: left;
      }
      .reels {
        grid-template-columns: repeat(auto-fit, minmax(var(--reel-width), 1fr));
        width: 100%;
        justify-content: flex-start;
      }
    }

    footer.app-footer {
      margin-top: 12px;
      text-align: center;
      font-size: 0.72rem;
      color: rgba(200, 191, 224, 0.65);
    }

/*    .content-section {
      max-width: 900px;
      margin: 32px auto 24px;
      padding: 24px 20px;
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%),
        linear-gradient(160deg, rgba(7, 2, 18, 0.96), rgba(10, 4, 24, 0.98));
      border-radius: 18px;
      box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.9),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      line-height: 1.7;
    }

    .content-section h2 {
      font-size: 1.5rem;
      color: var(--accent-gold);
      margin-top: 28px;
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }

    .content-section h2:first-of-type {
      margin-top: 0;
    }

    .content-section h3 {
      font-size: 1.2rem;
      color: var(--accent-cyan);
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .content-section p {
      margin-bottom: 16px;
      color: var(--text-muted);
    }

    .content-section ul,
    .content-section ol {
      margin: 12px 0 16px 20px;
      padding-left: 20px;
      color: var(--text-muted);
    }

    .content-section li {
      margin-bottom: 10px;
    }

    .content-section strong {
      color: var(--text-main);
      font-weight: 600;
    }

    @media (max-width: 640px) {
      .content-section {
        padding: 18px 16px;
        margin: 24px 16px 18px;
      }

      .content-section h2 {
        font-size: 1.3rem;
      }

      .content-section h3 {
        font-size: 1.1rem;
      }*/
    }