      @font-face {
          font-family: 'CharlesWright';
          src: url('../fonts/CharlesWright-Bold.woff2') format('woff2'), url('../fonts/CharlesWright-Bold.otf') format('opentype');
          font-weight: 700;
          font-style: normal;
          font-display: swap;
      }


      @keyframes bidEffect {
          0% {
              transform: scale(1);
              color: inherit;
          }

          50% {
              transform: scale(1.5);
              color: #2ecc71;
          }

          100% {
              transform: scale(1);
              color: inherit;
          }
      }

      *,
      *::before,
      *::after {
          box-sizing: border-box;
      }

      * {
          margin: 0;
      }

      html {
          font-family: "Inter", sans-serif;
          font-optical-sizing: auto;
          font-style: normal;
          overflow-x: hidden;
      }

      body {
          color: white;

          margin: 0;
          padding: 0;
          background: black;
          overflow-x: hidden;
      }

      input,
      textarea,
      select {
          appearance: none;
          -webkit-appearance: none;

          padding: 0;
      }

      button {
          font-family: "Inter", system-ui, "Segoe UI", sans-serif;
      }

      button {
          padding: 1rem 1.4rem;
          font-size: 1rem;
          font-weight: 600;
          border: 1px solid transparent;
          cursor: pointer;
          background: none;
      }

      logged,
      unlogged {
          display: none;
      }

      html[data-logged-in="true"] logged {
          display: contents;
      }

      html[data-logged-in="false"] unlogged {
          display: contents;
      }

      .pointer {
        cursor: pointer;
      }

      .btn-primary {
          padding: 0.8em 1.6em;
          font-size: 1rem;
          font-weight: 600;
          color: #2b2b2b;
          background: linear-gradient(88deg, #FECE03 -7.64%, #EBBF02 145.94%);
          box-shadow: -6px -6px 16px 0 rgba(255, 255, 255, 0.10), 6px 9px 40px 0 rgba(137, 117, 27, 0.20);

          border: none;
          border-radius: 10px;
          cursor: pointer;
          transition: transform 0.15s ease, box-shadow 0.15s ease;
      }

      .btn-primary:disabled,
      .btn-primary[disabled] {
          opacity: 0.55;
          cursor: not-allowed;
          box-shadow: none;
          filter: grayscale(0.4);
      }

      .btn-border {
          background: none;
          border: 1px solid white;
          box-shadow: none;
          color: white;
          cursor: pointer;
          text-decoration: underline;
      }

      .btn-link {
          background: none;
          border: none;
          box-shadow: none;
          color: white;
          cursor: pointer;
          text-decoration: underline;
      }

      a {
          color: inherit;
          text-decoration: none;
      }

      .checkbox-field {
          display: flex;
          align-items: flex-start;
          gap: 12px;
          margin-top: 16px;
          font-size: 15px;
          color: white;
      }

      /* Hide native checkbox but keep it accessible */
      .checkbox-field input[type="checkbox"] {
          appearance: none;
          -webkit-appearance: none;
          width: 18px;
          height: 18px;
          margin-top: 2px;
          border-radius: 5px;
          border: 1.5px solid #c7c7cc;
          background-color: #fff;
          cursor: pointer;
          position: relative;
          transition:
              background-color 0.15s ease,
              border-color 0.15s ease,
              box-shadow 0.15s ease;
      }

      /* Hover */
      .checkbox-field input[type="checkbox"]:hover {
          border-color: #a1a1a6;
      }

      /* Focus (keyboard) */
      .checkbox-field input[type="checkbox"]:focus-visible {
          outline: none;
          box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.25);
          border-color: #007aff;
      }

      /* Checked state */
      .checkbox-field input[type="checkbox"]:checked {
          background-color: #007aff;
          border-color: #007aff;
      }

      /* Checkmark */
      .checkbox-field input[type="checkbox"]:checked::after {
          content: "";
          position: absolute;
          left: 5px;
          top: 2px;
          width: 4px;
          height: 8px;
          border: solid #fff;
          border-width: 0 2px 2px 0;
          transform: rotate(45deg);
      }

      /* Label */
      .checkbox-field label {
          line-height: 1.4;
          cursor: pointer;
      }

      /* Link style (Apple-like) */
      .checkbox-field a {
          color: #007aff;
          text-decoration: none;
      }

      .checkbox-field a:hover {
          text-decoration: underline;
      }



      header,
      footer {
          display: flex;
          padding: 20px;
          justify-content: space-between;
          align-items: center;
      }

      header .main-logo {
          margin: 0px 5px;
      }

      nav ul {
          list-style-type: none;
          padding: 0;
      }

      nav ul li {
          display: inline;
          margin-right: 10px;
      }

      nav ul li a {
          text-decoration: none;
          color: #333;
      }

      /* -----------------------------------------------------------
   NAVBAR
----------------------------------------------------------- */
      header.menu-open {
          position: fixed;
          inset: 0;
          z-index: 1001;
          background: rgba(25, 25, 25, 0.8);
          backdrop-filter: blur(10px);
          border: none;
          display: flex;
          flex-direction: row;
          align-items: self-start;
          justify-content: flex-start;
          overflow-y: auto;
      }

      /* Base layout bits (keep or merge with yours) */
      .navbar {
          position: sticky;
          display: flex;
          top: 0;
          z-index: 100;
          border-bottom: 1px solid rgba(0, 0, 0, 0.06);

          backdrop-filter: blur(16px) saturate(120%);
          -webkit-backdrop-filter: blur(16px) saturate(120%);

          background: black;
      }

      .navbar-left {
          display: flex;
          align-items: center;
      }

      /* Centered to viewport via 3-column grid */
      .navbar-inner {
          display: none;
          position: relative;
          /* IMPORTANT for submenu positioning */
          /* display: grid; */
          grid-template-columns: 1fr auto 1fr;
          align-items: center;
          padding: 0;
          max-width: 1280px;
          margin: 0 auto;
      }

      .navbar-end {
          display: flex;
          gap: 25px;
          justify-content: flex-end;
          align-items: center;
      }

      .burger {
          /* TODO: padding fix */
          padding: 10px;
          display: grid;
          place-items: center;
          cursor: pointer;
          border-radius: 10px;
      }


      .burger span {
          display: block;
          width: 28px;
          height: 2px;
          background: white;
          margin: 3px 0;
          transition: transform .2s ease, opacity .2s ease;
      }

      .brand {
          display: inline-flex;
          align-items: center;
          gap: 0.4rem;
          font-weight: 600;
          letter-spacing: 0.02em;
          white-space: nowrap;
          justify-self: start;

          padding: 0.75rem 1.5rem;
      }

      .brand-mark {
          width: 18px;
          height: 18px;
          border-radius: 50%;
          border: 1px solid rgba(0, 0, 0, 0.12);
          background: #ffffff;
          display: inline-block;
      }

      /* Center nav links block */
      .nav-links {

          display: flex;
          align-items: start;
          flex-direction: column;
          gap: 1.25rem;
          height: 100%;
      }


      /* Top-level nav items */
      .nav-item {
          height: 100%;
          display: flex;
          align-items: center;
      }

      .nav-link {
          opacity: 0.78;
          transition: opacity 160ms ease-out, transform 160ms ease-out;
          font-size: 1.25rem;

      }

      .nav-links .nav-link {
          font-size: 2rem;
      }


      @media only screen and (max-width: 833px) {
          header.menu-open .navbar-inner {
              display: revert;
              position: absolute;
              top: 50%;
              left: 2rem;
              transform: translateY(-50%);
          }

          #nav-cta-signup,
          #nav-cta-profile {
              display: none;
          }
      }

      @media (min-width: 834px) {
          .burger {
              display: none;
          }

          .navbar-inner {
              display: flex;
              justify-content: center;
          }

          .nav-links {
              flex-direction: row;
          }

          #main-header nav ul {
              flex-direction: row;
              align-items: center;
          }

          .nav-link,
          .nav-links .nav-link {

              font-size: 1.25rem;
          }
      }

      html[data-pathname="/personalize"] .nav-item[data-nav-pathname="/index"] .nav-link,
      html[data-pathname="/offers"] .nav-item[data-nav-pathname="/offers"] .nav-link,
      html[data-pathname="/auctions"] .nav-item[data-nav-pathname="/auctions"] .nav-link,
      html[data-pathname="/how-it-works"] .nav-item[data-nav-pathname="/how-it-works"] .nav-link,
      html[data-pathname="/faq"] .nav-item[data-nav-pathname="/faq"] .nav-link {
          color: #FECE03;
      }

      .nav-link:hover {
          opacity: 1;
          transform: translateY(-1px);
      }

      /* CTA */
      .nav-cta {
          padding: 0.35rem 0.9rem;
          border-radius: 999px;
          border: 1px solid rgba(0, 0, 0, 0.16);
          background: #ffffff;
          font-size: 0.9rem;
          font-weight: 500;
          opacity: 0.96;
      }

      .nav-cta:hover {
          opacity: 1;
      }

      /* ---------- FULL-WIDTH MEGA MENU WITH SECTIONS (NO FLICKER) ---------- */

      .submenu {
          position: fixed;
          top: 100%;
          left: 0;
          width: 99vw;
          /* full width of navbar (which is full viewport) */
          padding: 2rem 0;
          background: black;

          border-top: 1px solid rgba(0, 0, 0, 0.06);
          border-bottom: 1px solid rgba(0, 0, 0, 0.06);

          display: none;
          z-index: 40;

          box-shadow: 0 24px 48px rgba(0, 0, 0, 0.04);
      }


      /* inner container */
      .submenu-inner {
          max-width: 1040px;
          margin: 0 auto;
          padding: 0 1.5rem;

          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
          gap: 2.5rem;
      }

      /* section title */
      .submenu-title {
          margin: 0 0 0.75rem;
          font-size: 0.82rem;
          font-weight: 600;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          color: #6e6e73;
      }

      /* sub-items */
      .submenu-subitem {
          display: flex;
          padding: 0.35rem 0;
          font-size: 0.95rem;
          color: #ffffff;
          opacity: 0.85;
          border-radius: 6px;
      }

      .submenu-subitem:hover {
          opacity: 1;
          background: rgba(0, 0, 0, 0.04);
      }

      /* Responsive tweaks */
      @media (max-width: 640px) {
          .navbar-inner {
              padding-inline: 1rem;
          }

          header.menu-open .navbar-end {
              display: none;
          }

          .nav-links {
              gap: 2rem;
          }

          .submenu {
              display: none !important;
              padding: 1.5rem 0;
          }

          .submenu-inner {
              padding: 0 1rem;
              grid-template-columns: 1fr;
              gap: 2rem;
          }
      }


      /* Show submenu */
      .nav-item:hover>.submenu {
          display: block;
      }


      /* Top-level link animation */
      .nav-link {
          opacity: 0.78;
          transition: opacity 160ms ease-out, transform 160ms ease-out;
      }

      .nav-link:hover {
          opacity: 1;
          transform: translateY(-1px);
      }

      /* CTA link */
      .nav-cta {
          padding: 0.35rem 0.9rem;
          border-radius: 999px;
          border: 1px solid rgba(0, 0, 0, 0.16);
          background: #ffffff;
          font-size: 0.9rem;
          font-weight: 500;
          opacity: 0.96;
      }

      .nav-cta:hover {
          opacity: 1;
      }

      .profile-icon {
          border-radius: 60px;
          border: 1px solid var(--YLW-Gradient, #FECE03);
          width: 60px;
          height: 60px;

          color: transparent;
      }

      [data-profile-icon="0"] header .profile-icon,
      .profile-icon.profile-0 {
          background: none !important;
          color: white;
          display: flex;
          align-items: center;
          justify-content: center;

          text-align: center;
      }


      [data-profile-icon="1"] header .profile-icon,
      .profile-icon.profile-1 {
          background: url("/assets/profiles/1.png") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="2"] header .profile-icon,
      .profile-icon.profile-2 {
          background: url("/assets/profiles/2.png") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="3"] header .profile-icon,
      .profile-icon.profile-3 {
          background: url("/assets/profiles/3.png") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="4"] header .profile-icon,
      .profile-icon.profile-4 {
          background: url("/assets/profiles/4.webp") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="5"] header .profile-icon,
      .profile-icon.profile-5 {
          background: url("/assets/profiles/5.jpg") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="6"] header .profile-icon,
      .profile-icon.profile-6 {
          background: url("/assets/profiles/6.jpg") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="7"] header .profile-icon,
      .profile-icon.profile-7 {
          background: url("/assets/profiles/7.svg") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="8"] header .profile-icon,
      .profile-icon.profile-8 {
          background: url("/assets/profiles/8.svg") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="9"] header .profile-icon,
      .profile-icon.profile-9 {
          background: url("/assets/profiles/9.svg") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="10"] header .profile-icon,
      .profile-icon.profile-10 {
          background: url("/assets/profiles/10.svg") lightgray 50% / cover no-repeat;
      }

      [data-profile-icon="11"] header .profile-icon,
      .profile-icon.profile-11 {
          background: url("/assets/profiles/11.svg") lightgray 50% / cover no-repeat;
      }

      form {
          width: 70%;
      }

      .form-group {
          position: relative;
          width: 100%;

          margin-bottom: 20px;
      }

      .form-tooltip-validation {
          position: absolute;
          width: 100%;
          pointer-events: none;
      }

      .form-tooltip-info {
          bottom: 1.25rem;
          box-sizing: border-box;
          display: none;
          font-size: 14px;
          font-weight: 400;
          height: auto;
          letter-spacing: -.016em;
          line-height: 1.2857742857;
          min-width: 7.8235294118rem;
          position: absolute;
          z-index: 1;

          width: 100%;
          max-width: 560px;
          padding: 14px;
          border-radius: 12px;
          border: 1px solid rgba(255, 255, 255, 0.14);
          opacity: 0;
          transform: translateY(6px);
          transition: opacity 0.18s ease, transform 0.18s ease;
      }

      .form-tooltip.form-tooltip-show .form-tooltip-info {
          display: block;

          background: linear-gradient(180deg, rgba(32, 32, 34, 0.98) 0%, rgba(18, 18, 20, 0.98) 100%);
          box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
          backdrop-filter: blur(8px);

          color: #f3f4f6;
          opacity: 1;
          transform: translateY(0);
      }

      .form-tooltip {
          display: none;
          color: #1d1d1f;
          height: 1.1176470588rem;
          position: relative;
          top: 4px;
      }

      .form-tooltip.form-tooltip.form-tooltip-show {
          display: block;
      }

      .password-strength-container section {
          display: grid;
          gap: 10px;
      }

      .password-strength-container section>p {
          margin: 0;
      }

      .password-strength-container section>p .text {
          font-size: 12px;
          font-weight: 600;
          letter-spacing: 0.02em;
          color: #d1d5db;
          text-transform: uppercase;
      }

      .password-strength-container .text {
          font-size: 13px;
          line-height: 1.35;
      }

      .password-requirement {
          margin: 0;
          padding: 0;
          list-style: none;
          display: grid;
          gap: 6px;
      }

      .password-requirement li {
          margin: 0;
      }

      .password-requirement li p {
          margin: 0;
      }

      .text-color-glyph-gray-secondary {
          display: inline-flex;
          align-items: center;
          width: 100%;
          border-radius: 8px;
          padding: 8px 10px;
          color: #e5e7eb;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.12);
      }

      .text-color-glyph-gray-secondary::before {
          content: "";
          width: 6px;
          height: 6px;
          border-radius: 50%;
          margin-right: 10px;
          flex: 0 0 auto;
          background: #FECE03;
          box-shadow: 0 0 0 3px rgba(254, 206, 3, 0.15);
      }

      .form-dropdown-select,
      .form-textbox-input {
          width: -webkit-fill-available;
          padding: 24px 12px 12px 12px;
          font-size: 16px;
          border: 1px solid #6b6b6b;
          border-radius: 4px;
          outline: none;

          background: rgba(210, 210, 210, 0.1);
          backdrop-filter: blur(5px);

          color: white;
      }

      .form-dropdown-select::placeholder,
      .form-textbox-input::placeholder {
          color: transparent;
      }


      .form-dropdown-label,
      .form-textbox-label {
          position: absolute;
          top: 28px;
          left: 7px;
          font-size: 22px;
          color: #8f8f8f;
          background-color: transparent;
          padding: 0 4px;
          transform: translateY(-50%) scale(0.85);
          pointer-events: none;
          transition: all 0.2s ease-out;
      }

      .form-dropdown-select option {
          background: black;
      }

      /* 
      .form-textbox-input:focus+.form-textbox-label,
      .form-textbox-input:not(:placeholder-shown)+.form-textbox-label {
          top: 28px;
          left: -3px;
          font-size: 22px;
          color: #8f8f8f;
          background-color: transparent;
          padding: 0 4px;
          transform: translateY(-50%) scale(0.85);
      } */

      .form-dropdown-label,
      .form-textbox-input:focus+.form-textbox-label,
      .form-textbox-input:not(:placeholder-shown)+.form-textbox-label {
          top: 8px;
          font-size: 14px;
          transform: none;
      }


      .form-message-wrapper {
          position: relative;
          font-size: 12px;
          line-height: 1.3333733333;
          font-weight: 400;
          letter-spacing: -.01em;
          color: #e30000;
          margin-top: .4705882353rem;
          display: none;
      }

      .form-group--error .form-message-wrapper {
          display: flex;
      }

      .form-group--error .form-textbox-input,
      .form-group--error .form-dropdown-select {
          border-color: #C62828;
      }

      /* -----------------------------------------------------------
   LAYOUT
----------------------------------------------------------- */
      .page {
          min-height: 100vh;
          display: flex;
          flex-direction: column;
          width: 100%;
          overflow-x: clip;
      }

      .page-main {
          flex: 1 0 auto;
          padding: 0;
          width: 100%;
          max-width: 1280px;
          padding: 0;
          margin: 0 auto;
          overflow-x: clip;
      }

      .page-main.center {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
      }

      .page-with-bg {
          background: url(/assets/images/bg-1.svg) no-repeat, linear-gradient(170deg, #2F2F2F 18.18%, #151515 104.73%);
          background-size: cover;
          background-attachment: fixed;

      }

      .layout-2 {
          display: flex;
          gap: 2rem;
      }

      @media (max-width: 834px) {
          .layout-2 {
              flex-direction: column;
          }
      }

      .layout-sidebar {
          display: grid;
          grid-template-columns: 280px 1fr;

          background-color: rgba(10, 10, 10, 0.5);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          backdrop-filter: blur(6px);
          border-radius: 25px;
          padding: 30px 0px;
      }

      .layout-content {
          min-width: 0;
          padding: 0 30px;
      }

      @media (max-width: 834px) {
          .layout-sidebar {
              grid-template-columns: 1fr;
              padding: 0px 0 22px;
          }

          .layout-content {
              padding: 0 25px;
          }
      }

      .layout-center {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;


          background-color: rgba(10, 10, 10, 0.5);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          backdrop-filter: blur(6px);

          border-radius: 25px;
      }

      .login-container {
          min-width: 700px;
      }

      @media (max-width: 834px) {
          .login-container {
              margin: 0;
              padding: 25px;
              min-width: 100%;
          }
      }

      .sidebar {
          margin: 25px;
          padding-right: 2rem;
          border-right: 1px solid rgb(249 249 249 / 6%);
      }

      .sidebar-nav {
          display: flex;
          flex-direction: column;
          gap: 1rem;
      }

      .sidebar-mobile-summary {
          display: none;
      }

      .sidebar-back-button {
          display: none;
      }

      .sidebar-back-button[hidden] {
          display: none !important;
      }

      .sidebar-link {
          padding: 0.5rem 1rem;
          border-radius: 8px;
          color: #e7e7e7;
          font-weight: 600;
          transition: background-color 0.2s, color 0.2s;
      }

      .sidebar-separator {
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          margin: 1rem 0;
      }

      .sidebar-link-danger {
          color: #ffb0b0;
      }

      @media (max-width: 834px) {
          .sidebar {
              margin: 0;
              padding: 0 12px 14px;
              border-right: none;
              border-bottom: 1px solid rgb(249 249 249 / 10%);
          }

          .sidebar-back-button {
              display: inline-flex;
              align-items: center;
              gap: 0.35rem;
              width: 100%;
              margin-bottom: 0.6rem;
              padding: 0.72rem 0.95rem;
              color: #f1f1f1;
              background: rgba(255, 255, 255, 0.04);
              font-size: 0.95rem;
              font-weight: 600;
              text-align: left;
          }

          .sidebar-back-button:active {
              background: rgba(255, 255, 255, 0.12);
          }

          .sidebar-mobile-summary {
              display: flex;
              align-items: center;
              justify-content: space-between;
              padding: 0.82rem 1rem;
              font-weight: 700;
              color: #f1f1f1;
              cursor: pointer;
              user-select: none;
              list-style: none;
          }

          .sidebar-mobile-summary::after {
              content: "▾";
              font-size: 0.9rem;
              opacity: 0.8;
              transition: transform 0.2s ease;
          }

          .sidebar-mobile-summary::-webkit-details-marker {
              display: none;
          }

          .sidebar-mobile-menu[open] .sidebar-mobile-summary::after {
              transform: rotate(180deg);
          }

          .sidebar-nav {
              flex-direction: column;
              gap: 0.45rem;
              padding: 0 0.55rem 0.6rem;
          }

          .sidebar-mobile-menu[open] .sidebar-nav {
              display: flex;
          }

          .sidebar-link {
              padding: 0.72rem 0.9rem;
              border-radius: 10px;
              border: 1px solid rgba(255, 255, 255, 0.15);
              background: rgba(255, 255, 255, 0.04);
          }

          .sidebar-link:active {
              background: rgba(255, 255, 255, 0.12);
          }

          .sidebar-separator {
              display: none;
          }

          .sidebar-link-danger {
              margin-top: 25px;
              border-color: rgba(255, 112, 112, 0.35);
              background: rgba(255, 112, 112, 0.1);
          }
      }

      .section-separator {
          margin: 25px;
          height: 1px;
          background-color: #7171715c;
          backdrop-filter: blur(11px);
      }

      .section-separator-text {
          margin: 25px;
          display: flex;
          align-items: center;
          text-align: center;
          font-weight: 700;
          letter-spacing: 0.12em;
          color: #e0e0e0;

          text-shadow:
              1px 1px 0 rgba(255, 255, 255, 0.15),
              2px 2px 0 rgba(255, 255, 255, 0.08),
              0 0 6px rgba(255, 255, 255, 0.15);
      }

      .section-separator-text::before,
      .section-separator-text::after {
          content: "";
          flex: 1;
          border-bottom: 1px solid #8b8b8b;
      }

      .section-separator-text::before {
          margin-right: 12px;
      }

      .section-separator-text::after {
          margin-left: 12px;
      }

      .big-plate-container {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 2rem;
          gap: 15px;
      }

      @media (max-width: 834px) {
          .big-plate-container {
              align-self: center;
              box-sizing: border-box;
              width: 100%;
          }
      }

      .list {
          display: flex;
      }

      .list-item {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
      }

      .cards-container {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          /* equal width */
          grid-auto-rows: 1fr;
          gap: 1rem;
      }

      @media (max-width: 834px) {
          .cards-container {
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
              width: 100%;
          }
      }

      .card {
          display: flex;
          flex-direction: column;
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 8px;
          padding: 1rem;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          transition: transform 0.2s;
          backdrop-filter: blur(6px);
      }

      .cards-container .card-normal {
          background: url(/assets/images/dark-texture.png);
          background-repeat: round;
      }

      .card-black {
          background-color: rgba(10, 10, 10, 0.5);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          backdrop-filter: blur(6px);
          border-radius: 25px;
          padding: 30px;
      }

      .cards-container .card-prestigious {

          background-color: rgba(10, 10, 10, 0.5);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          backdrop-filter: blur(6px);
      }


      .cards-container .card.card-first-l-banner {
          grid-row-start: 1;
          grid-row-end: 3;
          padding: 0rem;
      }

      .card-header {
          padding-bottom: 10px;
      }

      .card .card-bottom {
          margin-top: 1rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .price-tag {
          font-size: 1.6rem;
          font-weight: 800;
          background: linear-gradient(180deg,
                  #f5f5f5 0%,
                  #d9d9d9 20%,
                  #bfbfbf 40%,
                  #e6e6e6 60%,
                  #a6a6a6 80%,
                  #ffffff 100%);
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
      }

      .zoom-bid {
          animation: bidEffect 0.4s ease-out;
      }

      .badge {
          display: inline-block;
          padding: 0.25em 0.75em;
          font-size: 0.75rem;
          font-weight: 600;
          color: white;
          border: 1px solid #ff3b30;
      }

      .badge.badge-normal {
          border-color: white;
      }

      .badge.badge-available {
          border-color: #4CD964;
      }

      .badge.badge-auction {
          border-color: #FF9500;
      }

      .badge.badge-gold {
          border-color: #FFD700;
          background-color: #FFD700;
          color: black;
      }

      .badge.badge-silver {
          border-color: #c0c0c0;
          background-color: #c0c0c0;
          color: black;
      }

      license-plate {
          position: relative;
          display: flex;
          border-radius: 8px;

          width: 300px;
          height: 58px;

          border: 3px solid #6d6d6d;
          outline: 4px solid #000000;
          outline-offset: -5px;
      }

      license-plate .form-tooltip {
          display: inline-block;
          position: absolute;
          top: -5px;
      }

      license-plate[size="big"] .form-tooltip-info {
          width: 100%;
      }

      license-plate>.plate {
          position: relative;
          background-color: color(rec2020 0.92 0.72 0.04);
      }

      license-plate:not([role="textbox"]) > .plate > input:active {
          background-color: white;
      }

      @keyframes placeholderBlink {

          0%,
          100% {
              opacity: 1;
          }

          50% {
              opacity: 0;
          }
      }


      license-plate>.plate>input::placeholder {
          color: rgb(70, 70, 70);
          transition: opacity 0.2s ease, transform 0.2s ease;
      }

      /* Focus animation */
      license-plate[role="textbox"]>.plate>input:focus {
          border-color: #4f46e5;
          /* modern indigo */
          box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
          transform: translateY(-2px);
      }

      /* Hide + slightly lift placeholder */
      license-plate[role="textbox"]>.plate>input:focus::placeholder {
          opacity: 0;
          transform: translateY(-4px);
      }

      license-plate[size="small"] {
          zoom: 0.5;
      }

      license-plate>.band {

          padding: 5px;
          background: color(display-p3 0 0.2 0.6);
          ;
          color: white;
          display: flex;
          align-content: flex-end;
          flex-wrap: wrap;
          font-size: 14px;
      }

      license-plate[size="big"]>.band {
          font-size: 24px;
      }

      /*
      .plate::after {
          content: "";
          position: absolute;
          left: 1px;
          top: 8%;
          width: 10%;
          height: 100%;

          background-image: url("/assets/images/European_stars.svg");
          background-repeat: no-repeat;
          background-position: center 6px;

          background-size: 70% auto;

          pointer-events: none;
      }
      */

      .plate input,
      .plate .mirror {
          position: relative;

          height: 100%;
          width: 100%;

          font-family: 'CharlesWright', sans-serif;

          appearance: none;
          background-color: transparent;
          border: none;
          outline: none;
          box-shadow: none;
          display: inline-block;
          letter-spacing: 10px;

          width: 100%;
          text-transform: uppercase;

          caret-color: black;

          font-size: 44px;
          text-align: center;

          text-shadow:
              0 1px 0 rgba(255, 255, 255, 0.14),
              0 -1px 0 rgba(0, 0, 0, 0.65),
              0 2px 6px rgba(0, 0, 0, 0.55);

          outline: none;
          transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
      }

      @supports (-webkit-touch-callout: none) {

          .plate input,
          .plate .mirror {
              padding-top: 5px;
          }
      }

      license-plate[size="big"] {
          height: 95px;
          width: 416px;
      }


      license-plate[size="big"] input,
      license-plate[size="big"] .mirror {
          font-size: 64px;
      }

      @media (max-width: 834px) {

          license-plate[size="big"] input,
          license-plate[size="big"] .mirror {
              font-size: 56px;
              letter-spacing: 4px;
          }
      }

      .plate-custom input {
          background: transparent;
          position: relative;
          z-index: 2;
          caret-color: black;
          color: transparent;
          text-shadow: none;
      }

      .plate .mirror {
          display: flex;
          justify-content: center;
          align-items: center;

          position: absolute;
          left: 0;
          color: black;
          pointer-events: none;
          white-space: pre;
          z-index: 1;

          -webkit-text-stroke: 1px rgba(0, 0, 0, .35);

          /* 3D depth using layered shadows */
          text-shadow:
              0 1px 0 rgba(255, 255, 255, .35),
              /* tiny highlight */
              0 2px 0 rgba(0, 0, 0, .18),
              0 3px 0 rgba(0, 0, 0, .16),
              0 4px 0 rgba(0, 0, 0, .14),
              0 5px 0 rgba(0, 0, 0, .12),
              0 6px 10px rgba(0, 0, 0, .25);
          /* soft drop */

      }

      license-plate[role="textbox"]>.plate>input {
          color: transparent !important;
          -webkit-text-stroke: none;
          text-shadow: none;
      }

      .card.plate-invalid button {
          opacity: 0.6;
          cursor: not-allowed;
      }

      .card.plate-taken .price-tag {
          background: none;
          color: darkred;
          -webkit-text-fill-color: unset;
      }


      .plate input:disabled {
          color: black;
      }

      .forbidden {
          color: #C62828;
          text-shadow: 0 0 8px rgba(198, 40, 40, 0.35);
      }

      footer {
          padding: 0;

      }

      .footer {
          flex-shrink: 0;
          border-top: 1px solid rgba(0, 0, 0, 0.06);
      }

      .footer-inner {
          max-width: 1040px;
          margin: 0 auto;
          padding: 1.5rem 1.5rem 1.75rem;
          font-size: 0.78rem;
          color: #e7e7e7;
          display: flex;
          flex-wrap: wrap;
          gap: 0.75rem;
          justify-content: space-between;
          align-items: center;
      }

      .footer-links {
          display: flex;
          flex-wrap: wrap;
          gap: 0.9rem;
      }

      .footer-link {
          opacity: 0.9;
      }

      .footer-link:hover {
          opacity: 1;
      }