  
    @font-face {
      font-family: "GENSCO";
      src: url("https://kikuzakura.com/fonts/GENSCO.ttf") format("truetype");
    }

    @font-face {
      font-family: "Darka";
      src: url("https://kikuzakura.com/fonts/Darka%20Regular.ttf") format("truetype");
    }

    @font-face {
      font-family: "Crusades";
      src: url("https://kikuzakura.com/fonts/Crusades.ttf") format("truetype");
    }

    :root {
      --navy: #151515;
      --background: #151515;
      --text: #ededed;
      --text-muted: #b8b8b8;
      --muted: #c9c9c9;
      --border: #2a2a2a;
      --border-light: #252525;
      --white: #ffffff;
      --card-bg-inner: #161616;
      --accent: #ffd1da;
      --font-primary: "GENSCO", Arial, sans-serif;
      --font-logo: "Darka";
      --font-subheading: "Crusades", serif;
    }

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

    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: var(--background);
      color: var(--white);
      font-family: var(--font-primary);
      background-image: url("https://kikuzakura.com/SiteAssets/WebBackground2.png");
      height: 100%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    body.iframe-page {
      background: #0000;
      min-height: 0;
      display: block;
      padding: 12px;
    }

    body.home-page {
      text-align: left;
    }

    .home-image {
      display: block;
      width: min(260px, 90vw);
      height: auto;
      margin: 24px auto 0;
      border-radius: 15px;
    }

    body.iframe-page h3 {
      margin-bottom: 10px;
    }

    body.iframe-page p {
      margin: 0;
      font-size: 17px;
      line-height: 1.5;
    }

    body.iframe-page a {
      color: var(--accent);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    body.iframe-page a:hover,
    body.iframe-page a:focus-visible {
      color: var(--white);
      text-decoration: underline;
    }

    .about-page {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 16px 32px;
    }

    .subheading-text {
      font-family: var(--font-subheading);
      font-size: 1.3rem;
    }

    .about-hero-image {
      display: block;
      width: min(320px, 72vw);
      height: auto;
      border: 20px transparent;
      border-image: url("https://kikuzakura.com/SiteAssets/tumblr_0b19a2c541b56294eb1d3e695f11f049_fe12ba9b_1280.png");
      border-image-slice: 30%;
      border-image-repeat: round;
      border-image-width: 20px;
      border-image-outset: 15px;
      border-radius: 15px;
    }

    header {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      padding: 10px 40px 12px;
      background: transparent;
      color: var(--white);
      text-align: center;
    }

    .logo {
      font-family: var(--font-logo);
      font-size: 4.2rem;
      letter-spacing: 0.05em;
      line-height: 1.1;
      color: var(--white);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s ease;
      display: block;
    }

    .logo:hover {
      color: var(--accent);
    }

    header nav {
      display: flex;
      gap: 24px;
    }

    header nav a {
      color: var(--white);
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.2s ease;
    }

    header nav a:hover,
    header nav a.active {
      color: var(--accent);
    }

    .layout {
      display: flex;
      flex: 1;
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
    }

     aside {
      width: 140px;
      flex-shrink: 0;
      position: relative;
      left: 150px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 18px 10px;
      font-family: var(--font-primary);
    }

    aside::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("https://kikuzakura.com/SiteAssets/Roses%20And%20Teacups.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.80;
      pointer-events: none;
    }

    aside > * {
      position: relative;
      z-index: 1;
    }

    aside h2 {
      margin-bottom: 10px;
      color: black;
      font-size: 1.35rem;
      text-align: center;
      text-shadow: 2px 2px 2px pink;;
    }

    aside ul {
      list-style: none;
    }

    aside li + li {
      margin-top: 4px;
    }

    aside a {
      display: block;
      padding: 8px 10px;
      border-radius: 6px;
      color: black;
      text-decoration: none;
      transition: color 0.2s ease;
      font-size: 1.35rem;
      text-align: center;
      text-shadow: 2px 2px 2px pink;;
     
    }

    aside a:hover,
    aside a.active {
      color: var(--accent);
    }

    .layout > .content-section {
      flex: 1;
      padding: 4px;
    }

    .layout > .content-section h1 {
      margin-bottom: 16px;
      color: var(--text);
      font-size: clamp(2.1rem, 5vw, 3.7rem);
      line-height: 1.1;
    }

    .layout > .content-section p {
      max-width: 680px;
      color: var(--white);
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .content-section {
      min-width: 0;
      min-height: 0;
      margin: 0;
      padding: 0;
      border: 0;
      display: flex;
      flex-direction: column;
    }

    .content-section object {
      display: block;
      width: 75%;
      height: 100%;
      align-self: center;
      min-height: 500px;
      border-radius: 9px;
      overflow: hidden;
      box-sizing: border-box;
    }

    footer {
      padding: 8px 20px;
      background: transparent;
      color: var(--white);
      text-align: center;
      font-size: 0.95rem;
    }

    .corner-image {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 70px;
      height: auto;
      opacity: 0.9;
      pointer-events: none;
      z-index: 10;
    }

    .gallery-page {
      padding-top: 6px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-page h3 {
      font-family: var(--font-subheading);
      font-size: 1.9rem;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .gallery-page p {
      color: var(--white);
      margin-bottom: 56px;
      font-size: 1rem;
    }

    .gallery-section {
      margin-top: 20px;
    }

    .gallery-copy {
      margin-top: 15px;
      width: 100%;
      max-width: none;
    }

    .gallery-copy h4 {
      margin: 0 0 6px;
      color: var(--text);
      font-family: var(--font-primary);
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.08em;
    }

    .gallery-copy p {
      margin: 0;
      color: var(--white);
      font-size: 1rem;
      line-height: 1.7;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 35px;
      row-gap: 36px;
    }

    .gallery-grid-second-row {
      margin-top: 40px;
    }

    .gallery-card,
    .slideshow-main {
      background: transparent;
      border: 0;
      border-radius: 6px;
      box-shadow: none;
      cursor: pointer;
    }

    .gallery-card {
      overflow: visible;
      display: flex;
      flex-direction: column;
      transition: none;
      margin-bottom: 8px;
      position: relative;
    }

    .gallery-card.slideshow-card {
      grid-column: 1 / -1;
      width: min(100%, 760px);
      margin: 0 auto 8px;
      justify-self: center;
    }

    .gallery-card a {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .gallery-card a:hover figcaption {
      color: var(--accent);
    }

    .gallery-card img {
      display: block;
      width: 100%;
      border-radius: 15px;
      overflow: hidden;
      object-fit: cover;
      background: transparent;
      box-sizing: border-box;
      border: 20px transparent;
      border-image: url("https://kikuzakura.com/SiteAssets/tumblr_0b19a2c541b56294eb1d3e695f11f049_fe12ba9b_1280.png");
      border-image-slice: 30%;
      border-image-repeat: round;
      border-image-width: 20px;
      border-image-outset: 15px;
      position: relative;
      z-index: 2;
    }

    .slideshow-main {
      position: relative;
      width: 100%;
      background: transparent;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      box-sizing: border-box;
      border: 20px transparent;
      border-image: url("https://kikuzakura.com/SiteAssets/tumblr_0b19a2c541b56294eb1d3e695f11f049_fe12ba9b_1280.png");
      border-image-slice: 30%;
      border-image-repeat: round;
      border-image-width: 20px;
      border-image-outset: 15px;
      border-radius: 15px;
      position: relative;
      z-index: 2;
    }

    .slideshow-main img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 70vh;
      object-fit: contain;
      object-position: center;
      border-radius: 15px;
      background: transparent;
      box-sizing: border-box;
      border: 0;
      box-shadow: none;
      cursor: zoom-in;
      position: relative;
      z-index: 2;
    }

    .slideshow-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      border: 0;
      border-radius: 50%;
      background: transparent;
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.2rem;
      line-height: 1;
      cursor: pointer;
      z-index: 2;
      opacity: 0.7;
      transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .slideshow-nav:hover,
    .slideshow-nav:focus-visible {
      opacity: 1;
      background: transparent;
      border-color: rgba(255, 255, 255, 0.35);
      outline: none;
    }

    .slideshow-nav.prev {
      left: 10px;
      background-image: url("https://kikuzakura.com/SiteAssets/Handright.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      font-size: 0;
    }

    .slideshow-nav.next {
      right: 10px;
      background-image: url("https://kikuzakura.com/SiteAssets/Handleft.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      font-size: 0;
    }

    .slideshow-thumbs {
      display: none;
    }

    .gallery-card figcaption {
      padding: 12px 14px 16px;
      color: var(--white);
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--card-bg-inner);
      border-top: 1px solid var(--border-light);
      position: relative;
      z-index: 1;
      margin-top: 15px;
      border-radius: 10px;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: transparent;
      z-index: 999;
      padding: 24px;
      backdrop-filter: blur(4px);
      overflow-y: auto;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox img {
      max-width: min(90vw, 1200px);
      max-height: 85vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      animation: fadeInScale 0.28s ease;
      transform-origin: center;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: 0;
      background: transparent;
      color: white;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s ease;
    }

    .lightbox-nav:hover {
      background-color: transparent;
    }

    .lightbox-nav.prev {
      left: 24px;
      background-image: url("https://kikuzakura.com/SiteAssets/Handright.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      font-size: 0;
    }

    .lightbox-nav.next {
      right: 24px;
      background-image: url("https://kikuzakura.com/SiteAssets/Handleft.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      font-size: 0;
    }

    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.72);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .lightbox-close {
      position: absolute;
      top: 24px;
      right: 28px;
      border: 0;
      background: transparent url("https://kikuzakura.com/SiteAssets/blkwhtlotus.png") center / contain no-repeat;
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 0;
      line-height: 1;
      cursor: pointer;
      transition: all 0.2s ease;
      z-index: 2;
    }

    .lightbox-close:hover {
      background-color: transparent;
      transform: scale(1.1);
    }

    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
      }

      .gallery-page {
        padding-top: 4px;
      }
    }

    @media (max-width: 700px) {
      header {
        gap: 16px;
        padding: 20px;
      }

      header nav {
        gap: 16px;
      }

      .layout {
        flex-direction: column;
      }

      aside {
        width: 100%;
         left: 0;
        border-right: 0;
      }

      aside ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
      }

      aside li + li {
        margin-top: 0;
      }

      .layout > .content-section {
        padding: 4px;
      }

      footer {
        padding: 20px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .gallery-page h3 {
        font-size: 1.6rem;
        margin-bottom: 4px;
      }

      .gallery-page p {
        margin-bottom: 24px;
      }

      .lightbox {
        padding: 16px;
      }

      .lightbox img {
        max-width: 100vw;
        max-height: 90vh;
      }

      .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
      }
    }

