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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Background Effects */
    .bg-effects {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .bg-effects::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(139, 92, 246, 0.1), transparent 40%),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(59, 130, 246, 0.08), transparent 40%);
    }

    .bg-effects::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.015;
      mix-blend-mode: overlay;
    }

    /* Light theme: subtle bg effects, fix artist name gradient */
    body.theme-light .bg-effects::before {
      background:
        radial-gradient(ellipse 80% 50% at 50% -20%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 40%),
        radial-gradient(ellipse 50% 30% at 0% 80%, color-mix(in srgb, var(--accent) 5%, transparent), transparent 40%);
    }
    body.theme-light .bg-effects::after {
      opacity: 0.03;
      mix-blend-mode: multiply;
    }
    body.theme-light .artist-name {
      background: linear-gradient(135deg, #0f0f14, #2d2d35);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Container */
    .container {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem 3rem;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .rainlinks-main-panel {
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      box-shadow: var(--panel-shadow);
      border-radius: 24px;
      overflow: hidden;
      backdrop-filter: blur(var(--surface-blur));
      -webkit-backdrop-filter: blur(var(--surface-blur));
    }

    /* Header */
    .header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .rainlinks-hero-panel {
      position: relative;
      width: 100%;
    }

    .rainlinks-avatar-wrap {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .header-image {
      width: 100%;
      height: 180px;
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      display: none;
    }

    .header-image.has-image {
      display: block;
    }

    .header-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rainlinks-hero-body {
      width: 100%;
    }

    .avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 1.25rem;
      overflow: hidden;
      box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 80px var(--accent-glow);
      position: relative;
    }

    .avatar::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 50%);
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .avatar-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, black));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      font-weight: 700;
      color: white;
    }

    .artist-name {
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
      font-family: var(--font-display);
      background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .bio {
      font-size: 0.95rem;
      color: var(--text-secondary);
      max-width: 100%;
      width: 100%;
      margin: 0 auto;
      line-height: 1.6;
      text-align: center;
    }

    /* Icon-only links row (streaming, social, website, merch) */
    .icon-links-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.75rem;
      margin: 1.25rem 0 2rem;
    }

    .icon-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: var(--icon-link-bg);
      border: 1px solid var(--icon-link-border);
      border-radius: 50%;
      color: var(--text);
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }

    .icon-link:hover {
      background: var(--icon-link-hover-bg);
      border-color: var(--icon-link-hover-border);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .icon-link svg {
      width: 24px;
      height: 24px;
    }

    /* Links */
    .links {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      margin-bottom: 1rem;
    }

    .link-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      background: var(--link-bg);
      border: 1px solid var(--link-border);
      border-radius: var(--link-radius);
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    /* Button styles */
    .link-item.style-pill {
      border-radius: 999px;
    }

    .link-item.style-square {
      border-radius: 8px;
    }

    .link-item.style-outline {
      background: transparent;
      border: 2px solid var(--link-border);
    }

    .link-item:hover {
      background: var(--link-hover-bg);
      border-color: var(--link-hover-border);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .link-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.03));
      pointer-events: none;
    }

    .link-item.promoted {
      background: var(--promoted-bg);
      border-color: var(--promoted-border);
    }

    .link-item.promoted:hover {
      background: var(--promoted-bg);
      border-color: color-mix(in srgb, var(--promoted-border) 80%, white);
    }

    .link-icon {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .link-icon svg {
      width: 22px;
      height: 22px;
    }

    .link-title {
      flex: 1;
      text-align: center;
      margin-right: 28px;
      /* Balance the icon */
    }

    /* Platform Colors */
    .link-item[data-platform="spotify"] .link-icon {
      color: #1DB954;
    }

    .link-item[data-platform="apple_music"] .link-icon {
      color: #FA233B;
    }

    .link-item[data-platform="youtube_music"] .link-icon,
    .link-item[data-platform="youtube"] .link-icon {
      color: #FF0000;
    }

    .link-item[data-platform="amazon_music"] .link-icon {
      color: #00A8E1;
    }

    .link-item[data-platform="deezer"] .link-icon {
      color: #A238FF;
    }

    .link-item[data-platform="soundcloud"] .link-icon {
      color: #FF5500;
    }

    .link-item[data-platform="instagram"] .link-icon {
      color: #E4405F;
    }

    .link-item[data-platform="tiktok"] .link-icon {
      color: #ffffff;
    }

    .link-item[data-platform="twitter"] .link-icon {
      color: #ffffff;
    }

    .link-item[data-platform="facebook"] .link-icon {
      color: #1877F2;
    }

    .link-item[data-platform="discord"] .link-icon {
      color: #5865F2;
    }

    .link-item[data-platform="twitch"] .link-icon {
      color: #9146FF;
    }

    /* Icon link platform colors */
    .icon-link[data-platform="spotify"] { color: #1DB954; }
    .icon-link[data-platform="apple_music"] { color: #FA233B; }
    .icon-link[data-platform="youtube_music"],
    .icon-link[data-platform="youtube"] { color: #FF0000; }
    .icon-link[data-platform="amazon_music"] { color: #00A8E1; }
    .icon-link[data-platform="deezer"] { color: #A238FF; }
    .icon-link[data-platform="soundcloud"] { color: #FF5500; }
    .icon-link[data-platform="instagram"] { color: #E4405F; }
    .icon-link[data-platform="tiktok"],
    .icon-link[data-platform="twitter"] { color: #ffffff; }
    .icon-link[data-platform="facebook"] { color: #1877F2; }
    .icon-link[data-platform="discord"] { color: #5865F2; }
    .icon-link[data-platform="twitch"] { color: #9146FF; }
    .icon-link[data-platform="website"] { color: var(--accent); }
    body.theme-light .icon-link[data-platform="tiktok"],
    body.theme-light .icon-link[data-platform="twitter"] { color: #000000; }

    /* Products Section */
    .products-section {
      margin-bottom: 2.5rem;
    }

    .section-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-tertiary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
      text-align: center;
    }

    .products-scroll {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      gap: 1rem;
      padding: 0.5rem 0;
    }

    .product-card {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      flex: 0 0 auto;
      width: min(152px, calc(33.333% - 0.67rem));
      min-width: 108px;
      max-width: 168px;
      background: var(--product-bg);
      border: 1px solid var(--product-border);
      border-radius: 12px;
      overflow: hidden;
      text-decoration: none;
      color: var(--text);
      transition: all 0.25s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .product-image {
      width: 100%;
      aspect-ratio: 1;
      background: rgba(255, 255, 255, 0.05);
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-info {
      padding: 0.65rem 0.7rem 0.75rem;
      text-align: center;
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .product-title {
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
      line-height: 1.25;
      white-space: normal;
    }

    .product-price {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--accent);
      text-align: center;
    }

    .product-unavailable {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      text-align: center;
    }

    /* Placeholder “dream merch” when Shopify isn’t connected (non-interactive) */
    .merch-placeholder-intro {
      text-align: center;
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.5;
      margin: 0 auto 1rem;
      max-width: 26rem;
      font-style: italic;
    }

    .product-card.merch-fake-card {
      pointer-events: none;
      cursor: default;
      opacity: 0.95;
    }

    .product-card.merch-fake-card:hover {
      transform: none;
      box-shadow: none;
    }

    /* Collapsible placeholder shop when no Shopify store is connected */
    .products-section-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      width: 100%;
      margin-bottom: 1rem;
      padding: 0;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-tertiary);
      font: inherit;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-align: center;
      transition: color 0.2s ease;
    }

    .products-section-toggle:hover,
    .products-section-toggle:focus-visible {
      color: var(--text-secondary);
      outline: none;
    }

    .products-section-toggle:focus-visible {
      box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 45%, transparent);
      border-radius: 4px;
    }

    .products-section-chevron {
      width: 0.85rem;
      height: 0.85rem;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .products-section--collapsible.is-collapsed .products-section-body {
      display: none;
    }

    .products-section--collapsible:not(.is-collapsed) .products-section-chevron {
      transform: rotate(180deg);
    }

    .products-section--collapsible.is-collapsed .products-section-toggle {
      margin-bottom: 0;
    }

    .rainlinks-main-panel .products-section--collapsible.is-collapsed .products-section-toggle {
      margin-bottom: 0;
    }

    .rainlinks-main-panel .products-section--collapsible:not(.is-collapsed) .products-section-toggle {
      margin-bottom: 0.75rem;
    }

    .rainlinks-main-panel .product-card.merch-fake-card:hover {
      transform: none;
      box-shadow: none;
    }

    /* Email Capture */
    .email-capture {
      margin: 1rem 0;
      padding: 1.5rem;
      background: var(--signup-bg);
      border: 1px solid var(--signup-border);
      border-radius: 16px;
      animation: fadeInUp 0.5s ease-out 0.6s backwards;
      backdrop-filter: blur(var(--surface-blur));
      -webkit-backdrop-filter: blur(var(--surface-blur));
    }

    .email-capture-content {
      text-align: center;
    }

    /* Symmetric inset so centered copy/fields stay visually centered with the corner control */
    .email-flip-root.has-toggle .email-flip-front .email-capture-content {
      padding-left: 2.75rem;
      padding-right: 2.75rem;
      box-sizing: border-box;
    }

    .email-flip-front .email-consent-text {
      text-align: center;
    }

    .email-capture-icon {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }

    .email-capture-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      color: var(--text);
    }

    .email-capture-text {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin: 0 0 1.25rem 0;
      line-height: 1.5;
    }

    .email-consent-text {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      margin: 0.6rem 0 0 0;
      line-height: 1.5;
      text-align: left;
    }

    .email-consent-text a {
      color: var(--accent-light);
      text-decoration: underline;
    }

    .email-capture-form {
      display: flex;
      gap: 0.5rem;
    }

    .fan-signup-form {
      max-width: min(100%, 440px);
      margin-left: auto;
      margin-right: auto;
    }

    .fan-wizard-step {
      display: none;
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }

    .fan-wizard-step.is-active {
      display: flex;
    }

    .fan-wizard-choice-row {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
    }

    .fan-wizard-choice-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.75rem 1rem;
      border-radius: 14px;
      border: 1px solid var(--card-border);
      background: color-mix(in srgb, var(--card-bg) 88%, var(--accent) 12%);
      color: var(--text);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.15s ease, border-color 0.15s ease;
    }

    .fan-wizard-choice-btn:hover {
      border-color: var(--accent);
      transform: translateY(-1px);
    }

    .fan-wizard-choice-btn.primary {
      background: var(--accent);
      color: #fff;
      border-color: transparent;
    }

    .fan-wizard-back {
      margin-top: 0.25rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      background: none;
      border: none;
      cursor: pointer;
      text-decoration: underline;
    }

    .fan-wizard-progress {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .fan-signup-creator-fields {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .fan-signup-consent {
      text-align: left;
      font-size: 0.78rem;
      color: var(--text-tertiary);
      line-height: 1.45;
      margin-top: 0.15rem;
    }

    .fan-signup-consent a {
      color: var(--accent-light);
      text-decoration: underline;
    }

    .fan-signup-success {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
      gap: 0.75rem;
      padding: 1.25rem 1rem;
    }

    .fan-signup-success-inner {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      align-items: center;
    }

    .fan-signup-success-lead {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
    }

    .fan-signup-success-detail {
      margin: 0;
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.5;
      max-width: 26rem;
    }

    .fan-portal-cta,
    .fan-discord-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.75rem 1.35rem;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      border: none;
      width: 100%;
      max-width: 280px;
    }

    .fan-portal-cta {
      background: var(--accent);
      color: #fff;
    }

    .fan-discord-cta {
      background: #5865F2;
      color: #fff;
    }

    .email-input {
      flex: 1;
      padding: 0.875rem 1rem;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 999px;
      color: var(--text);
      font-size: 0.95rem;
      outline: none;
      transition: all 0.2s ease;
    }

    .email-input::placeholder {
      color: var(--text-tertiary);
    }

    .email-input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
    }

    /* Select: closed state + option list need explicit colors (avoids white text on white options menu) */
    select.email-input {
      border-radius: 12px;
      cursor: pointer;
      background-color: var(--card-bg);
      color: var(--text);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.85rem center;
      padding-right: 2.5rem;
    }

    select.email-input option {
      background-color: #16161f;
      color: #f4f4f5;
    }

    body.theme-light select.email-input option {
      background-color: #ffffff;
      color: #18181b;
    }

    .email-submit {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.5rem;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .email-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    }

    .email-submit:active {
      transform: translateY(0);
    }

    .email-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .submit-arrow {
      width: 16px;
      height: 16px;
    }

    .email-success {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 12px;
      color: #22c55e;
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Clip waitlist nested under “Stay in the loop” (same card) */
    .clip-program-in-loop {
      display: none;
      margin-top: 1.35rem;
      padding-top: 1.35rem;
      border-top: 1px solid rgba(139, 92, 246, 0.22);
      text-align: left;
    }

    .clip-program-in-loop .clip-program-heading-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      margin-bottom: 0.35rem;
    }

    .clip-program-in-loop .clip-program-icon {
      font-size: 1.35rem;
      line-height: 1;
    }

    .clip-program-in-loop .clip-program-title {
      font-size: 1rem;
      font-weight: 700;
      margin: 0;
      font-family: var(--font-display);
      color: var(--text);
    }

    .clip-program-in-loop .clip-program-text {
      font-size: 0.82rem;
      color: var(--text-secondary);
      margin: 0 0 0.75rem 0;
      line-height: 1.45;
      text-align: center;
    }

    .clip-program-in-loop .clip-program-form {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 0;
      max-width: min(100%, 440px);
      margin-left: auto;
      margin-right: auto;
    }

    .clip-program-in-loop .clip-program-form .email-input {
      min-height: 48px;
      box-sizing: border-box;
    }

    .clip-waitlist-submit {
      width: 100%;
      min-height: 52px;
      padding: 1rem 1.5rem;
      justify-content: center;
      border-radius: 14px;
      white-space: normal;
      text-align: center;
      line-height: 1.3;
    }

    .clip-program-in-loop .clip-program-footnote {
      text-align: center;
      max-width: min(100%, 440px);
      margin-left: auto;
      margin-right: auto;
      line-height: 1.45;
    }

    /* Post-submit: success first, optional TikTok below — not cramped inside the form */
    .clip-waitlist-outcome {
      display: none;
      flex-direction: column;
      gap: 1.1rem;
      margin-top: 1.1rem;
      max-width: min(100%, 440px);
      margin-left: auto;
      margin-right: auto;
      width: 100%;
    }

    .clip-waitlist-success.email-success {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1.35rem 1.35rem 1.45rem;
      gap: 0.9rem;
      border-radius: 16px;
      white-space: normal;
    }

    .clip-waitlist-success .success-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .clip-waitlist-success .clip-waitlist-success-msg {
      color: var(--text);
      font-size: 0.94rem;
      font-weight: 500;
      line-height: 1.55;
      max-width: 26rem;
    }

    .clip-tiktok-followup {
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 0.85rem;
      padding: 1.2rem 1.25rem 1.3rem;
      border-radius: 16px;
      border: 1px solid var(--card-border);
      background: color-mix(in srgb, var(--card-bg) 92%, var(--accent) 8%);
    }

    .clip-tiktok-followup-hint {
      font-size: 0.8125rem;
      color: var(--text-secondary);
      line-height: 1.55;
      text-align: center;
      margin: 0;
    }

    .clip-tiktok-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 52px;
      padding: 1rem 1.35rem;
      border-radius: 14px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      white-space: normal;
      text-align: center;
      line-height: 1.35;
      color: var(--text);
      background: var(--card-bg);
      border: 2px solid color-mix(in srgb, var(--card-border) 70%, var(--accent) 30%);
      transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .clip-tiktok-btn:hover {
      border-color: var(--accent);
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.18);
    }

    .clip-tiktok-btn:active {
      transform: translateY(1px);
    }

    .clip-tiktok-btn:disabled {
      opacity: 0.55;
      cursor: not-allowed;
      transform: none;
    }

    body.theme-light .clip-program-in-loop {
      border-top-color: rgba(0, 0, 0, 0.08);
    }

    body.theme-light select.email-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2352525b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    }

    .success-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: #22c55e;
      color: white;
      border-radius: 50%;
      font-size: 0.75rem;
    }

    @media (max-width: 480px) {
      .email-capture-form {
        flex-direction: column;
      }

      .email-submit {
        justify-content: center;
      }
    }

    /* Spotify playlist embed */
    .spotify-embed-section {
      margin: 1rem 0 1.25rem;
      animation: fadeInUp 0.55s ease-out 0.25s backwards;
    }

    .spotify-embed-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-tertiary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.65rem;
      text-align: center;
    }

    .spotify-embed-frame {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--product-border);
      background: var(--product-bg);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    }

    .spotify-embed-frame iframe {
      display: block;
      width: 100%;
      /* Spotify playlist embed standard viewport (~352); taller iframe = empty space inside */
      height: 352px;
      border: 0;
    }

    /* Signup / Top Fans flip card */
    .email-flip-root {
      position: relative;
      perspective: 1100px;
    }

    .email-flip-corner-btn {
      position: absolute;
      top: 0.65rem;
      right: 0.65rem;
      z-index: 30;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      /* Solid fallbacks so the control stays visible on the gradient card (color-mix alone can read as “invisible”). */
      border: 2px solid rgba(255, 255, 255, 0.45);
      background: rgba(22, 22, 30, 0.94);
      color: #f4f4f5;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    }

    @supports (background: color-mix(in srgb, white, black)) {
      .email-flip-corner-btn {
        border-color: color-mix(in srgb, var(--accent) 50%, rgba(255, 255, 255, 0.4));
        background: color-mix(in srgb, rgba(22, 22, 30, 0.94) 75%, var(--accent));
        color: var(--text);
      }
    }

    .email-flip-corner-btn:hover {
      transform: scale(1.06);
      border-color: rgba(255, 255, 255, 0.65);
      box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
    }

    @supports (background: color-mix(in srgb, white, black)) {
      .email-flip-corner-btn:hover {
        border-color: color-mix(in srgb, var(--accent) 65%, rgba(255, 255, 255, 0.5));
        box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 28%, transparent);
      }
    }

    .email-flip-corner-btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .email-flip-corner-btn svg {
      width: 20px;
      height: 20px;
    }

    body.theme-light .email-flip-corner-btn {
      background: rgba(255, 255, 255, 0.98);
      border-color: rgba(0, 0, 0, 0.22);
      color: #0f0f14;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    }

    .top-fans-empty {
      text-align: center;
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.5;
      padding: 0.5rem 0.25rem 0.25rem;
      margin: 0;
    }

    .email-flip-pivot {
      position: relative;
      z-index: 0;
      transform-style: preserve-3d;
      transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .email-flip-pivot.is-flipped {
      transform: rotateY(180deg);
    }

    .email-flip-face {
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .email-flip-back {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      min-height: 100%;
      transform: rotateY(180deg);
      padding: 1.5rem 1.25rem 1.25rem;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .email-flip-back .top-fans-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.85rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--text-secondary);
      text-align: center;
      padding-right: 2rem;
    }

    .email-flip-back .top-fans-row {
      display: grid;
      gap: 0.65rem;
      margin-bottom: 0.65rem;
    }

    .email-flip-back .top-fans-row:last-child {
      margin-bottom: 0;
    }

    .email-flip-back .top-fans-row.row-1,
    .email-flip-back .top-fans-row.row-4 {
      grid-template-columns: minmax(0, 1fr);
      justify-items: center;
    }

    .email-flip-back .top-fans-row.row-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .email-flip-back .top-fans-row.row-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .email-flip-back .top-fan-card {
      width: 100%;
      min-height: 88px;
      border-radius: 14px;
      border: 1px solid var(--card-border);
      background: rgba(255, 255, 255, 0.03);
      padding: 0.6rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
    }

    .email-flip-back .top-fan-card.rank-1 {
      max-width: 180px;
      border-color: color-mix(in srgb, var(--accent) 45%, var(--card-border));
    }

    .email-flip-back .top-fan-avatar {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      overflow: hidden;
      border: 2px solid color-mix(in srgb, var(--accent) 40%, transparent);
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.25));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
      color: white;
    }

    .email-flip-back .top-fan-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .email-flip-back .top-fan-name {
      font-size: 0.8rem;
      font-weight: 600;
      line-height: 1.15;
      color: var(--text);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 100%;
    }

    .email-flip-back .top-fan-tier {
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.14rem 0.44rem;
      border-radius: 999px;
      border: 1px solid var(--card-border);
      color: var(--text-secondary);
    }

    @media (max-width: 480px) {
      .email-flip-back .top-fans-row.row-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .email-flip-pivot {
        transition: none;
      }
    }

    /* Countdown Timer (Cobrand-style feature) */
    .countdown-section {
      margin: 1.5rem 0;
      padding: 1.5rem;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
      border: 1px solid rgba(139, 92, 246, 0.25);
      border-radius: 16px;
      text-align: center;
      animation: fadeInUp 0.6s ease-out;
      animation-delay: 0.2s;
      animation-fill-mode: backwards;
    }

    .countdown-section.style-minimal {
      background: transparent;
      border: none;
      padding: 1rem 0;
    }

    .countdown-section.style-bold {
      background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #3b82f6));
      border: none;
      box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    }

    .countdown-message {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text);
      opacity: 0.9;
    }

    .countdown-section.style-bold .countdown-message {
      color: white;
      opacity: 1;
    }

    .countdown-timer {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 60px;
      padding: 0.75rem 0.5rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      backdrop-filter: blur(8px);
    }

    .countdown-section.style-minimal .countdown-unit {
      background: transparent;
      padding: 0;
    }

    .countdown-section.style-bold .countdown-unit {
      background: rgba(255, 255, 255, 0.15);
    }

    .countdown-value {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .countdown-section.style-bold .countdown-value {
      color: white;
    }

    .countdown-label {
      font-size: 0.65rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 0.35rem;
      font-weight: 500;
    }

    .countdown-section.style-bold .countdown-label {
      color: rgba(255, 255, 255, 0.8);
    }

    .countdown-separator {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-secondary);
      align-self: center;
      padding-bottom: 1rem;
    }

    .countdown-expired {
      display: none;
      padding: 1rem;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 12px;
      color: #22c55e;
      font-weight: 600;
    }

    @media (max-width: 380px) {
      .countdown-timer {
        gap: 0.5rem;
      }

      .countdown-unit {
        min-width: 50px;
        padding: 0.5rem 0.25rem;
      }

      .countdown-value {
        font-size: 1.5rem;
      }
    }

    /* Discord Community Join CTA - Headline button */
    .discord-cta-section {
      margin: 0.5rem 0 0.75rem;
      animation: fadeInUp 0.5s ease-out 0.3s backwards;
    }

    .discord-cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      width: 100%;
      padding: 1.25rem 1.5rem;
      background: linear-gradient(135deg, #5865F2 0%, #7289da 50%, #5865F2 100%);
      border: none;
      border-radius: 16px;
      color: white;
      font-family: var(--font);
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
      text-decoration: none;
    }

    .discord-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(88, 101, 242, 0.45);
    }

    .discord-cta-btn:active {
      transform: translateY(-1px);
    }

    .discord-cta-btn svg {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    /* Discord Join Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      padding: 1rem;
      animation: fadeIn 0.2s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .discord-modal {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      max-width: 420px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
      animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .discord-modal-header {
      padding: 1.5rem 1.5rem 0.5rem;
      text-align: center;
    }

    .discord-modal-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
      color: var(--text);
    }

    .discord-modal-subtitle {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .discord-modal-body {
      padding: 1.25rem 1.5rem 1.5rem;
    }

    .fan-signup-modal.discord-modal {
      max-width: min(100%, 480px);
      position: relative;
    }

    .fan-signup-modal-close {
      position: absolute;
      top: 0.65rem;
      right: 0.75rem;
      width: 2.25rem;
      height: 2.25rem;
      border: none;
      border-radius: 999px;
      background: color-mix(in srgb, var(--card-bg) 85%, var(--text) 15%);
      color: var(--text);
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      z-index: 2;
    }

    .fan-signup-modal-close:hover {
      opacity: 0.9;
    }

    .discord-form-group {
      margin-bottom: 1rem;
    }

    .discord-form-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 0.4rem;
      color: var(--text-secondary);
    }

    .discord-form-label .required {
      color: #f87171;
    }

    .discord-form-input {
      width: 100%;
      padding: 0.75rem 1rem;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      color: var(--text);
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .discord-form-input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
    }

    .discord-form-input::placeholder {
      color: var(--text-tertiary);
    }

    /* Select in fan modal: explicit option colors (avoids light/white option text on white menu) */
    select.discord-form-input {
      cursor: pointer;
      appearance: none;
      color-scheme: dark;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.85rem center;
      padding-right: 2.5rem;
    }

    select.discord-form-input option {
      background-color: #16161f;
      color: #f4f4f5;
    }

    body.theme-light select.discord-form-input option {
      background-color: #ffffff;
      color: #18181b;
    }

    body.theme-light select.discord-form-input {
      color-scheme: light;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2352525b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    }

    .discord-form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
      cursor: pointer;
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    .discord-form-checkbox input {
      margin-top: 0.2rem;
      accent-color: var(--accent);
      flex-shrink: 0;
    }

    .discord-form-checkbox a {
      color: var(--accent);
      text-decoration: underline;
    }

    .discord-form-checkbox a:hover {
      color: var(--accent-hover);
    }

    .discord-submit-btn {
      width: 100%;
      padding: 1rem 1.5rem;
      background: linear-gradient(135deg, #5865F2, #7289da);
      border: none;
      border-radius: 12px;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 0.5rem;
    }

    .discord-submit-btn:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
    }

    .discord-submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .discord-form-error {
      font-size: 0.85rem;
      color: #f87171;
      margin-top: 0.5rem;
      text-align: center;
    }

    .discord-privacy-note {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      margin-top: 1rem;
      text-align: center;
      line-height: 1.5;
    }

    /* Footer */
    .footer {
      margin-top: auto;
      text-align: center;
      padding-top: 2rem;
    }

    .powered-by {
      font-size: 0.75rem;
      color: var(--text-tertiary);
    }

    .powered-by a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.2s;
    }

    .powered-by a:hover {
      color: var(--accent);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .header {
      animation: fadeInUp 0.6s ease-out;
    }

    .link-item {
      animation: fadeInUp 0.5s ease-out backwards;
    }

    .link-item:nth-child(1) {
      animation-delay: 0.1s;
    }

    .link-item:nth-child(2) {
      animation-delay: 0.15s;
    }

    .link-item:nth-child(3) {
      animation-delay: 0.2s;
    }

    .link-item:nth-child(4) {
      animation-delay: 0.25s;
    }

    .link-item:nth-child(5) {
      animation-delay: 0.3s;
    }

    .link-item:nth-child(6) {
      animation-delay: 0.35s;
    }

    .link-item:nth-child(7) {
      animation-delay: 0.4s;
    }

    .link-item:nth-child(8) {
      animation-delay: 0.45s;
    }

    .link-item:nth-child(9) {
      animation-delay: 0.5s;
    }

    .link-item:nth-child(10) {
      animation-delay: 0.55s;
    }

    /* ─── Desktop: main card + signup column; Spotify only under main column ─── */
    @media (min-width: 960px) {
      .bg-effects::before {
        background:
          radial-gradient(ellipse 100% 80% at 0% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 55%),
          radial-gradient(ellipse 70% 50% at 100% 15%, rgba(59, 130, 246, 0.14), transparent 50%),
          radial-gradient(ellipse 50% 40% at 70% 100%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 45%),
          radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent 50%);
      }

      body.theme-light .bg-effects::before {
        background:
          radial-gradient(ellipse 100% 80% at 0% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%),
          radial-gradient(ellipse 70% 50% at 100% 20%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 50%),
          radial-gradient(ellipse 50% 40% at 70% 100%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 45%),
          radial-gradient(ellipse 80% 50% at 50% -20%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 50%);
      }

      .rainlinks-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
        grid-template-rows: auto auto;
        column-gap: 2rem;
        row-gap: 0.35rem;
        align-items: stretch;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 2rem 2.25rem 3.5rem;
      }

      /* Row 1 col 1 = main card only; row 2 col 1 = Spotify (tight under main, not below full row height) */
      .rainlinks-main-panel {
        grid-column: 1;
        grid-row: 1;
        align-self: stretch;
        min-height: 0;
        display: flex;
        flex-direction: column;
        border-radius: 26px;
        overflow: hidden;
        border: 1px solid var(--panel-border);
        background: var(--panel-bg);
        box-shadow: var(--panel-shadow);
      }

      .rainlinks-shell > #emailCaptureSection {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
        margin: 0;
        border-radius: 22px;
        border: 1px solid var(--signup-border);
        background: var(--signup-bg);
        backdrop-filter: blur(14px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
        padding: 1.35rem 1.15rem;
        display: flex;
        flex-direction: column;
        min-height: 0;
        box-sizing: border-box;
      }

      /* Match visual height of main card: grow flip stack to fill grid cell */
      .rainlinks-shell > #emailCaptureSection .email-flip-root {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
      }

      .rainlinks-shell > #emailCaptureSection .email-flip-pivot {
        flex: 1;
        min-height: 0;
      }

      .rainlinks-shell > #spotifyEmbedSection {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        margin: 0 !important;
        width: 100%;
        max-width: none;
        animation: none;
        border-radius: 22px;
        padding: 0.65rem 0.75rem 0.75rem;
        box-sizing: border-box;
        border: 1px solid var(--product-border);
        background: var(--product-bg);
        backdrop-filter: blur(12px);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
      }

      .rainlinks-shell > #spotifyEmbedSection .spotify-embed-frame iframe {
        height: 352px;
      }

      .rainlinks-shell > #spotifyEmbedSection .spotify-embed-label {
        text-align: left;
        padding-left: 0.25rem;
        margin-bottom: 0.45rem;
      }

      .rainlinks-shell > #spotifyEmbedSection .spotify-embed-frame {
        box-shadow: none;
        border-radius: 14px;
      }

      .rainlinks-shell > .footer {
        grid-column: 1 / -1;
        grid-row: 3;
        padding-top: 2.5rem;
      }

      /* Everything inside the main card: hero, countdown, links, shop */
      .rainlinks-main-panel .header {
        display: block;
        text-align: left;
        margin-bottom: 0;
        border-bottom: 1px solid var(--divider-color);
      }

      .rainlinks-main-panel .rainlinks-hero-panel {
        display: grid;
        grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
        gap: 0;
        min-height: min(320px, 36vh);
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: transparent;
      }

      .rainlinks-main-panel .rainlinks-hero-visual {
        position: relative;
        min-height: min(320px, 36vh);
        background: var(--hero-bg);
      }

      .rainlinks-main-panel .rainlinks-hero-visual .header-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: min(320px, 36vh);
        margin: 0;
        border-radius: 0;
        display: none;
      }

      .rainlinks-main-panel .rainlinks-hero-visual .header-image.has-image {
        display: block;
      }

      .rainlinks-main-panel .rainlinks-hero-visual .header-image img {
        height: 100%;
        object-fit: cover;
      }

      .rainlinks-main-panel .rainlinks-hero-visual .rainlinks-avatar-wrap {
        position: absolute;
        left: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 2;
        margin: 0;
        padding: 0;
        justify-content: flex-start;
      }

      .rainlinks-main-panel .rainlinks-hero-panel .avatar {
        width: clamp(156px, 18vw, 210px);
        height: clamp(156px, 18vw, 210px);
        margin: 0;
        box-shadow:
          0 0 0 4px rgba(255, 255, 255, 0.14),
          0 20px 56px rgba(0, 0, 0, 0.55),
          0 0 80px var(--accent-glow);
      }

      body.theme-light .rainlinks-main-panel .rainlinks-hero-panel .avatar {
        box-shadow:
          0 0 0 4px rgba(255, 255, 255, 0.95),
          0 18px 48px rgba(0, 0, 0, 0.14);
      }

      .rainlinks-main-panel .rainlinks-hero-body {
        align-self: center;
        padding: 1.5rem 1.75rem 1.5rem 1.35rem;
        text-align: left;
      }

      .rainlinks-main-panel .artist-name {
        font-size: clamp(1.9rem, 2.2vw + 1rem, 2.65rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.05;
        margin-bottom: 0.65rem;
      }

      .rainlinks-main-panel .bio {
        text-align: left;
        margin: 0 0 1rem 0;
        max-width: 40ch;
        font-size: 1rem;
        line-height: 1.65;
        color: var(--text-secondary);
      }

      .rainlinks-main-panel .icon-links-row {
        justify-content: flex-start;
        margin: 0.25rem 0 0.75rem;
        gap: 0.65rem;
      }

      .rainlinks-main-panel .icon-link {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: color-mix(in srgb, var(--card-bg) 85%, transparent);
        backdrop-filter: blur(10px);
      }

      .rainlinks-main-panel .discord-cta-section {
        margin: 0.35rem 0 0;
      }

      .rainlinks-main-panel .discord-cta-btn {
        width: auto;
        min-width: min(100%, 300px);
        padding: 1rem 1.4rem;
        font-size: 1.02rem;
        border-radius: 14px;
      }

      .rainlinks-main-panel #countdownSection {
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        border-bottom: 1px solid var(--divider-color);
        background: color-mix(in srgb, var(--signup-bg) 75%, transparent);
        padding: 1.25rem 1.5rem;
      }

      .rainlinks-main-panel .links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin: 0;
        padding: 1.35rem 1.5rem 1.5rem;
      }

      .rainlinks-main-panel .links:has(.link-item)::before {
        content: 'Links';
        display: block;
        font-family: var(--font-display);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--text-tertiary);
        margin-bottom: 0.5rem;
        padding-left: 0.1rem;
      }

      .rainlinks-main-panel .link-item {
        border-radius: var(--link-radius);
        padding: 1.05rem 1.25rem;
        border: 1px solid var(--link-border);
        background: var(--link-bg);
      }

      .rainlinks-main-panel .link-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
      }

      .rainlinks-main-panel .link-title {
        text-align: left;
        margin-right: 0;
        padding-left: 0.2rem;
      }

      .rainlinks-main-panel #productsSection {
        margin: 0;
        border-top: 1px solid var(--divider-color);
        padding: 1.25rem 1.5rem 1.35rem;
      }

      .rainlinks-main-panel #productsSection .section-title {
        text-align: left;
        margin-bottom: 0.75rem;
      }

      .rainlinks-main-panel .products-section-toggle {
        justify-content: flex-start;
        text-align: left;
      }

      .rainlinks-main-panel .products-scroll {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1rem;
        padding: 0.35rem 0 0;
      }

      .rainlinks-main-panel .product-card {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex: 0 0 auto;
        width: min(152px, calc(33.333% - 0.67rem));
        min-width: 100px;
        max-width: 168px;
        border-radius: 12px;
      }

      .rainlinks-main-panel .product-image {
        border-radius: 0;
        border-bottom: 1px solid var(--card-border);
      }

      .rainlinks-main-panel .product-info {
        padding: 0.65rem 0.7rem 0.75rem;
        text-align: center;
      }

      .rainlinks-main-panel .product-title {
        white-space: normal;
        font-size: 0.8rem;
        text-align: center;
      }

      .rainlinks-main-panel .product-price,
      .rainlinks-main-panel .product-unavailable {
        text-align: center;
      }
    }

    /* Mobile: single column; preserve classic block order (main → Spotify → email → footer) */
    @media (max-width: 959px) {
      .rainlinks-shell {
        display: flex;
        flex-direction: column;
      }

      .rainlinks-main-panel {
        order: 1;
        background: var(--panel-bg);
        border: 1px solid var(--panel-border);
        box-shadow: var(--panel-shadow);
        border-radius: 24px;
        overflow: hidden;
      }

      #spotifyEmbedSection {
        order: 2;
      }

      #emailCaptureSection {
        order: 3;
      }

      .footer {
        order: 4;
      }

      .rainlinks-hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }

      .rainlinks-hero-visual .header-image {
        position: static;
        width: 100%;
        height: 180px;
        min-height: 0;
        border-radius: 20px;
        margin-bottom: 0;
      }

      .rainlinks-hero-visual .rainlinks-avatar-wrap {
        position: static;
        justify-content: center;
      }

      .rainlinks-hero-panel:has(.header-image.has-image) .rainlinks-avatar-wrap {
        margin-top: -52px;
        margin-bottom: 0.35rem;
        position: relative;
        z-index: 2;
      }

      .rainlinks-hero-panel:has(.header-image.has-image) .header-image {
        margin-bottom: 0;
      }

      .rainlinks-main-panel #productsSection {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        border-top: 1px solid var(--divider-color);
        padding: 1.25rem 1.5rem 1.35rem;
      }

      .rainlinks-main-panel .products-section-toggle {
        justify-content: center;
        text-align: center;
      }

      .theme-preset-editorial .rainlinks-main-panel .products-section-toggle,
      .theme-preset-cinematic-edge .rainlinks-main-panel .products-section-toggle {
        justify-content: flex-start;
        text-align: left;
      }

      .theme-preset-storefront .rainlinks-main-panel #productsSection {
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
      }
    }

    /* Responsive */
    @media (max-width: 480px) {
      .container {
        padding: 2rem 1rem;
      }

      .avatar {
        width: 100px;
        height: 100px;
      }

      .artist-name {
        font-size: 1.5rem;
      }

      .bio {
        font-size: 0.9rem;
      }

      .link-item {
        padding: 0.875rem 1rem;
      }
    }

    /* Theme preset overrides */
    .theme-preset-default .artist-name,
    .theme-preset-default .section-title,
    .theme-preset-default .countdown-message {
      font-family: var(--font-display);
    }

    .theme-preset-aura-glass .bg-effects::before {
      background:
        radial-gradient(circle at 72% 10%, rgba(255, 220, 206, 0.38), transparent 30%),
        radial-gradient(circle at 18% 18%, rgba(196, 115, 88, 0.28), transparent 34%),
        radial-gradient(circle at 50% 100%, rgba(138, 85, 53, 0.18), transparent 40%);
    }

    .theme-preset-aura-glass .container {
      max-width: 520px;
    }

    .theme-preset-aura-glass .rainlinks-main-panel {
      border-radius: 32px;
      overflow: hidden;
    }

    .theme-preset-aura-glass .header {
      padding: 1.1rem 1.1rem 0;
      margin-bottom: 1.5rem;
    }

    .theme-preset-aura-glass .header-image {
      height: 220px;
      border-radius: 28px;
      margin-bottom: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .theme-preset-aura-glass.theme-no-header-image .rainlinks-hero-visual {
      min-height: 190px;
      border-radius: 28px;
      margin-bottom: 1rem;
      background:
        radial-gradient(circle at 72% 12%, rgba(255,220,206,0.24), transparent 30%),
        linear-gradient(180deg, rgba(98, 49, 39, 0.92), rgba(33, 17, 15, 0.96));
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .theme-preset-aura-glass.theme-no-header-image .rainlinks-avatar-wrap {
      margin-top: -28px;
      position: relative;
      z-index: 2;
    }

    .theme-preset-aura-glass .avatar {
      width: 132px;
      height: 132px;
      box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.08),
        0 30px 60px rgba(0, 0, 0, 0.35),
        0 0 90px var(--accent-glow);
    }

    .theme-preset-aura-glass .artist-name {
      background: none;
      -webkit-text-fill-color: currentColor;
      color: var(--text);
      font-family: var(--font-display);
      font-size: clamp(2.55rem, 7vw, 3.7rem);
      font-weight: 600;
      line-height: 0.94;
      letter-spacing: -0.05em;
      margin-bottom: 0.7rem;
    }

    .theme-preset-aura-glass .bio,
    .theme-preset-aura-glass .section-title {
      text-align: center;
    }

    .theme-preset-aura-glass .bio {
      max-width: 32ch;
      margin-bottom: 1.3rem;
      color: rgba(255, 248, 245, 0.78);
    }

    .theme-preset-aura-glass .icon-links-row {
      justify-content: center;
      gap: 0.85rem;
      margin-bottom: 1.7rem;
    }

    .theme-preset-aura-glass .icon-link {
      width: 52px;
      height: 52px;
      border-radius: 999px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .theme-preset-aura-glass .links {
      padding: 0 1.1rem 1.25rem;
      gap: 1rem;
    }

    .theme-preset-aura-glass .link-item,
    .theme-preset-aura-glass .product-card,
    .theme-preset-aura-glass .spotify-embed-frame,
    .theme-preset-aura-glass .email-capture {
      backdrop-filter: blur(calc(var(--surface-blur) + 2px));
      -webkit-backdrop-filter: blur(calc(var(--surface-blur) + 2px));
    }

    .theme-preset-aura-glass .link-item {
      min-height: 78px;
      padding: 1.15rem 1.25rem;
      border-radius: 24px;
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
    }

    .theme-preset-aura-glass .link-title {
      font-size: 1.02rem;
      letter-spacing: -0.01em;
    }

    .theme-preset-aura-glass .email-capture,
    .theme-preset-aura-glass .spotify-embed-section,
    .theme-preset-aura-glass .products-section {
      margin-left: 0.8rem;
      margin-right: 0.8rem;
    }

    .theme-preset-aura-glass .email-capture-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 600;
    }

    .theme-preset-aura-glass .products-section {
      padding-bottom: 1.25rem;
    }

    .theme-preset-editorial .bg-effects::before,
    .theme-preset-luminous .bg-effects::before {
      background:
        radial-gradient(circle at 12% 12%, rgba(124, 58, 237, 0.08), transparent 26%),
        radial-gradient(circle at 86% 8%, rgba(37, 99, 235, 0.06), transparent 24%);
    }

    .theme-preset-editorial .container {
      max-width: 840px;
      padding: 2rem 1.2rem 3rem;
    }

    .theme-preset-editorial .rainlinks-main-panel {
      border-radius: 18px;
      box-shadow:
        0 1px 0 rgba(255,255,255,0.95) inset,
        0 18px 45px rgba(36, 31, 25, 0.08);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .theme-preset-editorial .header {
      text-align: left;
      margin-bottom: 1.15rem;
      padding: 1.2rem 1.25rem 0;
    }

    .theme-preset-editorial .header-image {
      height: 200px;
      border-radius: 14px;
      margin-bottom: 1rem;
    }

    .theme-preset-editorial .rainlinks-avatar-wrap {
      justify-content: flex-start;
    }

    .theme-preset-editorial .avatar {
      margin: 0 0 1rem;
      width: 108px;
      height: 108px;
      box-shadow:
        0 0 0 4px rgba(255,255,255,0.8),
        0 18px 42px rgba(17, 24, 39, 0.08);
    }

    .theme-preset-editorial .artist-name {
      background: none;
      -webkit-text-fill-color: currentColor;
      color: var(--text);
      font-family: var(--font-display);
      font-size: clamp(2.3rem, 5vw, 3.6rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.05em;
      text-align: left;
      margin-bottom: 0.6rem;
    }

    .theme-preset-editorial .bio {
      text-align: left;
      max-width: 38ch;
      margin: 0 0 1rem;
    }

    .theme-preset-editorial .icon-links-row {
      justify-content: flex-start;
      gap: 0.55rem;
      margin: 0.75rem 0 1.25rem;
    }

    .theme-preset-editorial .icon-link {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      box-shadow: none;
    }

    .theme-preset-editorial .links {
      padding: 0 1.25rem 1.35rem;
      gap: 0.6rem;
    }

    .theme-preset-editorial .link-item {
      border-radius: 14px;
      padding: 0.95rem 1rem;
      box-shadow: none;
    }

    .theme-preset-editorial .link-title {
      text-align: left;
      margin-right: 0;
      padding-left: 0.1rem;
    }

    .theme-preset-editorial .section-title {
      text-align: left;
      margin-bottom: 0.8rem;
    }

    .theme-preset-editorial .countdown-section,
    .theme-preset-editorial .email-capture,
    .theme-preset-editorial .spotify-embed-section,
    .theme-preset-editorial .products-section {
      margin-left: 1.25rem;
      margin-right: 1.25rem;
    }

    .theme-preset-editorial .email-capture {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .theme-preset-luminous .container {
      max-width: 560px;
    }

    .theme-preset-luminous .header {
      margin-bottom: 1.45rem;
    }

    .theme-preset-luminous .artist-name {
      background: none;
      -webkit-text-fill-color: currentColor;
      color: var(--text);
      font-family: var(--font-display);
      font-size: clamp(2.15rem, 5.3vw, 3rem);
      font-weight: 600;
      line-height: 1.02;
      letter-spacing: -0.05em;
    }

    .theme-preset-luminous .bio {
      max-width: 34ch;
      color: rgba(17, 24, 39, 0.62);
    }

    .theme-preset-luminous .icon-link {
      border-radius: 16px;
      width: 46px;
      height: 46px;
    }

    .theme-preset-luminous .email-capture,
    .theme-preset-luminous .spotify-embed-frame,
    .theme-preset-luminous .product-card {
      box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    }

    .theme-preset-spotlight .bg-effects::before {
      background:
        radial-gradient(circle at 50% -10%, rgba(34, 211, 238, 0.3), transparent 38%),
        radial-gradient(circle at 85% 12%, rgba(59, 130, 246, 0.2), transparent 28%),
        radial-gradient(circle at 10% 80%, rgba(168, 85, 247, 0.16), transparent 30%);
    }

    .theme-preset-spotlight .container {
      max-width: 560px;
    }

    .theme-preset-spotlight .rainlinks-main-panel {
      border-radius: 28px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(34, 211, 238, 0.08) inset,
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(34, 211, 238, 0.08);
    }

    .theme-preset-spotlight .header {
      padding: 1.05rem 1.1rem 0;
      margin-bottom: 1.35rem;
    }

    .theme-preset-spotlight .header-image {
      height: 230px;
      border-radius: 22px;
      border: 1px solid rgba(34, 211, 238, 0.18);
    }

    .theme-preset-spotlight .artist-name {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 3.8rem);
      line-height: 0.93;
      letter-spacing: -0.06em;
      text-transform: uppercase;
      margin-bottom: 0.7rem;
    }

    .theme-preset-spotlight .bio {
      max-width: 34ch;
      margin-bottom: 1.15rem;
    }

    .theme-preset-spotlight .icon-link {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12) inset;
    }

    .theme-preset-spotlight .link-item {
      border-radius: 18px;
      padding: 1.05rem 1.15rem;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
    }

    .theme-preset-spotlight .link-item.promoted {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32), 0 0 26px rgba(34, 211, 238, 0.12);
    }

    .theme-preset-storefront .bg-effects::before {
      background:
        radial-gradient(circle at 12% 8%, rgba(245, 158, 11, 0.2), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(251, 191, 36, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(0,0,0,0.15), transparent 60%);
    }

    .theme-preset-storefront .container {
      max-width: 620px;
    }

    .theme-preset-storefront .header {
      padding: 1rem 1.1rem 0;
      margin-bottom: 1.4rem;
    }

    .theme-preset-storefront .header-image {
      height: 240px;
      border-radius: 22px;
      border: 1px solid rgba(245, 158, 11, 0.18);
    }

    .theme-preset-storefront .artist-name {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.15rem);
      line-height: 0.98;
      text-transform: uppercase;
      letter-spacing: -0.05em;
    }

    .theme-preset-storefront .icon-links-row {
      gap: 0.55rem;
    }

    .theme-preset-storefront .icon-link {
      border-radius: 14px;
      width: 48px;
      height: 48px;
    }

    .theme-preset-storefront .links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.85rem;
      padding: 0 1.1rem 1.2rem;
    }

    .theme-preset-storefront .links:has(.link-item)::before {
      grid-column: 1 / -1;
      margin-bottom: 0;
    }

    .theme-preset-storefront .link-item {
      min-height: 96px;
      border-radius: 18px;
      padding: 1rem;
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
      align-items: flex-start;
    }

    .theme-preset-storefront .link-item::after {
      content: '';
      position: absolute;
      inset: auto auto 0 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, rgba(245, 158, 11, 0.9), rgba(251, 191, 36, 0.4));
    }

    .theme-preset-storefront .link-title {
      text-align: left;
      margin-right: 0;
      padding-left: 0.1rem;
      align-self: center;
    }

    .theme-preset-storefront #productsSection {
      background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), transparent 100%);
      margin: 0 1rem 1.2rem;
      padding: 1.15rem 1rem 1rem;
      border-radius: 20px;
      border: 1px solid rgba(245, 158, 11, 0.14);
    }

    .theme-preset-storefront .product-card {
      border-radius: 16px;
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    }

    .theme-preset-storefront .email-capture,
    .theme-preset-storefront .spotify-embed-section {
      margin-left: 1rem;
      margin-right: 1rem;
    }

    .theme-preset-poster .bg-effects::before {
      background:
        radial-gradient(circle at 10% 10%, rgba(244, 63, 94, 0.28), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(59, 130, 246, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(0,0,0,0.14), transparent 60%);
    }

    .theme-preset-poster .container {
      max-width: 560px;
    }

    .theme-preset-poster .rainlinks-main-panel {
      border-radius: 22px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(244, 63, 94, 0.12) inset,
        0 28px 80px rgba(0, 0, 0, 0.42);
    }

    .theme-preset-poster .header {
      padding: 1rem 1.1rem 0;
      margin-bottom: 1.2rem;
      text-align: left;
    }

    .theme-preset-poster .header-image {
      height: 210px;
      border-radius: 18px;
      border: 1px solid rgba(244, 63, 94, 0.2);
      box-shadow: 0 12px 30px rgba(0,0,0,0.24);
    }

    .theme-preset-poster .rainlinks-avatar-wrap {
      justify-content: flex-start;
    }

    .theme-preset-poster .avatar {
      margin: 0 0 1rem;
      border-radius: 20px;
      width: 108px;
      height: 108px;
      box-shadow:
        0 0 0 4px rgba(255,255,255,0.08),
        0 18px 40px rgba(0, 0, 0, 0.34);
    }

    .theme-preset-poster .artist-name {
      background: none;
      -webkit-text-fill-color: currentColor;
      color: var(--text);
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 700;
      line-height: 0.9;
      letter-spacing: -0.07em;
      text-transform: uppercase;
      text-align: left;
      margin-bottom: 0.65rem;
    }

    .theme-preset-poster .bio {
      text-align: left;
      max-width: 32ch;
      margin: 0 0 1.2rem;
    }

    .theme-preset-poster .icon-links-row {
      justify-content: flex-start;
      gap: 0.55rem;
      margin-bottom: 1.35rem;
    }

    .theme-preset-poster .icon-link {
      border-radius: 14px;
      width: 46px;
      height: 46px;
    }

    .theme-preset-poster .links {
      padding: 0 1.1rem 1.25rem;
      gap: 0.75rem;
    }

    .theme-preset-poster .link-item {
      border-width: 2px;
      padding: 1rem 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    }

    .theme-preset-poster .link-title {
      text-align: left;
      margin-right: 0;
      padding-left: 0.15rem;
    }

    .theme-preset-poster .countdown-section,
    .theme-preset-poster .email-capture,
    .theme-preset-poster .spotify-embed-section,
    .theme-preset-poster .products-section {
      margin-left: 1rem;
      margin-right: 1rem;
    }

    .theme-preset-cinematic-edge .bg-effects::before,
    .theme-preset-cinematic-edge .bg-effects::after {
      display: none;
    }

    .theme-preset-cinematic-edge .container {
      max-width: 100%;
      padding: 0 0 2.75rem;
    }

    .theme-preset-cinematic-edge .rainlinks-main-panel {
      background: transparent;
      border: none;
      box-shadow: none;
      border-radius: 0;
      overflow: visible;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .theme-preset-cinematic-edge .header {
      margin-bottom: 0;
      border-bottom: none;
      text-align: left;
    }

    .theme-preset-cinematic-edge .rainlinks-hero-panel {
      position: relative;
      display: block;
      min-height: 0;
    }

    .theme-preset-cinematic-edge .rainlinks-hero-visual {
      position: relative;
      display: block;
      min-height: 0;
      background: transparent;
    }

    .theme-preset-cinematic-edge .rainlinks-hero-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(90deg, transparent 0 26px, rgba(130, 194, 255, 0.06) 26px 28px, transparent 28px 56px),
        linear-gradient(180deg, rgba(255,255,255,0.04), transparent 26%);
      mix-blend-mode: screen;
      opacity: 0.72;
      pointer-events: none;
      z-index: 1;
    }

    .theme-preset-cinematic-edge .rainlinks-hero-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.06) 0%, rgba(4, 4, 4, 0.12) 25%, rgba(4, 4, 4, 0.82) 100%),
        linear-gradient(90deg, rgba(4,4,4,0.36) 0%, rgba(4,4,4,0.06) 50%, rgba(4,4,4,0.36) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .theme-preset-cinematic-edge .rainlinks-hero-visual .header-image {
      display: block;
      width: 100%;
      height: clamp(400px, 72vh, 760px);
      min-height: 400px;
      margin: 0;
      border-radius: 0;
    }

    .theme-preset-cinematic-edge .rainlinks-hero-visual .header-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.82) contrast(1.02);
    }

    .theme-preset-cinematic-edge.theme-no-header-image .rainlinks-hero-visual {
      min-height: 420px;
      background:
        radial-gradient(circle at 50% 18%, rgba(130,194,255,0.16), transparent 28%),
        linear-gradient(180deg, #111523 0%, #040404 100%);
    }

    .theme-preset-cinematic-edge.theme-no-header-image .rainlinks-hero-visual .header-image {
      display: none;
    }

    .theme-preset-cinematic-edge .rainlinks-avatar-wrap {
      position: absolute;
      top: 1.25rem;
      left: 1.25rem;
      width: auto;
      justify-content: flex-start;
      z-index: 3;
    }

    .theme-preset-cinematic-edge .avatar {
      width: 52px;
      height: 52px;
      margin: 0;
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255,255,255,0.04);
    }

    .theme-preset-cinematic-edge .avatar::after {
      display: none;
    }

    .theme-preset-cinematic-edge .rainlinks-hero-body,
    .theme-preset-cinematic-edge .rainlinks-main-panel .rainlinks-hero-body {
      position: relative;
      z-index: 4;
      max-width: 720px;
      padding: 0 1.5rem 1.8rem;
      margin-top: calc(-1 * clamp(210px, 32vh, 290px));
      text-align: left;
      align-self: flex-start;
    }

    .theme-preset-cinematic-edge .artist-name,
    .theme-preset-cinematic-edge .rainlinks-main-panel .artist-name {
      background: none;
      -webkit-text-fill-color: currentColor;
      color: #f7f2ed;
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 5.6rem);
      font-weight: 600;
      line-height: 0.9;
      letter-spacing: -0.06em;
      margin-bottom: 0.55rem;
      text-transform: none;
      text-shadow: 0 10px 40px rgba(0,0,0,0.46);
    }

    .theme-preset-cinematic-edge .bio,
    .theme-preset-cinematic-edge .rainlinks-main-panel .bio {
      text-align: left;
      margin: 0 0 1.1rem;
      max-width: 42ch;
      color: rgba(247, 242, 237, 0.82);
      font-size: 0.98rem;
      line-height: 1.65;
      text-shadow: 0 4px 18px rgba(0,0,0,0.28);
    }

    .theme-preset-cinematic-edge .icon-links-row {
      justify-content: flex-start;
      gap: 0.55rem;
      margin: 0 0 1.15rem;
    }

    .theme-preset-cinematic-edge .icon-link {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
      color: rgba(255,255,255,0.92);
    }

    .theme-preset-cinematic-edge .icon-link:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.24);
      transform: translateY(-1px);
    }

    .theme-preset-cinematic-edge .discord-cta-section {
      margin-top: 0.4rem;
    }

    .theme-preset-cinematic-edge .discord-cta-btn {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--text);
      box-shadow: none;
      width: auto;
      min-width: 0;
      padding: 0.95rem 1.2rem;
    }

    .theme-preset-cinematic-edge .countdown-section,
    .theme-preset-cinematic-edge .products-section,
    .theme-preset-cinematic-edge .spotify-embed-section,
    .theme-preset-cinematic-edge .email-capture {
      max-width: 920px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .theme-preset-cinematic-edge .countdown-section {
      background: transparent;
      border: none;
      padding-top: 0;
      margin-top: 0.4rem;
    }

    .theme-preset-cinematic-edge .links,
    .theme-preset-cinematic-edge .rainlinks-main-panel .links {
      max-width: 920px;
      margin: 0 auto 1.7rem;
      padding: 0 1.5rem;
      gap: 0;
    }

    .theme-preset-cinematic-edge .links:has(.link-item)::before,
    .theme-preset-cinematic-edge .rainlinks-main-panel .links:has(.link-item)::before {
      display: block;
      content: 'Listen & connect';
      margin-bottom: 0.4rem;
      padding-left: 0;
      color: rgba(255,255,255,0.44);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
    }

    .theme-preset-cinematic-edge .link-item,
    .theme-preset-cinematic-edge .rainlinks-main-panel .link-item {
      background: transparent;
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      border-bottom: none;
      border-radius: 0;
      padding: 1.05rem 0;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .theme-preset-cinematic-edge .links .link-item:last-child,
    .theme-preset-cinematic-edge .rainlinks-main-panel .links .link-item:last-child {
      border-bottom: 1px solid rgba(255,255,255,0.14);
    }

    .theme-preset-cinematic-edge .link-item.promoted,
    .theme-preset-cinematic-edge .rainlinks-main-panel .link-item.promoted {
      background: transparent;
      border-top-color: rgba(255,255,255,0.22);
    }

    .theme-preset-cinematic-edge .link-item::before {
      display: none;
    }

    .theme-preset-cinematic-edge .link-icon {
      width: 26px;
      height: 26px;
      color: rgba(255,255,255,0.86);
    }

    .theme-preset-cinematic-edge .link-item:hover,
    .theme-preset-cinematic-edge .rainlinks-main-panel .link-item:hover {
      background: transparent;
      box-shadow: none;
      transform: none;
      opacity: 0.94;
    }

    .theme-preset-cinematic-edge .link-title,
    .theme-preset-cinematic-edge .rainlinks-main-panel .link-title {
      text-align: left;
      margin-right: 0;
      padding-left: 0;
      font-family: var(--font);
      font-size: 0.98rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .theme-preset-cinematic-edge .section-title {
      text-align: left;
    }

    .theme-preset-cinematic-edge .product-card,
    .theme-preset-cinematic-edge .spotify-embed-frame,
    .theme-preset-cinematic-edge .email-capture {
      box-shadow: none;
      border-color: rgba(255,255,255,0.12);
    }

    .theme-preset-cinematic-edge .product-card {
      background: rgba(255,255,255,0.03);
      border-radius: 16px;
    }

    .theme-preset-cinematic-edge .email-capture {
      max-width: 540px;
      background: rgba(255,255,255,0.04);
      border-radius: 22px;
      padding: 1.35rem 1.25rem;
    }

    @media (min-width: 960px) {
      .theme-preset-aura-glass .container,
      .theme-preset-editorial .container,
      .theme-preset-luminous .container,
      .theme-preset-spotlight .container,
      .theme-preset-storefront .container,
      .theme-preset-poster .container {
        max-width: 1160px;
        padding: 2.25rem 2rem 3.5rem;
      }

      .theme-preset-aura-glass .rainlinks-main-panel .rainlinks-hero-panel,
      .theme-preset-editorial .rainlinks-main-panel .rainlinks-hero-panel,
      .theme-preset-luminous .rainlinks-main-panel .rainlinks-hero-panel,
      .theme-preset-spotlight .rainlinks-main-panel .rainlinks-hero-panel,
      .theme-preset-storefront .rainlinks-main-panel .rainlinks-hero-panel,
      .theme-preset-poster .rainlinks-main-panel .rainlinks-hero-panel {
        min-height: 360px;
      }

      .theme-preset-aura-glass .rainlinks-main-panel .rainlinks-hero-visual,
      .theme-preset-editorial .rainlinks-main-panel .rainlinks-hero-visual,
      .theme-preset-luminous .rainlinks-main-panel .rainlinks-hero-visual,
      .theme-preset-spotlight .rainlinks-main-panel .rainlinks-hero-visual,
      .theme-preset-storefront .rainlinks-main-panel .rainlinks-hero-visual,
      .theme-preset-poster .rainlinks-main-panel .rainlinks-hero-visual {
        padding: 1rem;
      }

      .theme-preset-aura-glass .rainlinks-main-panel .rainlinks-hero-visual .header-image,
      .theme-preset-editorial .rainlinks-main-panel .rainlinks-hero-visual .header-image,
      .theme-preset-luminous .rainlinks-main-panel .rainlinks-hero-visual .header-image,
      .theme-preset-spotlight .rainlinks-main-panel .rainlinks-hero-visual .header-image,
      .theme-preset-storefront .rainlinks-main-panel .rainlinks-hero-visual .header-image,
      .theme-preset-poster .rainlinks-main-panel .rainlinks-hero-visual .header-image {
        inset: 1rem;
        width: auto;
        height: auto;
        min-height: 0;
        border-radius: 24px;
      }

      .theme-preset-aura-glass .rainlinks-main-panel .rainlinks-hero-visual .rainlinks-avatar-wrap,
      .theme-preset-editorial .rainlinks-main-panel .rainlinks-hero-visual .rainlinks-avatar-wrap,
      .theme-preset-luminous .rainlinks-main-panel .rainlinks-hero-visual .rainlinks-avatar-wrap,
      .theme-preset-spotlight .rainlinks-main-panel .rainlinks-hero-visual .rainlinks-avatar-wrap,
      .theme-preset-storefront .rainlinks-main-panel .rainlinks-hero-visual .rainlinks-avatar-wrap,
      .theme-preset-poster .rainlinks-main-panel .rainlinks-hero-visual .rainlinks-avatar-wrap {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
      }

      .theme-preset-aura-glass .rainlinks-shell > #emailCaptureSection,
      .theme-preset-aura-glass .rainlinks-shell > #spotifyEmbedSection {
        background:
          linear-gradient(180deg, rgba(36, 19, 17, 0.8), rgba(20, 11, 11, 0.92));
        border-color: rgba(255, 232, 224, 0.12);
        box-shadow:
          0 28px 72px rgba(0, 0, 0, 0.34),
          0 0 0 1px rgba(255, 255, 255, 0.04) inset;
      }

      .theme-preset-aura-glass .rainlinks-main-panel {
        border-radius: 36px;
      }

      .theme-preset-aura-glass .rainlinks-main-panel .rainlinks-hero-panel {
        grid-template-columns: minmax(330px, 0.48fr) minmax(0, 1fr);
      }

      .theme-preset-aura-glass .rainlinks-main-panel .rainlinks-hero-visual {
        background:
          radial-gradient(circle at 72% 10%, rgba(255, 221, 211, 0.32), transparent 30%),
          linear-gradient(180deg, rgba(86, 43, 34, 0.96), rgba(30, 16, 14, 0.98));
      }

      .theme-preset-aura-glass .rainlinks-main-panel .rainlinks-hero-body {
        padding: 2rem 2.25rem 2rem 1.35rem;
      }

      .theme-preset-aura-glass .rainlinks-main-panel .artist-name {
        font-size: clamp(3rem, 3vw + 1.35rem, 4.4rem);
      }

      .theme-preset-aura-glass .rainlinks-main-panel .bio {
        max-width: 33ch;
        color: rgba(255, 248, 245, 0.82);
      }

      .theme-preset-aura-glass .rainlinks-main-panel .links {
        padding: 1.5rem;
      }

      .theme-preset-aura-glass .rainlinks-main-panel #productsSection {
        padding: 1.35rem 1.5rem 1.5rem;
      }

      .theme-preset-editorial .rainlinks-shell > #emailCaptureSection,
      .theme-preset-editorial .rainlinks-shell > #spotifyEmbedSection {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 235, 0.97));
        border-color: rgba(17, 24, 39, 0.08);
        box-shadow: 0 20px 50px rgba(36, 31, 25, 0.09);
      }

      .theme-preset-editorial .rainlinks-main-panel {
        border-radius: 22px;
      }

      .theme-preset-editorial .rainlinks-main-panel .rainlinks-hero-panel {
        grid-template-columns: minmax(300px, 0.4fr) minmax(0, 1fr);
        min-height: 380px;
      }

      .theme-preset-editorial .rainlinks-main-panel .rainlinks-hero-visual {
        background:
          linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242, 235, 226, 0.98));
        border-right: 1px solid rgba(17, 24, 39, 0.08);
      }

      .theme-preset-editorial .rainlinks-main-panel .artist-name {
        font-size: clamp(3rem, 2.8vw + 1.15rem, 4.2rem);
      }

      .theme-preset-editorial .rainlinks-main-panel .bio {
        max-width: 40ch;
      }

      .theme-preset-editorial .rainlinks-main-panel .links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
      }

      .theme-preset-editorial .rainlinks-main-panel .links:has(.link-item)::before {
        grid-column: 1 / -1;
      }

      .theme-preset-editorial .rainlinks-main-panel .link-item {
        min-height: 88px;
      }

      .theme-preset-editorial .rainlinks-main-panel .products-scroll {
        justify-content: flex-start;
      }

      .theme-preset-luminous .container {
        max-width: 1120px;
      }

      .theme-preset-luminous .rainlinks-shell > #emailCaptureSection,
      .theme-preset-luminous .rainlinks-shell > #spotifyEmbedSection {
        background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244, 247, 252, 0.98));
        border-color: rgba(37, 99, 235, 0.12);
        box-shadow: 0 18px 48px rgba(37, 99, 235, 0.08);
      }

      .theme-preset-luminous .rainlinks-main-panel {
        border-radius: 30px;
      }

      .theme-preset-luminous .rainlinks-main-panel .rainlinks-hero-panel {
        grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
        min-height: 340px;
      }

      .theme-preset-luminous .rainlinks-main-panel .rainlinks-hero-visual {
        background:
          linear-gradient(180deg, rgba(255,255,255,0.98), rgba(231, 238, 252, 0.96));
      }

      .theme-preset-luminous .rainlinks-main-panel .artist-name {
        font-size: clamp(2.8rem, 2.6vw + 1rem, 3.9rem);
      }

      .theme-preset-luminous .rainlinks-main-panel .bio {
        max-width: 35ch;
        color: rgba(17, 24, 39, 0.68);
      }

      .theme-preset-luminous .rainlinks-main-panel .links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
      }

      .theme-preset-luminous .rainlinks-main-panel .links:has(.link-item)::before {
        grid-column: 1 / -1;
      }

      .theme-preset-luminous .rainlinks-main-panel .products-scroll {
        justify-content: flex-start;
      }

      .theme-preset-spotlight .rainlinks-shell > #emailCaptureSection,
      .theme-preset-spotlight .rainlinks-shell > #spotifyEmbedSection {
        background:
          linear-gradient(180deg, rgba(6, 10, 18, 0.92), rgba(4, 7, 13, 0.98));
        border-color: rgba(34, 211, 238, 0.18);
        box-shadow:
          0 28px 80px rgba(0, 0, 0, 0.4),
          0 0 90px rgba(34, 211, 238, 0.08);
      }

      .theme-preset-spotlight .rainlinks-main-panel {
        border-radius: 32px;
      }

      .theme-preset-spotlight .rainlinks-main-panel .rainlinks-hero-panel {
        grid-template-columns: minmax(320px, 0.44fr) minmax(0, 1fr);
        min-height: 390px;
      }

      .theme-preset-spotlight .rainlinks-main-panel .rainlinks-hero-visual {
        background:
          radial-gradient(circle at 50% 10%, rgba(34, 211, 238, 0.32), transparent 34%),
          linear-gradient(180deg, rgba(8, 14, 26, 0.98), rgba(3, 7, 13, 0.98));
      }

      .theme-preset-spotlight .rainlinks-main-panel .artist-name {
        font-size: clamp(3rem, 3vw + 1.35rem, 4.4rem);
      }

      .theme-preset-spotlight .rainlinks-main-panel .bio {
        max-width: 34ch;
      }

      .theme-preset-spotlight .rainlinks-main-panel .links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
      }

      .theme-preset-spotlight .rainlinks-main-panel .links:has(.link-item)::before {
        grid-column: 1 / -1;
      }

      .theme-preset-storefront .container {
        max-width: 1200px;
      }

      .theme-preset-storefront .rainlinks-shell > #emailCaptureSection,
      .theme-preset-storefront .rainlinks-shell > #spotifyEmbedSection {
        background:
          linear-gradient(180deg, rgba(27, 19, 14, 0.95), rgba(17, 13, 12, 0.98));
        border-color: rgba(245, 158, 11, 0.2);
        box-shadow:
          0 28px 80px rgba(0, 0, 0, 0.38),
          0 0 80px rgba(245, 158, 11, 0.08);
      }

      .theme-preset-storefront .rainlinks-main-panel .rainlinks-hero-panel {
        grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
        min-height: 360px;
      }

      .theme-preset-storefront .rainlinks-main-panel .rainlinks-hero-visual {
        background:
          linear-gradient(180deg, rgba(33, 22, 14, 0.98), rgba(18, 14, 12, 0.98));
      }

      .theme-preset-storefront .rainlinks-main-panel .artist-name {
        font-size: clamp(2.8rem, 2.6vw + 1.1rem, 4rem);
      }

      .theme-preset-storefront .rainlinks-main-panel .bio {
        max-width: 36ch;
      }

      .theme-preset-storefront .rainlinks-main-panel .links {
        padding: 1.4rem;
        gap: 1rem;
      }

      .theme-preset-storefront .rainlinks-main-panel #productsSection {
        margin: 0;
        padding: 1.35rem 1.4rem 1.4rem;
      }

      .theme-preset-storefront .rainlinks-main-panel .products-scroll {
        justify-content: flex-start;
      }

      .theme-preset-poster .rainlinks-shell > #emailCaptureSection,
      .theme-preset-poster .rainlinks-shell > #spotifyEmbedSection {
        background:
          linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(12, 21, 38, 0.98));
        border-color: rgba(244, 63, 94, 0.18);
        box-shadow:
          0 28px 80px rgba(0, 0, 0, 0.42),
          0 0 90px rgba(59, 130, 246, 0.08);
      }

      .theme-preset-poster .rainlinks-main-panel .rainlinks-hero-panel {
        grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
        min-height: 370px;
      }

      .theme-preset-poster .rainlinks-main-panel .rainlinks-hero-visual {
        background:
          linear-gradient(180deg, rgba(26, 31, 49, 0.98), rgba(17, 24, 39, 0.98));
      }

      .theme-preset-poster .rainlinks-main-panel .artist-name {
        font-size: clamp(3.1rem, 3vw + 1.4rem, 4.6rem);
      }

      .theme-preset-poster .rainlinks-main-panel .bio {
        max-width: 33ch;
      }

      .theme-preset-poster .rainlinks-main-panel .links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
        padding: 1.35rem 1.35rem 1.45rem;
      }

      .theme-preset-poster .rainlinks-main-panel .links:has(.link-item)::before {
        grid-column: 1 / -1;
      }

      .theme-preset-poster .rainlinks-main-panel .products-scroll {
        justify-content: flex-start;
      }

      .theme-preset-cinematic-edge .container {
        max-width: 1320px;
        padding: 0 1.5rem 4rem;
      }

      .theme-preset-cinematic-edge .rainlinks-shell {
        grid-template-columns: minmax(0, 1fr) 340px;
        row-gap: 0.9rem;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel {
        grid-column: 1 / -1;
        grid-row: 1;
      }

      .theme-preset-cinematic-edge .rainlinks-shell > #spotifyEmbedSection {
        grid-column: 1;
        grid-row: 2;
        max-width: 760px;
        width: 100%;
        justify-self: start;
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.12);
        box-shadow: none;
      }

      .theme-preset-cinematic-edge .rainlinks-shell > #emailCaptureSection {
        grid-column: 2;
        grid-row: 2;
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.12);
        box-shadow: none;
      }

      .theme-preset-cinematic-edge .rainlinks-shell > .footer {
        grid-column: 1 / -1;
        grid-row: 3;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .header {
        border-bottom: none;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .rainlinks-hero-panel {
        position: relative;
        display: block;
        min-height: clamp(480px, 62vh, 720px);
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .rainlinks-hero-visual {
        min-height: inherit;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .rainlinks-hero-visual .header-image {
        inset: 0;
        width: 100%;
        height: 100%;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .rainlinks-hero-visual .rainlinks-avatar-wrap {
        top: 1.6rem;
        left: 1.6rem;
        right: auto;
        bottom: auto;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .rainlinks-hero-body {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 4;
        max-width: 720px;
        padding: 0 2rem 2rem;
        margin: 0;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .artist-name {
        font-size: clamp(3.5rem, 4vw + 1.6rem, 5.75rem);
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .bio {
        max-width: 38ch;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .links,
      .theme-preset-cinematic-edge .rainlinks-main-panel .countdown-section,
      .theme-preset-cinematic-edge .rainlinks-main-panel .products-section {
        max-width: 980px;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .links,
      .theme-preset-cinematic-edge .rainlinks-main-panel .countdown-section,
      .theme-preset-cinematic-edge .rainlinks-main-panel .products-section,
      .theme-preset-cinematic-edge .rainlinks-main-panel .spotify-embed-section,
      .theme-preset-cinematic-edge .rainlinks-main-panel .email-capture {
        margin-left: 0;
        margin-right: 0;
      }

      .theme-preset-cinematic-edge .rainlinks-main-panel .products-scroll {
        justify-content: flex-start;
      }
    }

    @media (max-width: 959px) {
      .theme-preset-storefront .links {
        grid-template-columns: 1fr;
      }

      .theme-preset-cinematic-edge .rainlinks-hero-body,
      .theme-preset-cinematic-edge .rainlinks-main-panel .rainlinks-hero-body {
        margin-top: calc(-1 * clamp(160px, 24vh, 220px));
        padding: 0 1.1rem 1.45rem;
      }

      .theme-preset-cinematic-edge .artist-name,
      .theme-preset-cinematic-edge .rainlinks-main-panel .artist-name {
        font-size: clamp(2.35rem, 10vw, 3.6rem);
      }

      .theme-preset-cinematic-edge .countdown-section,
      .theme-preset-cinematic-edge .products-section,
      .theme-preset-cinematic-edge .spotify-embed-section,
      .theme-preset-cinematic-edge .email-capture,
      .theme-preset-cinematic-edge .links {
        padding-left: 1rem;
        padding-right: 1rem;
      }
    }
