

.PlansPageMainViewportContainer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5.5rem 1.25rem 4rem 1.25rem;
  z-index: 2;
  box-sizing: border-box;
}

.PlansPageHeroSectionWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  gap: 1.1rem;
  max-width: 820px;
}

.PlansPageBadgePill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--BorderMediumColor);
  border-radius: 9999px;
  font-family: var(--PrimaryCodeFontFamily);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--PureWhiteColor);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.PlansPageMainTitleHeading {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--PureWhiteColor);
  line-height: 1.1;
}

.PlansPageSubtitleDescription {
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  color: var(--SubtleSecondaryTextColor);
  line-height: 1.65;
  max-width: 640px;
}


.CurrencySwitcherContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 90vw;
  margin: 1.25rem auto 2.75rem auto;
  padding: 0.3rem 0.45rem;
  background: rgba(18, 18, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 20;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  gap: 0.3rem;
  position: relative;
}

.CurrencyOptionButton {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  white-space: nowrap;
  line-height: 1.3;
}

.CurrencyOptionButton:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.CurrencyOptionButton.ActiveCurrency {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.MoreCurrenciesDropdownContainer {
  position: relative;
  display: inline-flex;
}

.MoreCurrenciesTriggerButton {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.MoreCurrenciesTriggerButton:hover,
.MoreCurrenciesTriggerButton.MenuOpenState {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.MoreCurrenciesMenuWrapper {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-height: 280px;
  background: #12121c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 16px rgba(255, 255, 255, 0.05);
  z-index: 1500;
  display: none;
  overflow-y: auto;
  padding: 0.5rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-sizing: border-box;
}

.MoreCurrenciesMenuWrapper.OpenState {
  display: block !important;
}

.MoreCurrenciesListGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.MoreCurrencyOptionItem {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.MoreCurrencyOptionItem:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.MoreCurrencyOptionItem.ItemActiveState {
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  border-color: #ffffff;
}

@media (max-width: 680px) {
  .CurrencySwitcherContainer {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 0.45rem;
    gap: 0.35rem;
  }
  .MoreCurrenciesMenuWrapper {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
  }
}


.PlansCardsGridContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 3.5rem auto;
  align-items: stretch;
  box-sizing: border-box;
}

.PlanCardItem {
  position: relative;
  background: rgba(18, 18, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.PlanCardItem:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.PlanCardItem.FeaturedPlan {
  background: rgba(22, 22, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
}

.PlanCardItem.FeaturedPlan:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.7), 0 0 24px rgba(255, 255, 255, 0.1);
}

.PlanCardRibbonBadge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.65rem;
  background: #ffffff;
  color: #000000;
  border-radius: 9999px;
  font-family: var(--PrimaryCodeFontFamily);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.PlanCardRibbonBadge.FreePlanBadge {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.PlanCardHeaderGroup {
  margin-bottom: 1.75rem;
}

.PlanCardTitle {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.PlanCardSubtitle {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  min-height: 2.6rem;
}

.PlanCardPriceGroup {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.PlanCardPriceAmount {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.PlanCardPricePeriod {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.PlanCardFeaturesList {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex-grow: 1;
}

.PlanCardFeatureItem {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.PlanCardFeatureCheckIcon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: #10b981;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin-top: 1px;
}

.PlanCardFeatureCrossIcon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: #ef4444;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin-top: 1px;
}

.PlanCardFeatureWarnIcon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: #f59e0b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin-top: 1px;
}

.FeatureDisabledState span {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.15);
}

.FeatureWarningState span {
  color: #fbbf24;
}

.PlanCheckoutActionButton {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.PlanCheckoutActionButton:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.FeaturedPlan .PlanCheckoutActionButton {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.FeaturedPlan .PlanCheckoutActionButton:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.6);
}

@media (max-width: 1100px) {
  .PlansCardsGridContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .PlansCardsGridContainer {
    grid-template-columns: 1fr;
  }
}


.PlansGuaranteesSection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 1rem auto 3rem auto;
}

.PlanGuaranteeItem {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.PlanGuaranteeIconWrapper {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.PlanGuaranteeIconWrapper svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}

.PlanGuaranteeTitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.PlanGuaranteeDescription {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 820px) {
  .PlansGuaranteesSection {
    grid-template-columns: 1fr;
  }
}


.PaymentModalBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.PaymentModalBackdrop.ModalActiveState {
  display: flex;
}

.PaymentModalCardContainer {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #11111a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.PaymentModalCloseButton {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.PaymentModalCloseButton:hover {
  color: #ffffff;
}

.PaymentModalTitle {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.PaymentModalSubtitle {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  margin: 0;
}

.PaymentOrderSummaryCard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.PaymentOrderPlanName {
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
}

.PaymentOrderPrice {
  font-family: var(--PrimaryHeadingFontFamily);
  font-weight: 800;
  color: #ffffff;
  font-size: 1.3rem;
}

.PaymentFormRowGroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.PaymentFieldWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.PaymentFieldLabel {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.PaymentInputField {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  color: #ffffff;
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.PaymentInputField:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.PaymentSubmitPayButton {
  width: 100%;
  padding: 0.95rem;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 10px;
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.PaymentSubmitPayButton:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.PaymentSubmitPayButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.PaymentTermsAcceptancePanel {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.PaymentTermsAcceptancePanel:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.PaymentTermsAcceptanceLabel {
  display: contents;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.55;
  cursor: pointer;
}

.PaymentTermsAcceptanceLabel input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 0.18rem;
  accent-color: #ffffff;
  cursor: pointer;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.PaymentTermsAcceptanceText {
  color: rgba(255, 255, 255, 0.88);
}

.PaymentTermsLink {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.PaymentTermsLink:hover {
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}


.PaymentMethodTabsContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.PaymentMethodTabButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.PaymentMethodTabButton:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.PaymentMethodTabButton.ActiveTab {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.CryptoInvoiceCard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
}

.CryptoAmountRow {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.CryptoAmountLabel {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.CryptoAmountValueGroup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.CryptoAmountText {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.CryptoCopySmallBtn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.CryptoCopySmallBtn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.CryptoNetworkBadge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 9999px;
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.CryptoQrCodeContainer {
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  margin: 0.35rem 0;
}

.CryptoQrCodeImage {
  width: 140px;
  height: 140px;
  display: block;
}

.CryptoAddressWrapper {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.CryptoAddressLabel {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.CryptoAddressBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  gap: 0.5rem;
}

.CryptoAddressString {
  font-family: monospace;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.95);
  word-break: break-all;
  user-select: all;
}

.CryptoCopyAddressBtn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.CryptoCopyAddressBtn:hover {
  background: #ffffff;
  color: #000000;
}

.CryptoInstructionsNotice {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.CryptoNoticeItem strong {
  color: #ffffff;
}

.CryptoBackBtn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.CryptoBackBtn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.CryptoInvoiceCard {
  background: linear-gradient(160deg, rgba(18, 18, 26, 0.92), rgba(12, 12, 18, 0.78));
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.CryptoAmountText {
  font-size: 1.7rem;
  font-weight: 800;
  color: #10b981;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(16, 185, 129, 0.35);
}

.CryptoNetworkBadge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 9999px;
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.CryptoQrCodeContainer {
  background: #ffffff;
  padding: 0.55rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.55);
  margin: 0.35rem 0;
}

.CryptoAddressBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  gap: 0.5rem;
  transition: border-color 0.15s ease;
}

.CryptoAddressBox:hover {
  border-color: rgba(16, 185, 129, 0.45);
}

.CryptoInstructionsNotice {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.CryptoNoticeItem {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.CryptoNoticeItem strong {
  color: #ffffff;
}

.CryptoNoticeIcon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.CryptoVerifyingSpinner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(16, 185, 129, 0.18);
  border-top-color: #10b981;
  animation: CryptoVerifyingSpin 0.9s linear infinite;
}

@keyframes CryptoVerifyingSpin {
  to { transform: rotate(360deg); }
}

.CryptoClaimErrorDisplay {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: #fca5a5;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}


.CustomCountrySelectWrapper {
  position: relative;
  width: 100%;
}

.CountryDropdownTriggerButton {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  color: #ffffff;
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  text-align: left;
}

.CountryDropdownTriggerButton:focus,
.CountryDropdownTriggerButton.DropdownOpenState {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(18, 18, 26, 0.95);
}

.CountryTriggerSelectedContent {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow: hidden;
}

.CountryFlagImageElement {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.CountryDropdownMenuWrapper,
.CountryDropdownMenuContainer {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 240px;
  background: #12121c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 16px rgba(255, 255, 255, 0.05);
  z-index: 2000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-sizing: border-box;
}

.CountryDropdownMenuWrapper.MenuOpenState,
.CountryDropdownMenuContainer.MenuOpenState {
  display: flex !important;
}

.CountrySearchInputWrapper {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.CountrySearchInputField {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  color: #ffffff;
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.82rem;
  outline: none;
  box-sizing: border-box;
}

.CountrySearchInputField:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.CountryOptionsScrollList {
  max-height: 175px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0.35rem;
  gap: 0.15rem;
}

.CountryOptionItemButton {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.65rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}

.CountryOptionItemButton:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.CountryOptionItemButton.OptionSelectedState {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
}


.PaymentSuccessKeyCard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.PaymentSuccessKeyLabel {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.PaymentSuccessKeyString {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.05em;
  word-break: break-all;
  user-select: all;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.6rem;
  border-radius: 8px;
}

.PaymentCopyKeyButton {
  background: #10b981;
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.PaymentCopyKeyButton:hover {
  background: #059669;
}

.FloatingOrderResumeBanner {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  right: 1.5rem;
  max-width: 480px;
  width: calc(100% - 3rem);
  background: rgba(18, 18, 28, 0.94);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
  animation: SlideUpBanner 0.3s ease-out;
}

@keyframes SlideUpBanner {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes PulseGlow {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.FloatingOrderActionBtn {
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.FloatingOrderActionBtn:hover {
  background: #2563eb;
}

.FloatingOrderDismissBtn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

.FloatingOrderDismissBtn:hover {
  color: #ffffff;
}

@media (max-width: 600px) {
  .FloatingOrderResumeBanner {
    bottom: calc(1rem + env(safe-area-inset-bottom));
    right: 1rem;
    left: 1rem;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }
}
