.elementor-1307 .elementor-element.elementor-element-6cc442b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1307 .elementor-element.elementor-element-2a045ca > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-1307 .elementor-element.elementor-element-757de2d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1307 .elementor-element.elementor-element-b2db15c > .elementor-widget-container{margin:-150px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-1307 .elementor-element.elementor-element-b2db15c > .elementor-widget-container{margin:-80px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-2a045ca */*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-accent:  #00e676;
  --gold-accent:   #f5c842;
  --bg-deep:       #040e06;
  --bg-card:       #081508;
  --bg-logo:       #ffffff;
  --border-main:   rgba(0, 230, 118, 0.18);
  --border-dim:    rgba(0, 230, 118, 0.07);
  --text-white:    #ffffff;
  --text-body:     rgba(255,255,255,0.72);
  --text-muted:    rgba(0, 230, 118, 0.55);
  --text-dim:      rgba(0, 230, 118, 0.28);
}

/* ── BASE ── */
html, body {
  min-height: 100vh;
  background: var(--bg-deep);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── SCANLINE ── */
.scanline {
  position: fixed;
  top: -3px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, transparent, rgba(0,230,118,0.13), transparent);
  animation: scan 6s linear infinite;
  z-index: 10;
  pointer-events: none;
}
@keyframes scan {
  from { top: -3px; }
  to   { top: 100vh; }
}

/* ── GRID BG ── */
.pay-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── SECTION ── */
.pay-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.pay-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

/* ── HEADER ── */
.pay-header {
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.6s 0.15s ease forwards;
}

.pay-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: 0.65;
  margin-bottom: 10px;
}

.pay-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.title-accent { color: var(--gold-accent); }

.pay-subtitle {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.pay-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(0,230,118,0.35), rgba(0,230,118,0.06) 55%, transparent);
}

/* ── TOP CARDS ROW ── */
.pay-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}

/* ── INDIVIDUAL CARD ── */
.pay-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 10px;
  padding: 24px 28px;
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.pay-card:hover {
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 0 24px rgba(0,230,118,0.08);
}

/* ── LOGO WRAP (white box) ── */
.pay-card-logo-wrap {
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 8px;
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}

/* ── PAYPAL SVG LOGO ── */
.paypal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.paypal-logo svg {
  width: 120px;
  height: auto;
}

/* ── BRAND TEXT LOGOS ── */
.brand-logo {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

/* Skrill – bold italic purple */
.brand-logo--skrill {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 700;
  color: #7b2d8b;
  letter-spacing: -0.02em;
}

/* Neteller – condensed bold lime-green italic */
.brand-logo--neteller {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  font-style: italic;
  color: #7ab648;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(122,182,72,0.25);
}

.neteller-reg {
  font-size: 0.8rem;
  vertical-align: super;
  color: #7ab648;
  font-style: normal;
}

/* ── CARD TEXT INFO ── */
.pay-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.pay-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: var(--text-white);
  text-transform: uppercase;
}

.pay-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 3px;
  padding: 3px 8px;
  width: fit-content;
  background: rgba(0,230,118,0.05);
}

/* ── CRYPTO ROW ── */
.crypto-row {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 10px;
  padding: 28px 36px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}

/* ── COIN GRID ── */
.crypto-coins {
  display: grid;
  grid-template-columns: repeat(5, 44px);
  grid-template-rows: repeat(2, 44px);
  gap: 8px;
  flex-shrink: 0;
}

.crypto-coin {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s;
  user-select: none;
}

.crypto-coin:hover {
  transform: scale(1.12);
  box-shadow: 0 0 12px rgba(255,255,255,0.2);
}

.cc-btc  { background: #f7931a; }
.cc-eth  { background: #627eea; }
.cc-usdt { background: #26a17b; }
.cc-bnb  { background: #f3ba2f; color: #1a1a1a; }
.cc-usdc { background: #2775ca; }
.cc-xrp  { background: #00aae4; }
.cc-ada  { background: #0033ad; }
.cc-sol  { background: linear-gradient(135deg, #9945ff, #14f195); }
.cc-trx  { background: #ef0027; }
.cc-ltc  { background: #a6a9aa; color: #333; }

/* ── CRYPTO INFO ── */
.crypto-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.crypto-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white);
}

.crypto-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 3px;
  padding: 4px 10px;
  width: fit-content;
  background: rgba(0,230,118,0.05);
}

/* ── BUY NOW BUTTON ── */
.crypto-action {
  flex-shrink: 0;
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--gold-accent);
  color: #0a0f0a;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(245,200,66,0.25);
}

.buy-btn:hover {
  background: #ffd740;
  box-shadow: 0 6px 28px rgba(245,200,66,0.4);
  transform: translateY(-2px);
}

.buy-btn:active {
  transform: translateY(0);
}

/* ── FOOTER NOTE ── */
.pay-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.6s 0.65s ease forwards;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .pay-cards-row {
    grid-template-columns: 1fr;
  }

  .crypto-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .crypto-action {
    width: 100%;
  }

  .buy-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .pay-section { padding: 60px 20px; }

  .pay-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .pay-card-logo-wrap {
    width: 100%;
    height: 80px;
  }

  .crypto-coins {
    grid-template-columns: repeat(5, 40px);
    grid-template-rows: repeat(2, 40px);
  }

  .crypto-coin {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b2db15c */*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-accent:  #00e676;
  --gold-accent:   #f5c842;
  --bg-white:      #ffffff;
  --bg-dark:       #040e06;
  --bg-card:       #081408;
  --bg-strip:      #050f06;
  --border-green:  rgba(0, 230, 118, 0.18);
  --border-gold:   rgba(245, 200, 66, 0.2);
  --text-white:    #ffffff;
  --text-body:     rgba(255,255,255,0.72);
  --text-muted:    rgba(0, 230, 118, 0.5);
  --text-dim:      rgba(0, 230, 118, 0.22);
}

/* ── BASE ── */
html, body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-dark);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── SCANLINE ── */
.scanline {
  position: fixed;
  top: -3px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, transparent, rgba(0,230,118,0.12), transparent);
  animation: scan 6s linear infinite;
  z-index: 10;
  pointer-events: none;
}
@keyframes scan {
  from { top: -3px; }
  to   { top: 100vh; }
}

/* ══════════════════════════════
   WHITE LOGO HEADER
══════════════════════════════ */
.site-header {
  position: relative;
  z-index: 2;
  background: var(--bg-white);
  padding: 16px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.logo-link:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  text-shadow: 0 0 16px rgba(245,200,66,0.35);
}

/* ══════════════════════════════
   CONTACT SECTION
══════════════════════════════ */
.contact-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* grid pattern */
.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* center glow */
.contact-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center bottom, rgba(0,50,15,0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── TOP DIVIDER ── */
.contact-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,230,118,0.25) 20%,
    rgba(0,230,118,0.25) 80%,
    transparent
  );
  margin-bottom: 0;
}

/* ── CONTACT CARD ── */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0 52px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}

/* LEFT */
.contact-card-left {
  padding-right: 20px;
  border-right: 1px solid var(--border-green);
}

.contact-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: 0.65;
  margin-bottom: 12px;
}

.contact-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.title-accent { color: var(--gold-accent); }

.contact-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 340px;
}

/* RIGHT */
.contact-card-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── CONTACT ITEMS ── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-item:hover {
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 0 20px rgba(0,230,118,0.07);
}

.contact-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-email {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-accent);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.contact-email:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

/* ── BOTTOM STRIP ── */
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--bg-strip);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s ease forwards;
}

.strip-text {
  font-size: 0.88rem;
  color: var(--text-body);
  letter-spacing: 0.01em;
}

.strip-text strong {
  color: var(--text-white);
  font-weight: 700;
}

.strip-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-accent);
  text-shadow:
    0 0 18px rgba(245,200,66,0.35),
    0 0 40px rgba(245,200,66,0.12);
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .contact-card-left {
    border-right: none;
    border-bottom: 1px solid var(--border-green);
    padding-right: 0;
    padding-bottom: 28px;
  }

  .contact-strip {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-inner { padding: 0 24px; }
  .site-header   { padding: 14px 24px; }
  .logo-img      { height: 64px; }
}/* End custom CSS */