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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Times New Roman', serif;
      background: #f5f3e8;
      color: #2a2a2a;
      line-height: 1.7;
      background-image:
        radial-gradient(circle at 20% 20%, #faf8f2 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, #efe9d8 0%, transparent 45%);
      background-attachment: fixed;
    }

    img {
      height: auto;
      max-width: 100%;
    }

    a {
      color: #8B4513;
    }

    .news-banner {
      background: #8B4513;
      color: white;
      padding: 12px 0;
      overflow: hidden;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      border-top: 3px solid #A0522D;
      border-bottom: 3px solid #A0522D;
    }

    .news-scroll {
      display: flex;
      white-space: nowrap;
      animation: scroll-left 28s linear infinite;
      font-family: 'Courier Prime', monospace;
      font-size: 0.95rem;
    }

    .news-item {
      padding-right: 90px;
      display: inline-block;
    }

    .news-item::before {
      content: "★ ";
      margin-right: 4px;
      color: #f5f3e8;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(100%);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    .container {
      max-width: 980px;
      margin: 0 auto;
      padding: 110px 20px 60px;
    }

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

    .eyebrow {
      font-family: 'Courier Prime', monospace;
      font-size: 0.95rem;
      color: #666;
      text-transform: lowercase;
      letter-spacing: 0.04em;
      margin-bottom: 10px;
    }

    .site-title {
      font-size: clamp(2.6rem, 6vw, 4rem);
      font-weight: 700;
      color: #8B4513;
      text-shadow: 2px 2px 0px #d4c4a0;
      letter-spacing: -1.5px;
      margin-bottom: 14px;
    }

    .subtitle {
      max-width: 720px;
      margin: 0 auto;
      color: #555;
      font-size: 1.05rem;
    }

    .animated-bar {
      height: 4px;
      width: 220px;
      margin: 24px auto 0;
      background: linear-gradient(90deg,
          #8B4513 0%,
          #CD853F 25%,
          #DEB887 50%,
          #CD853F 75%,
          #8B4513 100%);
      animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {

      0%,
      100% {
        transform: scaleX(1);
      }

      50% {
        transform: scaleX(1.08);
      }
    }

    .panel,
    .entry-panel,
    .footer-card {
      background: rgba(255, 255, 255, 0.68);
      border: 2px solid #d4c4a0;
      box-shadow:
        0 0 0 1px rgba(139, 69, 19, 0.08),
        0 10px 26px rgba(139, 69, 19, 0.12);
      position: relative;
      overflow: hidden;
    }

    .panel,
    .footer-card {
      padding: 28px;
      margin-bottom: 24px;
    }

    .entry-panel {
      padding: 30px;
      margin-bottom: 24px;
    }

    .panel::before,
    .entry-panel::before,
    .footer-card::before {
      content: "";
      position: absolute;
      top: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, #8B4513 50%, transparent 100%);
    }

    .section-label {
      display: inline-block;
      margin-bottom: 16px;
      padding: 5px 10px;
      background: #8B4513;
      color: white;
      font-family: 'Courier Prime', monospace;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      box-shadow: 2px 2px 0px #5d2f0a;
      transform: rotate(-1deg);
    }

    .tabs-wrap {
      margin-bottom: 24px;
    }

    .tabs-title {
      font-size: 1.2rem;
      color: #8B4513;
      margin-bottom: 14px;
    }

    .tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tab-button {
      appearance: none;
      border: 1px solid #cbb894;
      background: rgba(245, 243, 232, 0.95);
      color: #6a4726;
      padding: 10px 14px;
      cursor: pointer;
      display: inline-block;
      font-family: 'Courier Prime', monospace;
      font-size: 0.9rem;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .tab-button:hover {
      transform: translateY(-2px);
      border-color: #8B4513;
      background: #f8f4e8;
    }

    .tab-button.active {
      background: #8B4513;
      color: white;
      border-color: #8B4513;
      box-shadow: 2px 2px 0px #5d2f0a;
    }

    .entry-header {
      margin-bottom: 24px;
    }

    .entries-list {
      display: grid;
      gap: 24px;
    }

    .entry-card {
      background: rgba(255, 255, 255, 0.68);
      border: 2px solid #d4c4a0;
      box-shadow:
        0 0 0 1px rgba(139, 69, 19, 0.08),
        0 10px 26px rgba(139, 69, 19, 0.12);
      margin-bottom: 0;
      overflow: hidden;
      padding: 28px;
      position: relative;
    }

    .entry-card::before {
      content: "";
      position: absolute;
      top: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, #8B4513 50%, transparent 100%);
    }

    .entry-card .entry-title {
      font-size: clamp(1.55rem, 3vw, 2.1rem);
    }

    .entry-card .entry-title a {
      text-decoration: none;
    }

    .entry-title {
      font-size: clamp(1.9rem, 4vw, 2.7rem);
      color: #8B4513;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .entry-meta {
      font-family: 'Courier Prime', monospace;
      font-size: 0.9rem;
      color: #666;
    }

    .entry-intro {
      margin-top: 18px;
      color: #444;
      font-size: 1.04rem;
    }

    .qa-block+.qa-block {
      margin-top: 34px;
      padding-top: 28px;
      border-top: 1px solid rgba(139, 69, 19, 0.18);
    }

    .qa-question {
      font-size: clamp(1.35rem, 3vw, 1.9rem);
      color: #8B4513;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .qa-answer p+p {
      margin-top: 14px;
    }

    .qa-image-wrap {
      margin-top: 22px;
      display: flex;
      justify-content: center;
    }

    .polaroid {
      background: white;
      padding: 14px 14px 46px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
      transform: rotate(-1.5deg);
      width: min(100%, 540px);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .qa-block:nth-child(even) .polaroid {
      transform: rotate(1.5deg);
    }

    .polaroid:hover {
      transform: rotate(0deg) translateY(-2px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .polaroid img {
      width: 100%;
      display: block;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      filter: sepia(14%) contrast(1.05) saturate(0.96);
      border: 1px solid #eee;
    }

    .polaroid-caption {
      margin-top: 12px;
      text-align: center;
      font-family: 'Courier Prime', monospace;
      font-size: 0.8rem;
      color: #6b5a46;
      text-transform: lowercase;
    }

    .inline-left-image {
      display: block;
      max-width: min(100%, 420px);
      height: auto;
      margin: 0 0 16px 0;
    }

    .retro-badges {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .retro-badge {
      display: inline-block;
      background: #8B4513;
      color: white;
      padding: 4px 10px;
      font-family: 'Courier Prime', monospace;
      font-size: 0.75rem;
      transform: rotate(-1deg);
      box-shadow: 2px 2px 0px #5d2f0a;
    }

    .retro-badge:nth-child(even) {
      background: #A0522D;
      transform: rotate(1deg);
    }

    .footer-card p {
      color: #555;
    }

    .small-note {
      font-family: 'Courier Prime', monospace;
      font-size: 0.9rem;
      color: #666;
      margin-top: 12px;
    }

    .entry-nav {
      align-items: center;
      display: grid;
      gap: 12px;
      grid-template-columns: 1fr auto 1fr;
      margin: 0 0 24px;
    }

    .entry-nav .back-link {
      margin-top: 0;
    }

    .entry-nav .back-link:last-child {
      justify-self: end;
    }

    .gallery-photo {
      background: white;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.13);
      flex: 1 1 160px;
      min-width: 160px;
      padding: 10px;
      width: calc(33% - 8px);
    }

    .gallery-photo img {
      border: 1px solid #eee;
      display: block;
      filter: sepia(10%) contrast(1.04);
      height: 160px;
      object-fit: cover;
      width: 100%;
    }

    .card-image-row {
      align-items: flex-start;
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(3, 160px);
      justify-content: center;
      margin-top: 18px;
    }

    .card-image-row img {
      display: block;
      height: auto;
      max-width: 160px;
      width: 160px;
    }

    .photo-pair-row {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin: 16px auto 18px;
      max-width: 720px;
      width: 100%;
    }

    .photo-pair-row img {
      aspect-ratio: 16 / 10;
      background: #fff;
      border: 1px solid rgba(139, 69, 19, 0.16);
      box-shadow: 0 10px 24px rgba(139, 69, 19, 0.14);
      display: block;
      height: clamp(180px, 22vw, 260px);
      object-fit: cover;
      padding: 8px;
      width: 100%;
    }

    .photo-trio-row {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 18px auto 0;
      max-width: 820px;
      width: 100%;
    }

    .photo-trio-row img {
      aspect-ratio: 1 / 1;
      background: #fff;
      border: 1px solid rgba(139, 69, 19, 0.16);
      box-shadow: 0 10px 24px rgba(139, 69, 19, 0.14);
      display: block;
      height: clamp(180px, 20vw, 240px);
      object-fit: cover;
      padding: 8px;
      width: 100%;
    }

    .photo-quad-row {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin: 18px auto;
      max-width: 760px;
      width: 100%;
    }

    .photo-quad-row img {
      aspect-ratio: 1 / 1;
      background: #fff;
      border: 1px solid rgba(139, 69, 19, 0.16);
      box-shadow: 0 10px 24px rgba(139, 69, 19, 0.14);
      display: block;
      height: clamp(220px, 32vw, 340px);
      object-fit: cover;
      padding: 8px;
      width: 100%;
    }

    .entry-media-small {
      display: block;
      height: auto;
      margin: 18px auto 0;
      max-width: 260px;
      width: min(100%, 260px);
    }

    .entry-media {
      display: block;
      height: auto;
      margin: 18px auto 0;
      max-width: 620px;
      width: min(100%, 620px);
    }

    .entry-media.framed {
      background: #fff;
      border: 1px solid rgba(139, 69, 19, 0.16);
      box-shadow: 0 10px 24px rgba(139, 69, 19, 0.16);
      padding: 10px;
    }

    .entry-panel>.qa-block:first-of-type .entry-media {
      max-width: 440px;
      width: min(100%, 440px);
    }

    .music-embed {
      margin-top: 18px;
    }

    .music-embed iframe {
      border: 0;
      display: block;
      width: 100%;
    }

    .app-store-button {
      align-items: center;
      background: #171717;
      border: 2px solid #000;
      color: #fff;
      display: inline-flex;
      font-family: 'Courier Prime', monospace;
      font-size: 0.95rem;
      gap: 10px;
      margin-top: 18px;
      padding: 11px 16px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .app-store-button:hover {
      box-shadow: 4px 4px 0 #8B4513;
      color: #fff;
      transform: translate(-2px, -2px);
    }

    .app-store-button::before {
      content: "";
      border: 1px solid rgba(255, 255, 255, 0.7);
      display: inline-block;
      height: 24px;
      -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.05 12.42c-.03-2.93 2.39-4.34 2.5-4.41-1.37-2-3.49-2.27-4.24-2.3-1.8-.18-3.51 1.06-4.42 1.06-.92 0-2.33-1.03-3.83-1-1.97.03-3.79 1.15-4.8 2.91-2.05 3.56-.52 8.83 1.47 11.72.98 1.41 2.14 3 3.67 2.94 1.47-.06 2.03-.95 3.81-.95 1.77 0 2.28.95 3.84.92 1.59-.03 2.6-1.44 3.57-2.86 1.12-1.64 1.58-3.23 1.61-3.31-.04-.02-3.15-1.21-3.18-4.72zM14.13 3.81c.81-.98 1.36-2.35 1.21-3.71-1.17.05-2.58.78-3.42 1.76-.75.87-1.41 2.26-1.23 3.59 1.3.1 2.63-.66 3.44-1.64z'/%3E%3C/svg%3E") center / 16px 18px no-repeat;
      mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.05 12.42c-.03-2.93 2.39-4.34 2.5-4.41-1.37-2-3.49-2.27-4.24-2.3-1.8-.18-3.51 1.06-4.42 1.06-.92 0-2.33-1.03-3.83-1-1.97.03-3.79 1.15-4.8 2.91-2.05 3.56-.52 8.83 1.47 11.72.98 1.41 2.14 3 3.67 2.94 1.47-.06 2.03-.95 3.81-.95 1.77 0 2.28.95 3.84.92 1.59-.03 2.6-1.44 3.57-2.86 1.12-1.64 1.58-3.23 1.61-3.31-.04-.02-3.15-1.21-3.18-4.72zM14.13 3.81c.81-.98 1.36-2.35 1.21-3.71-1.17.05-2.58.78-3.42 1.76-.75.87-1.41 2.26-1.23 3.59 1.3.1 2.63-.66 3.44-1.64z'/%3E%3C/svg%3E") center / 16px 18px no-repeat;
      background: #fff;
      width: 24px;
    }

    .may-carousel {
      margin-top: 18px;
    }

    .may-carousel-stage {
      align-items: center;
      display: grid;
      gap: 12px;
      grid-template-columns: 44px minmax(0, 1fr) 44px;
    }

    .carousel-button {
      background: #fff7ea;
      border: 2px solid rgba(139, 69, 19, 0.35);
      color: #8B4513;
      cursor: pointer;
      font-family: 'Courier Prime', monospace;
      font-size: 1.7rem;
      height: 44px;
      line-height: 1;
      transition: background 0.2s ease, transform 0.2s ease;
      width: 44px;
    }

    .carousel-button:hover {
      background: rgba(139, 69, 19, 0.1);
      transform: translateY(-2px);
    }

    .may-carousel-stack {
      align-items: center;
      display: grid;
      grid-template-columns: 0.55fr 1fr 0.55fr;
      min-height: 420px;
      position: relative;
    }

    .may-carousel-photo {
      background: #fff;
      border: 1px solid rgba(139, 69, 19, 0.16);
      box-shadow: 0 10px 24px rgba(139, 69, 19, 0.16);
      padding: 10px;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .may-carousel-photo img {
      aspect-ratio: 4 / 5;
      display: block;
      object-fit: cover;
      width: 100%;
    }

    .may-carousel-photo.is-main {
      grid-column: 2;
      grid-row: 1;
      transform: translateY(-4px);
      z-index: 2;
    }

    .may-carousel-photo.is-prev,
    .may-carousel-photo.is-next {
      grid-row: 1;
      opacity: 0.72;
      z-index: 1;
    }

    .may-carousel-photo.is-prev {
      grid-column: 1 / 3;
      justify-self: start;
      max-width: 52%;
      transform: translate(4%, 28px) rotate(-5deg);
    }

    .may-carousel-photo.is-next {
      grid-column: 2 / 4;
      justify-self: end;
      max-width: 52%;
      transform: translate(-4%, 30px) rotate(5deg);
    }

    .may-carousel-caption {
      color: #6b5a46;
      font-family: 'Courier Prime', monospace;
      font-size: 0.82rem;
      margin-top: 12px;
      text-align: center;
      text-transform: lowercase;
    }

    .back-link {
      display: inline-block;
      margin-top: 16px;
      text-decoration: none;
      font-family: 'Courier Prime', monospace;
      border: 1px solid rgba(139, 69, 19, 0.28);
      padding: 9px 14px;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .back-link:hover {
      background: rgba(139, 69, 19, 0.08);
      transform: translateY(-2px);
    }

    .coming-soon-note {
      margin-top: 14px;
      font-family: 'Courier Prime', monospace;
      font-size: 0.9rem;
      color: #7b684d;
    }

    @media (max-width: 900px) {
      .photo-trio-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 640px;
      }
    }

    @media (max-width: 700px) {
      .container {
        padding: 100px 14px 50px;
      }

      .panel,
      .entry-card,
      .entry-panel,
      .footer-card {
        padding: 22px 18px;
      }

      .tabs {
        flex-direction: column;
      }

      .tab-button {
        width: 100%;
        text-align: left;
      }

      .entry-nav {
        grid-template-columns: 1fr;
      }

      .entry-nav .back-link,
      .entry-nav .back-link:last-child {
        justify-self: stretch;
        text-align: center;
      }

      .card-image-row {
        grid-template-columns: repeat(3, minmax(0, 120px));
      }

      .card-image-row img {
        max-width: 120px;
        width: 120px;
      }

      .photo-pair-row {
        grid-template-columns: 1fr;
        max-width: min(420px, 100%);
      }

      .photo-pair-row img {
        height: clamp(190px, 58vw, 280px);
      }

      .photo-trio-row {
        grid-template-columns: 1fr;
        max-width: min(420px, 100%);
      }

      .photo-trio-row img {
        height: clamp(190px, 58vw, 280px);
      }

      .photo-quad-row {
        grid-template-columns: 1fr;
        max-width: min(420px, 100%);
      }

      .photo-quad-row img {
        height: clamp(220px, 70vw, 340px);
      }

      .may-carousel-stage {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
      }

      .carousel-button {
        font-size: 1.35rem;
        height: 36px;
        width: 36px;
      }

      .may-carousel-stack {
        min-height: 300px;
      }

      .may-carousel-photo {
        padding: 7px;
      }
    }
