@font-face {
  font-family: "Poppins-Light";
  src: url("../assets/fonts/poppins-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../assets/fonts/poppins-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../assets/fonts/poppins-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Semibold";
  src: url("../assets/fonts/poppins-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../assets/fonts/poppins-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brushlie-demo";
  src: url("../assets/fonts/brushlie-demo.otf") format("opentype");
  font-display: block;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: "Poppins-Regular", "Poppins", sans-serif;
}

body {
  background-color: #0B0B1E;
  background-image: radial-gradient(circle at top, rgba(147, 51, 234, 0.15) 0%, transparent 50%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  font-weight: 400;
  position: relative;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-weight: 700;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #0B0B1E;
}

::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 20px;
  border: 4px solid #0B0B1E;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888888;
}

/* Firefox Support */
* {
  scrollbar-width: thin;
  scrollbar-color: #666666 transparent;
}

.partner-page {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.form-vector-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}
.form-vector-top img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

/* Background Glow */
/* Header */
.top-nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 56px;
  flex-shrink: 0;
  z-index: 10;
}

.nav-left, .nav-right {
  flex: 1;
  display: flex;
}

.nav-right {
  justify-content: flex-end;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

.back-btn:hover {
  opacity: 1;
}

.back-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.spree-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(249, 102, 172, 0.2));
}

/* Content */
.partner-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.partner-title {
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: bold;
}

.partner-subtitle {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Partner Options */
.partner-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.option-card {
  border-radius: 16px;
  padding: 48px 32px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(249, 102, 172, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.option-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 102, 172, 0.3);
}

.option-card:hover::before {
  opacity: 1;
}

.option-card.selected {
  border-color: #F966AC;
  transform: translateY(-4px);
}

.option-card.selected::before {
  opacity: 1;
}

.option-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.option-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(249, 102, 172, 0.2);
  transition: all 0.4s ease;
}

.option-card:hover .option-icon-wrapper::before,
.option-card.selected .option-icon-wrapper::before {
  border-color: #F966AC;
  box-shadow: 0 0 30px rgba(249, 102, 172, 0.3);
}

.option-icon {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(100%) opacity(1);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.option-card:hover .option-icon,
.option-card.selected .option-icon {
  filter: brightness(0) saturate(100%) invert(52%) sepia(89%) saturate(2476%) hue-rotate(310deg) brightness(101%) contrast(95%);
  transform: scale(1.1);
}

.check-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: #F966AC;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.option-card.selected .check-badge {
  opacity: 1;
  transform: scale(1);
}

.option-title {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.option-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.6;
}

/* Continue Button */
.continue-btn {
  width: 100%;
  height: 72px;
  max-width: 400px;
  background: #F966AC;
  color: #000;
  border: none;
  border-radius: 16px;
  padding: 20px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
  pointer-events: none;
}

.continue-btn.active {
  opacity: 1;
  pointer-events: all;
}

.continue-btn.active:hover {
  transform: translateY(-2px);
}

/* Form Screen */
.form-screen {
  max-width: 600px;
}

.form-header {
  margin-bottom: 40px;
}

.back-to-selection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  padding: 8px 0;
}

.back-to-selection:hover {
  opacity: 1;
}

.form-title {
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
  text-transform: uppercase;
}

/* Form Styles */
.partner-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-group-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.form-group-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.form-group:has(.dropdown-selected.open) {
  z-index: 1000;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group label .required {
  color: rgba(249, 102, 172, 0.6);
  margin-left: 4px;
}

.form-input {
  width: 100%;
  height: 56px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0 16px;
  color: #FFFFFF;
  caret-color: #FFFFFF;
  font-size: 15px;
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  transition: all 0.3s ease;
}

/* Fix browser autofill background/color */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFFFFF;
  caret-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0px 1000px #15152b inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.form-input.error {
  border-color: #ff4d4d !important;
}

.form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.form-input:focus {
  outline: none;
  border-color: rgba(249, 102, 172, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23F966AC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

select.form-input option {
  background: #0B0B1E;
  color: #FFFFFF;
  padding: 12px;
}

.error-hint {
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
  position: absolute;
  bottom: -22px;
  left: 0;
}

/* Custom Dropdown Styles */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-selected {
  width: 100%;
  height: 56px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-selected.error {
  border-color: #ff4d4d !important;
}

.dropdown-selected:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #F966AC;
}

.dropdown-selected.open {
  border-color: #F966AC;
}

.selected-text {
  font-size: 14px;
  color: #FFFFFF;
  opacity: 0.5;
  text-transform: uppercase;
}

.chevron-icon {
  color: #F966AC;
  transition: all 0.3s ease;
}

.dropdown-selected.open .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #15152b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-option {
  padding: 10px 24px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  margin: 2px 10px;
}

.dropdown-option:hover {
  background: #0C0C1F;
  color: #FFF;
}

.dropdown-option.selected {
  background: #0C0C1F;
  color: #FFF;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: #F966AC;
  color: #13142A;
  border: none;
  border-radius: 12px;
  padding: 20px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 249, 175, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* Form Message */
.form-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}

.form-message.success {
  background: rgba(100, 255, 100, 0.1);
  color: #4dfa7b;
  border: 1px solid rgba(100, 255, 100, 0.2);
}

.form-message.error {
  background: rgba(255, 100, 100, 0.1);
  color: #ff4d4d;
  border: 1px solid rgba(255, 100, 100, 0.2);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 767px) {
  .partner-page {
    padding: 0;
  }
  .choice {
    padding: 0px 0 50px;
  }
  .top-nav {
    padding: 0 20px;
    margin: 56px 0 30px;
  }
  .back-icon {
    width: 56px;
    height: 56px;
  }
  .back-btn span {
    display: none;
  }
  .spree-logo img {
    height: 32px;
  }
  .partner-title {
    font-size: 28px;
  }
  .partner-subtitle {
    font-size: 11px;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
  }
  .partner-content {
    max-width: 100%;
    padding: 0 20px 40px;
  }
  .partner-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .option-card {
    padding: 32px 20px;
  }
  .option-icon-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  .option-icon {
    width: 40px;
    height: 40px;
  }
  .option-title {
    font-size: 18px;
  }
  .option-description {
    font-size: 11px;
  }
  .form-title {
    font-size: 28px;
  }
  .form-subtitle {
    font-size: 16px;
  }
  .form-group {
    margin-bottom: 24px;
  }
  .form-group label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .form-group-row {
    gap: 12px;
  }
  .form-input, .dropdown-selected {
    height: 48px;
    padding: 14px 18px;
    font-size: 14px;
  }
  .submit-btn {
    padding: 16px;
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .partner-title {
    font-size: 40px;
    margin-bottom: 8px;
    margin-top: 50px;
  }
  .partner-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
    font-weight: 500;
  }
  .partner-options {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .option-card {
    padding: 24px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon title" "desc desc";
    align-items: center;
    text-align: left;
    position: relative;
    gap: 12px 16px;
    overflow: visible;
  }
  .option-card.selected {
    border-color: #F966AC;
  }
  /* Keep icon white on mobile - no color change */
  .option-card.selected .option-icon {
    filter: brightness(0) saturate(100%) invert(100%) opacity(0.7);
    transform: scale(1);
  }
  .option-icon-wrapper {
    grid-area: icon;
    width: auto;
    height: auto;
    margin: 0;
    position: static;
    display: flex;
    align-items: center;
  }
  .option-icon-wrapper::before {
    display: none;
  }
  /* Position check badge on card itself, not icon wrapper */
  .check-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
  }
  /* Ensure check badge is visible when selected on mobile */
  .option-card.selected .check-badge {
    opacity: 1;
    transform: scale(1);
  }
  .option-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .option-title {
    grid-area: title;
    font-size: 24px;
    margin-bottom: 0;
    text-align: left;
    font-weight: 600;
  }
  .option-description {
    grid-area: desc;
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    margin: 0;
    margin-top: 28px;
  }
  .form-group-row {
    flex-direction: column;
    gap: 0;
  }
  .form-title {
    font-size: 40px;
  }
  .form-input, .dropdown-selected {
    padding: 6px 10px;
    font-size: 14px;
    height: 48px;
  }
  .submit-btn {
    padding: 16px;
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 380px) {
  .partner-title {
    font-size: 20px;
  }
  .top-nav {
    padding: 0 15px;
    margin: 15px 0;
  }
}/*# sourceMappingURL=partner.css.map */