/* Theme: Miomi (default) */
:root {
    --primary-colored-text: #ED4A93;
    --primary-color-bright: #FF6FC4;
    --primary-color-dark: #7A1F51;
    --primary-color-darker: #3D0F28;
    --alternative-color: rgba(237, 74, 147, 0.10);
    --alternative-color-hover: rgba(237, 74, 147, 0.18);
    --alternative-text-color: #B9698F;
}

.PrimaryColoredText {
    color: var(--primary-colored-text) !important;
}

.AlternativeColoredText {
    color: var(--alternative-text-color) !important;
}

/* Global image hover + click-to-zoom */
img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
    cursor: zoom-in;
}

img:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 16px 22px rgba(237, 74, 147, 0.45));
}

#img-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 0, 3, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
    cursor: zoom-out;
}

#img-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

#img-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border: 2px solid var(--primary-color-bright);
    border-radius: 14px;
    box-shadow: 0 0 70px rgba(237, 74, 147, 0.45);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: zoom-out;
}

#img-lightbox img:hover {
    transform: scale(0.85);
    filter: none;
}

#img-lightbox.active img {
    transform: scale(1);
}

@font-face {
    font-family: "Polly Light";
    src: url('./PollyRounded-Light.otf');
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Light", sans-serif;
}
#home h1 {
    font-family: "Polly Light", sans-serif;
    font-size: 45px;
    /* color: rgba(255, 255, 255, .8); */
}


body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    color: rgb(238, 245, 248);

    background-color: rgb(11, 19, 47);
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
.zoom-wrapper {
  transform: scale(0.8);
  transform-origin: top center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

    /* Cards Container */
    .cards-container {
      display: flex;
      gap: 30px;
      width: 100%;
      max-width: 1000px;
      position: relative;
      z-index: 2;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* Card Base Style */
    .card {
      background: rgba(30, 30, 30, 0.85);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      border: 0.5px solid rgba(94, 255, 0, 0.007);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                  inset 0 1px 0 rgba(220, 38, 38, 0.15),
                  0 0 80px rgba(220, 38, 38, 0.1);
      padding: 40px;
      position: relative;
      flex: 1;
      min-width: 400px;
    }

    /* Left Card - Payment Info */
    .payment-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 450px;
    }

    .payment-title {
      color: #ffffff;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
      text-align: center;
    }

    .price-tag {
      color: #22c55ec7;
      font-size: 56px;
      font-weight: bold;
      margin-bottom: 30px;
      text-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    }

    .qr-container {
      background: rgba(0, 0, 0, 0.95);
      border-radius: 16px;
      padding: 20px;
  
      margin-bottom: 20px;
      position: relative;
    }

    .qr-container::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 18px;
      z-index: -1;
      opacity: 0.4;
    }

    .qr-code {
      width: 200px;
      height: 200px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qr-code img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cashapp-tag {
      color: rgba(255, 255, 255, 0.9);
      font-size: 24px;
      font-weight: 600;
      margin-top: 10px;
      letter-spacing: 0.5px;
      text-align: center;
    }

    .cashapp-tag span {
      color: #22c55ec7;
    }

    /* Right Card - Form */
    .form-card {
      max-width: 500px;
    }

    .form-title {
      color: #ffffff;
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .form-subtitle {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .form-group {
      margin-bottom: 24px;
    }

    label {
      display: block;
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
    }

    input[type="email"] {
      width: 100%;
      padding: 14px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: #ffffff;
      font-size: 15px;
      transition: all 0.3s ease;
    }

    input[type="email"]:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.08);
      border-color: #dc2626;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
    }

    input[type="email"]::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .file-input-wrapper {
      position: relative;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
      border: 2px dashed rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .file-input-wrapper:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #dc2626;
    }

    .file-input-wrapper input[type="file"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    .file-label {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      pointer-events: none;
    }

    .file-name {
      color: #22c55ec7;
      font-size: 13px;
      margin-top: 8px;
      font-weight: 500;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #22c58783 0%, #22c55ec7 100%);
      border: none;
      border-radius: 12px;
      color: white;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
      position: relative;
      overflow: hidden;
    }

    .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .submit-btn:hover::before {
      left: 100%;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 30px rgba(34, 197, 94, 0.4);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    .success-message {
      display: none;
      margin-top: 20px;
      padding: 16px;
      background: rgba(34, 197, 94, 0.15);
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 12px;
      color: #22c55ec7;
      font-size: 14px;
      text-align: center;
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .help-text {
      text-align: center;
      margin-top: 20px;
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
    }

    .help-text a {
      color: #6949f5;
      text-decoration: none;
      transition: color 0.2s;
    }

    .help-text a:hover {
      color: #ef4444;
    }

    @media (max-width: 968px) {
      .cards-container {
        flex-direction: column;
        align-items: center;
      }

      .card {
        min-width: unset;
        width: 100%;
        max-width: 500px;
      }
    }
