    p.redirect-text {
      font-size: 1rem;
      color: #bebebe;
      margin: 0;
      font-weight: 600;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    }

    p.sub-text {
      font-size: 1.2rem;
      color: #ff80bf;
      margin: 0;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
    }

    #loading-screen {
      transition: opacity 0.5s ease;
    }
    #site-loading-screen,
    #download-loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #0f0f0f;
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    #site-loading-screen.active,
    #download-loading-screen.active {
      opacity: 1;
      pointer-events: all;
    }

    .loading-content {
      text-align: center;
      color: white;
    }

    .loading-text {
      margin-top: 1rem;
      font-size: 1.1rem;
      background: rgba(255, 255, 255, 0.1);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      display: inline-block;
    }

    html {
      scroll-behavior: smooth;
    }

    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      background: #111111;
      color: #fff;
    }

    a {
      color: #ff80bf;
      text-decoration: none;
      font-weight: 600;
    }
    a:hover {
      text-decoration: underline;
    }

    .wrapper {
      position: relative; 
      z-index: 1; 
      overflow: visible;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      padding: 2rem;
      box-sizing: border-box;
    }

    .wrapper::before {
      content: "";
      position: absolute;
      top: 0%;
      left: 0;
      width: 100%;
      height: 99.5%;
      background: url('https://ylwpnk.dev/eeltail.jpg') center/cover no-repeat;
      filter: blur(8px);
      opacity: 0.3;
      z-index: 0;
      pointer-events: none;
    }

    @media (max-width: 720px) {
      .wrapper::before {
        top: 5%;
        height: 90%;
      }
    }

    .container {
      display: flex;
      max-width: 1080px;
      width: 100%;
      gap: 3rem;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .left-panel {
      flex: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;

      padding: 3rem 2.5rem;
    }

    .left-panel h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 4rem;
      margin: 0 0 1rem 0;
      color: #ff80bf;
      text-shadow: 0 0 20px rgba(255, 128, 191, 0.5);
      font-weight: 700;
      letter-spacing: -0.02em;
      animation: colorPulse 4s ease-in-out infinite;
    }

    @keyframes colorPulse {
      0%, 100% { 
        color: #ffb3d9; 
        text-shadow: 0 0 20px rgba(255, 179, 217, 0.4);
      }
      50% { 
        color: #ffffb3; 
        text-shadow: 0 0 20px rgba(255, 255, 179, 0.4);
      }
    }

    .left-panel p {
      font-size: 1.25rem;
      margin: 0 0 2rem 0;
      line-height: 1.6;
      max-width: 400px;
      color: #f0f0f0;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .social-links {
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .social-links a {
      display: inline-block;
      font-size: 1.1rem; 
      font-weight: 600;
      color: #ff80bf;
      transition: all 0.3s ease;
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      background: rgba(255, 128, 191, 0.1);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 128, 191, 0.2);
      text-decoration: none;
    }

    .social-links a:hover {
      color: #fff;
      background: rgba(255, 128, 191, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 128, 191, 0.3);
      text-decoration: none;
    }

    .divider {
      width: 1px;
      height: 24px;
      background: linear-gradient(to bottom, transparent, #ff80bf, transparent);
      opacity: 0.6;
    }

    @media (max-width: 720px) {
      .wrapper {
        align-items: center;
      }

      .container {
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
        padding: 1rem;
      }

      .left-panel {
        padding: 2rem 1.5rem;
      }

      .left-panel h1 {
        font-size: 3rem;
      }

      .left-panel p {
        font-size: 1.1rem;
        max-width: 300px;
      }

      .social-links {
        flex-direction: column;
        gap: 1rem;
      }

      .social-links a {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
      }

      .divider {
        width: 24px;
        height: 1px;
        background: linear-gradient(to right, transparent, #ff80bf, transparent);
      }
    }

    #loading-screen {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      animation: fadeInOutBg 4s infinite ease-in-out;
    }

    .loading-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .loading-logo {
      width: 72px;
      height: 72px;
      margin-bottom: 20px;
      animation: fadeInOut 4s infinite ease-in-out;
    }

    .spinner {
      width: 20px;               
      height: 20px;
      border: 4px solid #ff80bf; 
      border-top: 2px solid transparent;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes fadeInOut {
      0%, 100% { opacity: 0.2; transform: scale(0.95); }
      50% { opacity: 1; transform: scale(1); }
    }

    @keyframes fadeInOutBg {
      0%, 100% { background-color: #000; }
      50% { background-color: #111; }
    }

    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      color: #ff80bf;
      margin-bottom: 1rem;
      border-bottom: 2px solid #ff80bf;
      padding-bottom: 0.3rem;
      width: 15%;
    }

    .gallery-section {
      padding: 4rem 1rem 4rem;
      margin-top: -3rem; 
      background-color: #111;
      text-align: center;
      position: relative;
      z-index: 0;
    }

    .centered-title {
      margin-bottom: 2rem;
      font-size: 1.5rem;
      border-bottom: 2px solid #ff80bf;
      padding-bottom: 0.3rem;
      color: #ff80bf;
      font-family: 'Poppins', sans-serif;
      display: inline-block;
    }

    .gallery-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1080px;
      margin: 0 auto;
    }

    .gallery-item {
      background-color: #1a1a1a;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(255, 128, 191, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      max-width: 480px;
      width: 90%;
      opacity: 0;
      transform: translateY(30px);
      will-change: opacity, transform;
    }

    .gallery-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: 0 6px 25px rgba(255, 128, 191, 0.3);
    }

    .gallery-item img {
      width: 100%;
      display: block;
      height: auto;
      object-fit: cover;
    }

    .gallery-button {
      display: inline-block;
      margin: 1rem auto;
      padding: 0.5rem 1.2rem;
      font-size: 0.9rem;
      color: #ff80bf;
      background: transparent;
      border: 1px solid #ff80bf;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .gallery-button:hover {
      background: #ff80bf;
      color: #111;
    }

    .gallery-caption {
      padding: 1rem;
      background: #1a1a1a;
      border-top: 1px solid #222;
      text-align: left;
    }

    .gallery-caption h4 {
      margin: 0 0 0.4rem;
      font-size: 1.1rem;
      color: #ff80bf;
      font-family: 'Poppins', sans-serif;
    }

    .gallery-caption p {
      margin: 0 0 1rem;
      font-size: 0.95rem;
      color: #ccc;
      line-height: 1.4;
    }

    #scroll-prompt {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: #ff80bf;
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      opacity: 1;
      transition: opacity 0.4s ease;
      z-index: 10;
      pointer-events: none;
      animation: floatY 2s ease-in-out infinite;
    }

    @keyframes floatY {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, -8px); }
    }

    #scroll-prompt.hidden {
      opacity: 0;
    }

    .downloads-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .download-card {
      background: rgba(255, 128, 191, 0.1);
      border: 1px solid rgba(255, 128, 191, 0.2);
      backdrop-filter: blur(5px);
      color: #ff80bf;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      padding: 1rem 2rem;
      border-radius: 16px;
      width: 90%;
      max-width: 480px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .download-card:hover {
      background: rgba(255, 128, 191, 0.2);
      color: #fff;
      box-shadow: 0 4px 20px rgba(255, 128, 191, 0.3);
      transform: translateY(-2px);
    }

    .download-card .file-name {
      display: block;
      font-size: 0.9rem;
      color: #f0f0f0;
      margin-top: 0.3rem;
      font-weight: 400;
    }

    .home-link {
      position: absolute;
      top: 1rem;
      left: 50%;
      transform: translateX(-50%);
      color: #ff80bf;
      text-decoration: underline;
      font-weight: 600;
      font-size: 0.8rem;
      z-index: 999;
      transition: opacity 0.5s ease;
      animation: fadeIn 1.5s ease;
      font-family: 'Poppins', sans-serif;
    }

    .home-link:hover {
      color: #ffffff;
    }

    .redirect-buttons {

      justify-content: center;
      gap: 0.8rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }

    .redirect-buttons a {
      font-size: 1.05rem;
      padding: 0.4rem 1rem;
    }

    @media (max-width: 720px) {
      .redirect-buttons {
        flex-direction: column;
        gap: 0.6rem;
      }

      .redirect-buttons a {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
        width: 100%;
        max-width: 200px;
      }
    }
  @media (max-width: 720px) {
    .redirect-buttons {
      flex-direction: column;
      gap: 0.6rem;
    }

    .redirect-buttons a {
      font-size: 0.8rem;
      padding: 0.35rem 0.8rem;
      width: 100%;
      max-width: 200px;
    }
  }

  @media (max-width: 720px) {
    .centered-title,
    .section-title.centered-title {
      display: block;
      font-size: 1.3rem;
      width: 100%;
      text-align: center;
      border-bottom: 2px solid #ff80bf;
      padding-bottom: 0.4rem;
      margin: 0 auto 1.5rem;
    }
  }
