/* ForexPro Theme — main.css v3.1.0 */

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-tap-highlight-color:transparent}
body{font-family:var(--fp-font),'Montserrat',sans-serif;background:var(--fp-dark);color:#fff;overflow-x:hidden;padding-bottom:64px}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
ul,ol{list-style:none}
button{cursor:pointer;font-family:inherit}

/* ── CSS VARIABLES ── */
:root{
  --fp-font:       'Montserrat';
  --fp-dark:       #060f08;
  --fp-dark2:      #0a1f0f;
  --fp-dark3:      #0f2d17;
  --fp-green:      #1a6b3c;
  --fp-green2:     #22963f;
  --fp-green3:     #2db84f;
  --fp-gold:       #c9a227;
  --fp-gold2:      #e8c96a;
  --fp-muted:      rgba(255,255,255,0.55);
  --fp-border:     rgba(255,255,255,0.08);
  --fp-card:       rgba(255,255,255,0.04);
  --fp-radius:     12px;
  --fp-logo-size:  38px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.fp-nav{
  position:sticky;top:0;z-index:9999;
  background:var(--fp-dark);
  border-bottom:1px solid var(--fp-border);
  height:62px;
  display:flex;align-items:center;
  justify-content:space-between;
  padding:0 18px;
  gap:12px;
}
.fp-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.fp-logo-icon{
  width:var(--fp-logo-size);height:var(--fp-logo-size);
  background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:calc(var(--fp-logo-size) * 0.38);font-weight:900;color:#fff;letter-spacing:-1px;
  flex-shrink:0;
}
.fp-logo-img{height:var(--fp-logo-size);width:auto;object-fit:contain}
.fp-logo-text{font-size:clamp(14px, 2vw, 18px);font-weight:800;color:#fff;letter-spacing:-0.3px;white-space:nowrap}
.fp-logo-text .fp-hl{color:var(--fp-gold)}

.fp-nav-links{display:none;list-style:none;align-items:center;gap:2px;flex:1;justify-content:center}
.fp-nav-links a{color:var(--fp-muted);font-size:13px;font-weight:600;padding:6px 11px;border-radius:7px;transition:color .2s,background .2s;white-space:nowrap}
.fp-nav-links a:hover,.fp-nav-links .current-menu-item>a{color:#fff;background:var(--fp-card)}
.fp-nav-links .current-menu-item>a{color:var(--fp-gold)}

.fp-nav-cta{
  background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));
  color:#fff;font-family:inherit;font-size:12px;font-weight:700;
  padding:9px 16px;border-radius:8px;border:none;
  white-space:nowrap;flex-shrink:0;
  transition:opacity .2s;
}
.fp-nav-cta:hover{opacity:.85}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.fp-hero{
  position:relative;min-height:560px;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:0 0 40px;overflow:hidden;
}
.fp-hero-bg{
  position:absolute;inset:0;z-index:0;
  background:linear-gradient(180deg,rgba(6,15,8,.25) 0%,rgba(6,15,8,.93) 68%,var(--fp-dark) 100%),
             linear-gradient(135deg,#061a0c 0%,#0d3320 50%,#0a2a18 100%);
}
.fp-hero-grid{
  position:absolute;inset:0;z-index:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:44px 44px;
}
.fp-hero-orb{
  position:absolute;z-index:0;pointer-events:none;
  width:380px;height:380px;border-radius:50%;
  background:radial-gradient(circle,rgba(45,184,79,.16) 0%,transparent 70%);
  top:-100px;right:-80px;
}
.fp-hero-svg{position:absolute;inset:0;z-index:0;opacity:.06;overflow:hidden;pointer-events:none}
.fp-hero-svg svg{width:100%;height:100%}
.fp-hero-inner{position:relative;z-index:1;padding:0 20px}

.fp-hero-badge{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(201,162,39,.1);border:1px solid rgba(201,162,39,.3);
  color:var(--fp-gold2);font-size:10px;font-weight:700;
  letter-spacing:1.5px;text-transform:uppercase;
  padding:5px 13px;border-radius:100px;margin-bottom:18px;
}
.fp-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--fp-green3);animation:fp-pulse 1.6s ease-in-out infinite}
@keyframes fp-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.3;transform:scale(.75)}}

.fp-hero h1{font-size:clamp(24px,5vw,48px);font-weight:900;color:#fff;line-height:1.15;letter-spacing:-.6px;margin-bottom:14px}
.fp-hero h1 em{color:var(--fp-gold);font-style:italic}
.fp-hero-desc{font-size:14px;color:var(--fp-muted);line-height:1.75;margin-bottom:28px;max-width:520px}
.fp-hero-btns{display:flex;flex-direction:column;gap:10px;margin-bottom:28px}

.fp-btn-gold{display:block;text-align:center;background:linear-gradient(135deg,var(--fp-gold),var(--fp-gold2));color:var(--fp-dark);font-family:inherit;font-size:14px;font-weight:800;padding:14px 26px;border-radius:10px;border:none;box-shadow:0 6px 24px rgba(201,162,39,.28);letter-spacing:.2px;transition:transform .15s,box-shadow .15s;cursor:pointer}
.fp-btn-gold:hover{transform:translateY(-1px);box-shadow:0 10px 30px rgba(201,162,39,.4)}
.fp-btn-ghost{display:block;text-align:center;background:transparent;color:rgba(255,255,255,.7);font-family:inherit;font-size:14px;font-weight:600;padding:13px 26px;border-radius:10px;border:1px solid var(--fp-border);letter-spacing:.2px;transition:background .2s,border-color .2s}
.fp-btn-ghost:hover{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.2)}
.fp-btn-green{display:inline-block;text-align:center;background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));color:#fff;font-family:inherit;font-size:14px;font-weight:700;padding:14px 26px;border-radius:10px;border:none;box-shadow:0 6px 22px rgba(45,184,79,.25);transition:opacity .2s;cursor:pointer}
.fp-btn-green:hover{opacity:.88}

.fp-hero-stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  border:1px solid var(--fp-border);border-radius:var(--fp-radius);overflow:hidden;
  background:rgba(255,255,255,.03);backdrop-filter:blur(8px);
}
.fp-stat-box{padding:13px 8px;text-align:center;border-right:1px solid var(--fp-border)}
.fp-stat-box:last-child{border-right:none}
.fp-stat-num{font-size:18px;font-weight:900;color:#fff;line-height:1}
.fp-stat-lbl{font-size:9px;color:var(--fp-muted);font-weight:600;margin-top:3px;letter-spacing:.3px}

/* ══════════════════════════════
   LIVE RATES
══════════════════════════════ */
.fp-rates-bar{background:var(--fp-dark3);border-top:1px solid var(--fp-border);border-bottom:1px solid var(--fp-border);padding:16px 20px 4px}
.fp-rates-label{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--fp-gold);margin-bottom:10px}
.fp-tv-ticker{height:46px;overflow:hidden}

/* ══════════════════════════════
   SECTION BASE
══════════════════════════════ */
.fp-sec{padding:44px 20px}
.fp-sec-dark{background:var(--fp-dark2)}
.fp-sec-darker{background:var(--fp-dark)}
.fp-sec-mid{background:var(--fp-dark3)}
.fp-sec-head{margin-bottom:26px}
.fp-eyebrow{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--fp-gold);margin-bottom:8px}
.fp-sec-head h2{font-size:clamp(20px,3.5vw,32px);font-weight:900;color:#fff;line-height:1.2;letter-spacing:-.4px;margin-bottom:8px}
.fp-sec-head h2 span{color:var(--fp-green3)}
.fp-sec-head p{font-size:13px;color:var(--fp-muted);line-height:1.7}

/* ══════════════════════════════
   BROKER CARDS
══════════════════════════════ */
.fp-brokers-grid{display:flex;flex-direction:column;gap:14px}
.fp-broker{background:var(--fp-card);border:1px solid var(--fp-border);border-radius:var(--fp-radius);padding:20px;position:relative;overflow:hidden;transition:border-color .25s,transform .25s}
.fp-broker:hover{border-color:rgba(45,184,79,.3);transform:translateY(-2px)}
.fp-broker.fp-top{border-color:rgba(201,162,39,.35);background:rgba(201,162,39,.04)}
.fp-top-tag{position:absolute;top:0;right:0;background:linear-gradient(135deg,var(--fp-gold),var(--fp-gold2));color:var(--fp-dark);font-size:9px;font-weight:900;padding:4px 12px;border-bottom-left-radius:9px;letter-spacing:.5px}
.fp-b-row1{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:14px}
.fp-b-name{font-size:17px;font-weight:900;color:#fff}
.fp-b-reg{font-size:10px;color:var(--fp-muted);font-weight:500;margin-top:2px}
.fp-b-stars{color:var(--fp-gold);font-size:13px}
.fp-b-info{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:14px}
.fp-b-lbl{font-size:9px;color:var(--fp-muted);font-weight:700;letter-spacing:.5px;text-transform:uppercase;margin-bottom:3px}
.fp-b-val{font-size:13px;font-weight:800;color:#fff}
.fp-b-bottom{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.fp-pill{display:inline-block;padding:4px 11px;border-radius:100px;font-size:9px;font-weight:800;letter-spacing:.5px;text-transform:uppercase}
.fp-pill-g{background:rgba(45,184,79,.12);color:var(--fp-green3);border:1px solid rgba(45,184,79,.22)}
.fp-pill-o{background:rgba(201,162,39,.12);color:var(--fp-gold2);border:1px solid rgba(201,162,39,.22)}
.fp-b-btn{margin-left:auto;background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));color:#fff;font-family:inherit;font-size:12px;font-weight:700;padding:9px 18px;border-radius:8px;border:none;white-space:nowrap;transition:opacity .2s}
.fp-b-btn:hover{opacity:.85}

/* ══════════════════════════════
   BLOG GRID (with images)
══════════════════════════════ */
.fp-blog-grid{display:grid;grid-template-columns:1fr;gap:16px}
.fp-blog-card{background:var(--fp-card);border:1px solid var(--fp-border);border-radius:var(--fp-radius);overflow:hidden;transition:transform .25s,border-color .25s;display:block}
.fp-blog-card:hover{transform:translateY(-4px);border-color:rgba(45,184,79,.3)}
.fp-blog-thumb{
  height:180px;overflow:hidden;position:relative;
  background:linear-gradient(135deg,var(--fp-dark3),var(--fp-green));
  display:flex;align-items:center;justify-content:center;font-size:40px;
}
.fp-blog-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.fp-blog-card:hover .fp-blog-thumb img{transform:scale(1.05)}
.fp-blog-cat-badge{
  position:absolute;top:12px;left:12px;
  background:var(--fp-gold);color:var(--fp-dark);
  font-size:9px;font-weight:800;letter-spacing:1px;text-transform:uppercase;
  padding:3px 10px;border-radius:4px;z-index:1;
}
.fp-blog-body{padding:16px}
.fp-blog-body h3{font-size:14px;font-weight:800;color:#fff;line-height:1.4;margin-bottom:8px}
.fp-blog-excerpt{font-size:12px;color:var(--fp-muted);line-height:1.6;margin-bottom:12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.fp-blog-meta{display:flex;justify-content:space-between;align-items:center}
.fp-blog-date{font-size:10px;color:var(--fp-muted);font-weight:500}
.fp-read-more{font-size:11px;font-weight:800;color:var(--fp-green3);letter-spacing:.5px;text-transform:uppercase}

/* ══════════════════════════════
   LIVE CHART
══════════════════════════════ */
.fp-chart-box{height:340px;border-radius:var(--fp-radius);overflow:hidden;border:1px solid var(--fp-border);margin-top:22px}

/* ══════════════════════════════
   STEPS
══════════════════════════════ */
.fp-steps{display:flex;flex-direction:column}
.fp-step{display:flex;gap:16px;padding:20px 0;border-bottom:1px solid var(--fp-border)}
.fp-step:last-child{border-bottom:none}
.fp-step-left{flex:0 0 46px;display:flex;flex-direction:column;align-items:center}
.fp-step-num{width:46px;height:46px;border-radius:12px;flex-shrink:0;background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));color:#fff;font-size:17px;font-weight:900;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(45,184,79,.28)}
.fp-step-line{width:2px;flex:1;margin-top:8px;min-height:16px;background:linear-gradient(to bottom,var(--fp-green3),transparent)}
.fp-step:last-child .fp-step-line{display:none}
.fp-step-body{padding-top:9px}
.fp-step-body h4{font-size:14px;font-weight:800;color:#fff;margin-bottom:5px}
.fp-step-body p{font-size:12px;color:var(--fp-muted);line-height:1.7}

/* ══════════════════════════════
   CALCULATOR
══════════════════════════════ */
.fp-calc{background:var(--fp-card);border:1px solid var(--fp-border);border-radius:var(--fp-radius);padding:22px}
.fp-calc-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:14px}
.fp-fg label{display:block;font-size:9px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;color:var(--fp-muted);margin-bottom:6px}
.fp-fg input,.fp-fg select{width:100%;padding:11px 13px;background:rgba(255,255,255,.06);border:1.5px solid var(--fp-border);border-radius:9px;color:#fff;font-family:inherit;font-size:14px;font-weight:700;outline:none;-webkit-appearance:none;transition:border-color .2s}
.fp-fg input:focus,.fp-fg select:focus{border-color:var(--fp-green3)}
.fp-fg select option{background:var(--fp-dark)}
.fp-calc-go{width:100%;padding:13px;margin-bottom:14px;background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));color:#fff;border:none;border-radius:10px;font-family:inherit;font-size:14px;font-weight:800;letter-spacing:.3px;transition:opacity .2s}
.fp-calc-go:hover{opacity:.88}
.fp-calc-res{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.fp-res-box{background:rgba(255,255,255,.04);border:1px solid var(--fp-border);border-radius:10px;padding:13px 8px;text-align:center}
.fp-res-lbl{font-size:9px;color:var(--fp-muted);font-weight:700;letter-spacing:.5px;text-transform:uppercase;margin-bottom:5px}
.fp-res-val{font-size:16px;font-weight:900;color:var(--fp-green3)}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.fp-testi-track{display:flex;gap:12px;overflow-x:auto;padding-bottom:6px;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.fp-testi-track::-webkit-scrollbar{display:none}
.fp-testi{flex:0 0 265px;background:var(--fp-card);border:1px solid var(--fp-border);border-radius:var(--fp-radius);padding:20px}
.fp-testi-stars{color:var(--fp-gold);font-size:13px;margin-bottom:10px}
.fp-testi-text{font-size:12px;color:rgba(255,255,255,.6);line-height:1.75;margin-bottom:14px;font-style:italic}
.fp-testi-author{display:flex;align-items:center;gap:10px}
.fp-testi-av{width:36px;height:36px;border-radius:50%;flex-shrink:0;background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));color:#fff;font-size:14px;font-weight:800;display:flex;align-items:center;justify-content:center}
.fp-testi-name{font-size:12px;font-weight:800;color:#fff}
.fp-testi-city{font-size:10px;color:var(--fp-muted)}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.fp-faq{display:flex;flex-direction:column;gap:8px}
.fp-faq-item{background:var(--fp-card);border:1px solid var(--fp-border);border-radius:var(--fp-radius);overflow:hidden}
.fp-faq-q{display:flex;justify-content:space-between;align-items:center;padding:16px 18px;gap:12px;cursor:pointer;font-size:13px;font-weight:700;color:#fff;user-select:none}
.fp-faq-ico{font-size:22px;color:var(--fp-green3);flex-shrink:0;transition:transform .3s}
.fp-faq-item.open .fp-faq-ico{transform:rotate(45deg)}
.fp-faq-a{max-height:0;overflow:hidden;font-size:12px;color:var(--fp-muted);line-height:1.8;padding:0 18px;transition:max-height .35s ease,padding .3s}
.fp-faq-item.open .fp-faq-a{max-height:250px;padding:0 18px 18px}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.fp-cta{background:linear-gradient(150deg,var(--fp-dark) 0%,var(--fp-dark3) 100%);padding:52px 20px;text-align:center;position:relative;overflow:hidden;border-top:1px solid var(--fp-border)}
.fp-cta-orb{position:absolute;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(45,184,79,.14) 0%,transparent 70%);top:-150px;left:50%;transform:translateX(-50%);pointer-events:none}
.fp-cta h2{font-size:clamp(22px,4vw,38px);font-weight:900;color:#fff;margin-bottom:10px;position:relative;letter-spacing:-.4px}
.fp-cta h2 em{color:var(--fp-gold);font-style:italic}
.fp-cta-desc{font-size:14px;color:var(--fp-muted);margin-bottom:28px;line-height:1.7;position:relative}
.fp-cta-btns{display:flex;flex-direction:column;gap:10px;position:relative}

/* ══════════════════════════════
   FOOTER — CENTERED
══════════════════════════════ */
.fp-footer{background:var(--fp-dark);border-top:1px solid var(--fp-border);padding:48px 20px 28px;text-align:center}
.fp-footer-top{margin-bottom:36px}
.fp-footer-brand{font-size:22px;font-weight:900;color:#fff;margin-bottom:10px}
.fp-footer-brand span{color:var(--fp-gold)}
.fp-footer-tagline{font-size:13px;color:var(--fp-muted);line-height:1.7;max-width:400px;margin:0 auto 20px}
.fp-footer-social{display:flex;justify-content:center;gap:10px;margin-bottom:8px}
.fp-social-btn{background:var(--fp-card);border:1px solid var(--fp-border);color:var(--fp-muted);font-size:11px;font-weight:700;padding:7px 14px;border-radius:7px;transition:color .2s,border-color .2s}
.fp-social-btn:hover{color:var(--fp-green3);border-color:rgba(45,184,79,.3)}

.fp-footer-cols{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-bottom:32px;text-align:left}
.fp-footer-col h5{font-size:10px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:14px;text-align:center}
.fp-footer-col ul{text-align:center}
.fp-footer-col ul li{margin-bottom:10px}
.fp-footer-col ul li a{font-size:12px;color:rgba(255,255,255,.38);font-weight:500;transition:color .2s}
.fp-footer-col ul li a:hover{color:var(--fp-green3)}

.fp-footer-bottom{
  border-top:1px solid var(--fp-border);
  padding-top:20px;
  display:flex;flex-direction:column;align-items:center;gap:10px;
}
.fp-footer-copy{font-size:11px;color:rgba(255,255,255,.22)}
.fp-footer-links{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.fp-footer-links a{font-size:11px;color:rgba(255,255,255,.22);transition:color .2s}
.fp-footer-links a:hover{color:var(--fp-green3)}
.fp-disclaimer{margin-top:16px;padding:14px 16px;background:rgba(255,255,255,.02);border-radius:8px;font-size:10px;line-height:1.75;color:rgba(255,255,255,.16);text-align:center}
.fp-disclaimer strong{color:rgba(255,255,255,.28)}

/* ══════════════════════════════
   BOTTOM TAB BAR
══════════════════════════════ */
.fp-tabs{position:fixed;bottom:0;left:0;right:0;height:64px;background:var(--fp-dark);border-top:1px solid var(--fp-border);display:flex;z-index:9998;padding-bottom:env(safe-area-inset-bottom,0px)}
.fp-tab{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;cursor:pointer;position:relative;-webkit-tap-highlight-color:transparent;transition:background .2s}
.fp-tab:active{background:rgba(255,255,255,.03)}
.fp-tab.on::before{content:'';position:absolute;top:0;width:28px;height:2px;background:var(--fp-green3);border-radius:0 0 2px 2px}
.fp-tab-ico{font-size:20px;color:rgba(255,255,255,.28);line-height:1;transition:color .2s}
.fp-tab-lbl{font-size:9px;font-weight:700;color:rgba(255,255,255,.28);letter-spacing:.2px;transition:color .2s}
.fp-tab.on .fp-tab-ico,.fp-tab.on .fp-tab-lbl{color:var(--fp-green3)}

/* ══════════════════════════════
   SINGLE POST
══════════════════════════════ */
.fp-post-wrap{max-width:800px;margin:0 auto;padding:32px 20px 60px}
.fp-post-header{margin-bottom:24px}
.fp-post-cats{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px}
.fp-post-cat-tag{background:rgba(201,162,39,.15);color:var(--fp-gold2);border:1px solid rgba(201,162,39,.25);font-size:9px;font-weight:800;letter-spacing:1px;text-transform:uppercase;padding:3px 10px;border-radius:4px}
.fp-post-title{font-size:clamp(22px,4vw,36px);font-weight:900;color:#fff;line-height:1.2;margin-bottom:14px;letter-spacing:-.5px}
.fp-post-meta-row{display:flex;gap:16px;flex-wrap:wrap;padding-bottom:18px;border-bottom:1px solid var(--fp-border)}
.fp-post-meta-row span{font-size:11px;color:rgba(255,255,255,.38);font-weight:500}
.fp-post-thumb{border-radius:var(--fp-radius);overflow:hidden;margin:20px 0}
.fp-post-thumb img{width:100%;height:auto;max-height:420px;object-fit:cover}
.fp-post-content{font-size:15px;color:rgba(255,255,255,.75);line-height:1.85}
.fp-post-content h2{font-size:22px;font-weight:800;color:#fff;margin:28px 0 12px}
.fp-post-content h3{font-size:18px;font-weight:700;color:var(--fp-gold2);margin:22px 0 10px}
.fp-post-content p{margin-bottom:16px}
.fp-post-content ul,.fp-post-content ol{margin:12px 0 16px 22px}
.fp-post-content ul{list-style:disc}
.fp-post-content ol{list-style:decimal}
.fp-post-content li{margin-bottom:6px}
.fp-post-content a{color:var(--fp-green3);text-decoration:underline}
.fp-post-content strong{color:#fff;font-weight:700}
.fp-post-content blockquote{border-left:3px solid var(--fp-gold);padding:14px 18px;background:rgba(201,162,39,.05);border-radius:0 8px 8px 0;margin:16px 0;font-style:italic;color:var(--fp-muted)}
.fp-post-content img{border-radius:8px;margin:16px 0}
.fp-post-content table{width:100%;border-collapse:collapse;margin:16px 0;border-radius:8px;overflow:hidden}
.fp-post-content table th{background:var(--fp-dark3);color:#fff;padding:10px 14px;font-size:12px;text-align:left}
.fp-post-content table td{padding:10px 14px;border-bottom:1px solid var(--fp-border);font-size:13px}
.fp-post-content code{background:rgba(255,255,255,.08);padding:2px 7px;border-radius:4px;font-size:13px;font-family:monospace}
.fp-post-cta{margin-top:36px;padding:26px;background:rgba(201,162,39,.07);border:1px solid rgba(201,162,39,.25);border-radius:14px;text-align:center}
.fp-post-cta-eye{font-size:10px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:var(--fp-gold);margin-bottom:6px}
.fp-post-cta h3{font-size:20px;font-weight:900;color:#fff;margin-bottom:6px}
.fp-post-cta p{font-size:13px;color:var(--fp-muted);margin-bottom:18px}

/* ══════════════════════════════
   WP CORE
══════════════════════════════ */
.aligncenter{margin:0 auto;display:block}
.alignleft{float:left;margin-right:16px}
.alignright{float:right;margin-left:16px}
.wp-caption{max-width:100%}
.screen-reader-text{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}

/* ══════════════════════════════
   DESKTOP
══════════════════════════════ */
@media(min-width:768px){
  body{padding-bottom:0}
  .fp-tabs{display:none}
  .fp-nav{padding:0 40px}
  .fp-nav-links{display:flex}

  .fp-hero{min-height:640px;justify-content:center;padding:70px 0}
  .fp-hero-inner{max-width:1100px;margin:0 auto;padding:0 40px;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
  .fp-hero-btns{flex-direction:row}
  .fp-hero-desc{font-size:15px}

  .fp-rates-bar{padding:20px 40px 6px}
  .fp-sec{padding:68px 40px}
  .fp-brokers-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
  .fp-blog-grid{grid-template-columns:repeat(3,1fr)}
  .fp-blog-thumb{height:200px}
  .fp-steps{display:grid;grid-template-columns:1fr 1fr;gap:0 44px}
  .fp-step-line{display:none}
  .fp-testi-track{flex-wrap:wrap;overflow:visible}
  .fp-testi{flex:0 0 calc(33.33% - 8px)}
  .fp-chart-box{height:440px}
  .fp-calc-grid{grid-template-columns:repeat(4,1fr)}
  .fp-cta{padding:88px 40px}
  .fp-cta-btns{flex-direction:row;justify-content:center}
  .fp-footer{padding:56px 40px 32px}
  .fp-footer-cols{grid-template-columns:repeat(4,1fr)}
  .fp-post-wrap{padding:40px 40px 60px}
}
@media(min-width:1100px){
  .fp-nav{padding:0 calc((100% - 1100px)/2)}
  .fp-hero-inner{padding:0}
  .fp-rates-bar,.fp-sec,.fp-cta,.fp-footer{padding-left:calc((100% - 1100px)/2);padding-right:calc((100% - 1100px)/2)}
}

/* ══════════════════════════════
   ARCHIVE / SEARCH / 404 / COMMENTS
══════════════════════════════ */
.fp-archive-wrap{max-width:1100px;margin:0 auto;padding:42px 20px 70px}
.fp-archive-head{margin-bottom:28px;text-align:left}
.fp-archive-head h1{font-size:clamp(24px,4vw,42px);font-weight:900;color:#fff;line-height:1.15;letter-spacing:-.6px;margin-bottom:10px}
.fp-archive-head h1 span{color:var(--fp-green3)}
.fp-archive-head p{font-size:14px;color:var(--fp-muted);line-height:1.75;max-width:680px}
.fp-archive-grid .fp-blog-body h2{font-size:14px;font-weight:800;color:#fff;line-height:1.4;margin-bottom:8px}
.fp-pagination{margin-top:28px;display:flex;justify-content:center;gap:8px;flex-wrap:wrap}
.fp-pagination .nav-links{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.fp-pagination a,.fp-pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 12px;border-radius:9px;border:1px solid var(--fp-border);background:var(--fp-card);color:var(--fp-muted);font-size:12px;font-weight:800}
.fp-pagination .current,.fp-pagination a:hover{background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));color:#fff;border-color:transparent}
.fp-empty,.fp-error-card{background:var(--fp-card);border:1px solid var(--fp-border);border-radius:16px;padding:28px;text-align:center}
.fp-empty h2,.fp-error-card h1{font-size:clamp(22px,4vw,36px);font-weight:900;color:#fff;margin-bottom:10px}
.fp-empty p,.fp-error-card p{font-size:14px;color:var(--fp-muted);line-height:1.75;margin-bottom:18px}
.fp-error-wrap{min-height:520px;display:flex;align-items:center;justify-content:center;padding:60px 20px}
.fp-error-card{max-width:680px;width:100%}
.fp-error-actions{display:flex;justify-content:center;margin:18px 0}
.fp-search-box{margin-top:18px}
.fp-search-form{display:flex;gap:10px;max-width:560px;margin:0 auto}
.fp-search-form input{flex:1;min-width:0;padding:13px 15px;background:rgba(255,255,255,.06);border:1.5px solid var(--fp-border);border-radius:10px;color:#fff;font-family:inherit;font-size:14px;font-weight:600;outline:none}
.fp-search-form input:focus{border-color:var(--fp-green3)}
.fp-search-form button{padding:13px 18px;border-radius:10px;border:none;background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));color:#fff;font-family:inherit;font-size:13px;font-weight:800}
.fp-comments{max-width:800px;margin:40px auto 0;padding:24px;background:var(--fp-card);border:1px solid var(--fp-border);border-radius:14px}
.fp-comments h2,.comment-reply-title{font-size:20px;font-weight:900;color:#fff;margin-bottom:16px}
.fp-comment-list{list-style:none;margin:0;padding:0}
.fp-comment-list li{padding:14px 0;border-bottom:1px solid var(--fp-border);color:var(--fp-muted)}
.fp-comments label{display:block;font-size:12px;color:var(--fp-muted);font-weight:700;margin-bottom:6px}
.fp-comments input,.fp-comments textarea{width:100%;padding:12px;background:rgba(255,255,255,.06);border:1px solid var(--fp-border);border-radius:9px;color:#fff;font-family:inherit}
.fp-comments .submit{width:auto;background:linear-gradient(135deg,var(--fp-green),var(--fp-green3));border:none;color:#fff;font-weight:800;padding:12px 18px;cursor:pointer}
.fp-sidebar{padding:20px;background:var(--fp-card);border:1px solid var(--fp-border);border-radius:14px}
.fp-widget h3{font-size:15px;color:#fff;margin-bottom:12px}
.fp-widget ul{list-style:none;margin:0;padding:0}
.fp-widget li{margin-bottom:9px}.fp-widget a{color:var(--fp-muted);font-size:13px}.fp-widget a:hover{color:var(--fp-green3)}
@media(max-width:520px){.fp-search-form{flex-direction:column}.fp-search-form button{width:100%}}
@media(min-width:768px){.fp-archive-wrap{padding:60px 40px 80px}}


/* Blog latest posts + clean footer fix */
.fp-blog-icon{font-size:42px;line-height:1}
.fp-blog-more{display:flex;justify-content:center;margin-top:26px}
.fp-footer-minimal{padding:28px 20px 34px}
.fp-footer-minimal .fp-footer-bottom{border-top:0;padding-top:0}
.fp-footer-minimal .fp-disclaimer{max-width:860px;margin:18px auto 0}


/* Live Market Rate Cards - safe isolated homepage section */
.fp-live-cards{position:relative;overflow:hidden;background:linear-gradient(180deg,#07130b 0%,#08170d 100%);padding:42px 20px;border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06)}
.fp-live-cards:before{content:"";position:absolute;inset:auto -120px -170px auto;width:360px;height:360px;border-radius:50%;background:rgba(45,184,79,.10);filter:blur(55px);pointer-events:none}
.fp-live-cards-head{position:relative;display:flex;flex-direction:column;gap:14px;margin-bottom:20px}
.fp-live-cards-head h2{font-size:clamp(24px,4vw,38px);font-weight:900;color:#fff;letter-spacing:-.6px;line-height:1.15;margin:5px 0 8px}
.fp-live-cards-head h2 span{color:var(--fp-green3)}
.fp-live-cards-head p{max-width:620px;color:var(--fp-muted);font-size:13px;line-height:1.7;margin:0}
.fp-live-updated{align-self:flex-start;border:1px solid var(--fp-border);background:rgba(255,255,255,.045);color:#d9f7e1;border-radius:999px;padding:9px 13px;font-size:11px;font-weight:800;white-space:nowrap}
.fp-live-cards-grid{position:relative;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.fp-live-card{background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));border:1px solid var(--fp-border);border-radius:16px;padding:15px;box-shadow:0 18px 45px rgba(0,0,0,.16);min-width:0;transition:transform .2s ease,border-color .2s ease}
.fp-live-card:hover{transform:translateY(-2px);border-color:rgba(45,184,79,.38)}
.fp-live-card-top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:12px}
.fp-live-card-top span{font-size:12px;font-weight:900;color:#fff;letter-spacing:.2px}
.fp-live-card-top small{font-size:10px;color:var(--fp-green3);font-weight:800;background:rgba(45,184,79,.10);border:1px solid rgba(45,184,79,.18);border-radius:999px;padding:4px 7px;white-space:nowrap}
.fp-live-card strong{display:block;color:#fff;font-size:clamp(18px,4vw,24px);font-weight:900;letter-spacing:-.4px;line-height:1.15;overflow-wrap:anywhere}
.fp-live-note{position:relative;margin:14px 0 0;color:var(--fp-muted);font-size:11px;line-height:1.65}
@media(min-width:768px){.fp-live-cards{padding:54px 40px}.fp-live-cards-head{flex-direction:row;align-items:flex-end;justify-content:space-between}.fp-live-cards-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.fp-live-updated{align-self:auto}}
@media(min-width:1100px){.fp-live-cards{padding-left:calc((100% - 1100px)/2);padding-right:calc((100% - 1100px)/2)}}
@media(max-width:420px){.fp-live-cards-grid{grid-template-columns:1fr}.fp-live-card{padding:14px}}

/* ══════════════════════════════
   PRO FRONT PAGE UPDATE — ticker below menu
══════════════════════════════ */
.fp-nav{position:sticky;top:0;background:#061008;height:74px;padding-left:clamp(18px,5vw,72px);padding-right:clamp(18px,5vw,72px)}
.fp-logo-icon{border-radius:10px;background:linear-gradient(135deg,#0b6e36,#35d269)}
.fp-logo-text{font-size:22px;text-transform:uppercase;line-height:1}.fp-logo-text .fp-hl{color:#fff}.fp-nav-links a{font-weight:800;text-transform:uppercase;color:rgba(255,255,255,.86)}.fp-nav-links .current-menu-item>a,.fp-nav-links a:hover{color:#37df6b;background:transparent}.fp-nav-cta{background:linear-gradient(135deg,#0b7a35,#13a84c);font-weight:900;text-transform:uppercase}
.fp-live-ticker{position:sticky;top:74px;z-index:9998;display:flex;align-items:center;gap:16px;background:linear-gradient(180deg,#0b1614,#0a1114);border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);padding:12px clamp(16px,4vw,32px);overflow:hidden;box-shadow:0 18px 38px rgba(0,0,0,.18)}
.fp-live-ticker-badge{display:inline-flex;align-items:center;gap:8px;flex:0 0 auto;background:linear-gradient(135deg,#0b7a35,#17ad50);color:#fff;font-size:12px;font-weight:900;text-transform:uppercase;border-radius:7px;padding:12px 16px;box-shadow:0 8px 25px rgba(20,170,76,.22)}
.fp-live-ticker-badge span{width:8px;height:8px;border-radius:50%;background:#5bff89;box-shadow:0 0 0 5px rgba(91,255,137,.12)}
.fp-live-ticker-track{flex:1;min-width:0;overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent)}
.fp-live-ticker-row{display:flex;align-items:center;gap:0;width:max-content;animation:fpTicker 42s linear infinite}.fp-live-ticker:hover .fp-live-ticker-row{animation-play-state:paused}
.fp-live-ticker-item{display:flex;align-items:center;gap:8px;padding:0 24px;border-right:1px solid rgba(255,255,255,.18);white-space:nowrap;min-height:36px}.fp-ticker-icon{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;font-size:15px;background:rgba(255,255,255,.08)}.fp-ticker-label{font-size:12px;font-weight:900;color:#fff}.fp-live-ticker-item strong{font-size:16px;color:#fff;font-weight:900;letter-spacing:-.2px}.fp-ticker-up{font-size:14px;color:#35d269;font-weight:900}.fp-live-ticker-updated{display:none;color:rgba(255,255,255,.58);font-size:11px;font-weight:700;white-space:nowrap}@keyframes fpTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.fp-hero{min-height:520px;padding:70px 0 52px;justify-content:center;border-bottom:1px solid rgba(255,255,255,.08)}.fp-hero-bg{background:radial-gradient(circle at 35% 35%,rgba(30,162,75,.22),transparent 32%),linear-gradient(90deg,#06140c 0%,#07140f 48%,#0a1118 100%)}.fp-hero-grid{opacity:.65}.fp-hero-inner{display:grid;grid-template-columns:minmax(0,1fr);gap:34px;align-items:center;max-width:1320px;margin:0 auto;padding:0 clamp(20px,5vw,72px)}.fp-hero-badge{background:transparent;border:0;color:#2fe36c;padding:0;font-size:13px;margin-bottom:18px}.fp-hero h1{font-size:clamp(42px,6vw,66px);line-height:1.08;letter-spacing:-1.8px;max-width:640px}.fp-hero h1 em{font-style:normal;color:#35d269}.fp-hero-desc{font-size:17px;color:rgba(255,255,255,.86);max-width:560px;margin-bottom:34px}.fp-hero-btns{flex-direction:row;flex-wrap:wrap}.fp-btn-gold{background:linear-gradient(135deg,#0b7a35,#18b957);color:#fff;box-shadow:0 10px 30px rgba(24,185,87,.22);text-transform:uppercase}.fp-btn-ghost{color:#fff;border-color:rgba(255,255,255,.55);text-transform:uppercase}.fp-hero-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;border:0;background:transparent;backdrop-filter:none;max-width:620px}.fp-stat-box{border:0;text-align:left;display:flex;gap:12px;align-items:center;padding:0}.fp-stat-box:nth-child(4){display:none}.fp-stat-box:before{content:'✓';display:flex;align-items:center;justify-content:center;width:54px;height:54px;border-radius:50%;border:4px solid #0baa4e;color:#22d164;font-size:26px;font-weight:900}.fp-stat-num{font-size:16px}.fp-stat-lbl{font-size:13px;color:#fff}.fp-hero-chart-wrap{display:block}.fp-hero-chart-wrap>div{box-shadow:0 24px 70px rgba(0,0,0,.32)}
@media(min-width:980px){.fp-nav-links{display:flex}.fp-hero-inner{grid-template-columns:0.92fr 1.08fr}.fp-live-ticker-updated{display:block}}
@media(max-width:767px){body{padding-bottom:64px}.fp-nav{height:62px;top:0}.fp-live-ticker{top:62px;padding:9px 12px;gap:10px}.fp-live-ticker-badge{font-size:10px;padding:9px 11px}.fp-live-ticker-item{padding:0 14px}.fp-live-ticker-item strong{font-size:14px}.fp-hero{padding-top:54px}.fp-hero-stats{grid-template-columns:1fr;gap:16px}.fp-hero-chart-wrap{display:none}.fp-hero-btns{flex-direction:column}.fp-btn-gold,.fp-btn-ghost{text-align:center}.fp-nav-cta{display:none}}

/* ══════════════════════════════
   PRO MOBILE-FRIENDLY FRONT PAGE REFINEMENT
══════════════════════════════ */
.fp-nav-cta{display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,#0b7a35,#18b957);box-shadow:0 8px 24px rgba(24,185,87,.18);font-weight:900;text-transform:uppercase;letter-spacing:.2px}
.fp-nav-cta:before{content:'▣';font-size:12px;opacity:.95}.fp-nav-cta:hover{transform:translateY(-1px);opacity:1}
.fp-live-ticker{position:sticky;top:62px;z-index:9998;display:flex;align-items:center;gap:14px;background:rgba(8,18,17,.96);border-top:1px solid rgba(255,255,255,.10);border-bottom:1px solid rgba(255,255,255,.10);padding:10px clamp(14px,3vw,30px);overflow:hidden;box-shadow:0 14px 32px rgba(0,0,0,.20);backdrop-filter:blur(6px)}
.fp-live-ticker-badge{background:linear-gradient(135deg,#0d8f42,#16b85a);border:1px solid rgba(70,255,145,.18);border-radius:8px;padding:10px 14px;font-size:11px;letter-spacing:.2px;box-shadow:none}
.fp-live-ticker-track{mask-image:none;overflow:hidden}.fp-live-ticker-row{animation:fpTicker 58s linear infinite}.fp-live-ticker-item{padding:0 22px;min-height:34px;border-right:1px solid rgba(255,255,255,.16)}.fp-live-ticker-item strong{font-size:15px}.fp-ticker-icon{background:rgba(255,255,255,.10);box-shadow:inset 0 0 0 1px rgba(255,255,255,.08)}.fp-ticker-up{color:#4ade80}.fp-live-ticker-updated{opacity:.75}
.fp-hero{min-height:520px;padding:60px 0 46px}.fp-hero-inner{max-width:1280px}.fp-hero h1{font-size:clamp(40px,5.5vw,68px);line-height:1.08;max-width:650px}.fp-hero-desc{font-size:17px;line-height:1.7;margin-bottom:28px}.fp-hero-badge{font-size:12px;letter-spacing:1.4px;margin-bottom:16px}.fp-hero-btns{margin-bottom:26px}.fp-hero-stats{display:flex;align-items:center;gap:18px;border:0;background:transparent;backdrop-filter:none;overflow:visible;max-width:600px}.fp-stat-box{border:0!important;display:flex;align-items:center;gap:10px;padding:0 8px 0 0;text-align:left}.fp-stat-box:before{content:'✓';display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;border:2px solid rgba(34,209,100,.9);background:rgba(34,209,100,.08);color:#35d269;font-size:18px;font-weight:900;flex:0 0 auto}.fp-stat-box:nth-child(4){display:none}.fp-stat-num{font-size:15px;font-weight:900}.fp-stat-lbl{font-size:12px;color:rgba(255,255,255,.86);margin-top:2px}.fp-hero-chart-wrap>div{height:360px!important;border-color:rgba(255,255,255,.20)!important;box-shadow:0 25px 70px rgba(0,0,0,.30)}
.fp-live-cards-pro{background:linear-gradient(180deg,#06110c 0%,#07160f 100%);padding:34px clamp(16px,4vw,32px) 40px;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}.fp-live-cards-title{text-align:center;margin-bottom:20px}.fp-live-cards-title h2{font-size:18px;font-weight:900;color:#fff;text-transform:uppercase;letter-spacing:.5px;position:relative;display:inline-block}.fp-live-cards-title h2:after{content:'';position:absolute;left:50%;transform:translateX(-50%);bottom:-10px;width:44px;height:2px;background:#21d465;border-radius:10px}.fp-live-cards-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.fp-live-card{position:relative;min-height:150px;background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:16px;overflow:hidden;box-shadow:0 18px 42px rgba(0,0,0,.18)}.fp-live-card:hover{transform:translateY(-2px);border-color:rgba(45,184,79,.38)}.fp-live-card-top{justify-content:flex-start;gap:8px;margin-bottom:13px}.fp-live-flag{width:28px;height:28px;border-radius:7px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.08);font-size:18px}.fp-live-symbol{font-size:12px;font-weight:900;color:#fff}.fp-live-card strong{font-size:clamp(24px,3vw,30px);font-weight:900;color:#fff;line-height:1.1}.fp-live-change{font-size:12px;font-weight:800;color:#4ade80;margin-top:10px}.fp-live-spark{position:absolute;left:14px;right:14px;bottom:12px;width:calc(100% - 28px);height:42px;color:#18b957;opacity:.95}.fp-live-card-crypto .fp-live-spark{color:#f5a400}.fp-live-updated-pro{margin-top:18px;color:rgba(255,255,255,.78);font-size:13px;font-weight:700}
@media(min-width:900px){.fp-live-cards-pro{padding-left:calc((100% - 1280px)/2);padding-right:calc((100% - 1280px)/2)}.fp-live-cards-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.fp-live-card{min-height:162px}.fp-hero-inner{grid-template-columns:.88fr 1.12fr}}
@media(max-width:979px){.fp-hero-inner{grid-template-columns:1fr}.fp-hero-chart-wrap{display:block}.fp-hero-chart-wrap>div{height:300px!important}.fp-hero h1{max-width:720px}.fp-hero-stats{max-width:100%}}
@media(max-width:767px){body{padding-bottom:0}.fp-nav{height:62px;padding:0 14px}.fp-logo-text{font-size:16px}.fp-live-ticker{top:62px;padding:8px 10px;gap:9px}.fp-live-ticker-badge{font-size:10px;padding:8px 10px}.fp-live-ticker-item{padding:0 15px}.fp-live-ticker-item strong{font-size:13px}.fp-ticker-label{font-size:11px}.fp-ticker-icon{width:22px;height:22px}.fp-hero{padding:42px 0 36px;min-height:auto}.fp-hero-inner{padding:0 18px}.fp-hero h1{font-size:clamp(36px,12vw,48px);letter-spacing:-1.1px}.fp-hero-desc{font-size:15px;margin-bottom:22px}.fp-hero-btns{display:grid;grid-template-columns:1fr;gap:12px}.fp-hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.fp-stat-box{gap:7px}.fp-stat-box:before{width:28px;height:28px;font-size:15px;border-width:2px}.fp-stat-num{font-size:13px}.fp-stat-lbl{font-size:10px}.fp-live-cards-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.fp-live-card{min-height:138px;padding:13px}.fp-live-card strong{font-size:22px}.fp-live-spark{height:35px}.fp-nav-cta{display:none}}
@media(max-width:430px){.fp-live-cards-grid{grid-template-columns:1fr}.fp-live-card{min-height:145px}.fp-hero-stats{grid-template-columns:1fr}.fp-stat-box{background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.08)!important;border-radius:12px;padding:10px!important}.fp-live-ticker-updated{display:none}}


/* ══════════════════════════════
   v2.4 Cleanup: cleaner hero, readable ticker, premium rate cards
══════════════════════════════ */
.fp-hero-stats{display:none!important}
.fp-hero-btns{margin-bottom:0!important}
.fp-hero h1 em{color:#35d269!important;font-style:normal!important;background:none!important;-webkit-text-fill-color:initial!important;text-shadow:0 8px 32px rgba(45,216,105,.18)}
.fp-live-ticker{background:linear-gradient(180deg,rgba(8,18,17,.98),rgba(7,15,18,.98))!important;backdrop-filter:none!important;min-height:62px;gap:16px!important}
.fp-live-ticker-track{mask-image:linear-gradient(90deg,transparent,#000 2.5%,#000 97.5%,transparent)!important}
.fp-live-ticker-row{animation-duration:64s!important}
.fp-live-ticker-item{min-height:42px!important;padding:0 26px!important;gap:9px!important}
.fp-ticker-label{font-size:13px!important;font-weight:800!important;letter-spacing:.1px!important;color:rgba(255,255,255,.95)!important;text-shadow:none!important}
.fp-live-ticker-item strong{font-size:17px!important;font-weight:900!important;letter-spacing:-.15px!important;color:#fff!important;text-shadow:none!important;font-family:Inter,Arial,sans-serif!important}
.fp-ticker-icon{width:25px!important;height:25px!important;border-radius:50%!important;font-size:15px!important;background:rgba(255,255,255,.08)!important;filter:none!important}
.fp-ticker-up{font-size:13px!important;color:#3ee46f!important;text-shadow:none!important}
.fp-live-ticker-updated{font-size:12px!important;color:rgba(255,255,255,.7)!important;font-weight:800!important}
.fp-live-cards-pro{background:linear-gradient(180deg,#06110c 0%,#07150f 100%)!important;padding-top:34px!important;padding-bottom:40px!important}
.fp-live-cards-title{text-align:center!important;margin-bottom:28px!important}
.fp-live-cards-title h2{font-size:18px!important;text-transform:uppercase!important;letter-spacing:.45px!important}
.fp-live-cards-grid{gap:14px!important}
.fp-live-card{min-height:148px!important;border-radius:10px!important;padding:16px 16px 14px!important;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018))!important;border:1px solid rgba(255,255,255,.14)!important;box-shadow:none!important;transition:transform .25s ease,border-color .25s ease,background .25s ease!important}
.fp-live-card:hover{transform:translateY(-3px)!important;background:linear-gradient(180deg,rgba(35,216,96,.075),rgba(255,255,255,.02))!important;border-color:rgba(45,216,105,.32)!important}
.fp-live-card-top{display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:8px!important;margin-bottom:12px!important}
.fp-live-flag{width:26px!important;height:26px!important;border-radius:8px!important;background:rgba(255,255,255,.08)!important;box-shadow:inset 0 0 0 1px rgba(255,255,255,.08)!important;font-size:17px!important}
.fp-live-symbol{font-size:12px!important;font-weight:900!important;color:#fff!important;letter-spacing:.1px!important}
.fp-live-card strong{display:block!important;font-size:clamp(22px,2.4vw,28px)!important;line-height:1.1!important;font-weight:900!important;color:#fff!important;letter-spacing:-.5px!important;text-shadow:none!important;font-family:Inter,Arial,sans-serif!important}
.fp-live-change{font-size:12px!important;font-weight:800!important;color:#56f082!important;margin-top:8px!important}
.fp-live-spark{height:42px!important;bottom:12px!important;left:14px!important;right:14px!important;opacity:.95!important;color:#16c653!important}
.fp-live-card-crypto .fp-live-spark{color:#e6a100!important}
.fp-live-card:nth-child(7) .fp-live-spark{color:#7c86ff!important}
.fp-live-updated-pro{margin-top:16px!important;color:rgba(255,255,255,.8)!important;font-size:13px!important;font-weight:700!important}
.fp-blog-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
@media(max-width:900px){.fp-blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:600px){.fp-blog-grid{grid-template-columns:1fr!important}.fp-live-ticker{min-height:54px!important}.fp-live-ticker-badge{font-size:10px!important;padding:8px 10px!important}.fp-live-ticker-item{padding:0 16px!important}.fp-live-ticker-item strong{font-size:14px!important}.fp-ticker-label{font-size:11px!important}.fp-live-cards-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.fp-live-card{min-height:136px!important;padding:13px!important}.fp-live-card strong{font-size:21px!important}.fp-live-spark{height:34px!important}.fp-hero h1{font-size:clamp(34px,11vw,46px)!important}.fp-hero-desc{font-size:15px!important}.fp-hero-chart-wrap>div{height:280px!important}}
@media(max-width:430px){.fp-live-cards-grid{grid-template-columns:1fr!important}.fp-live-card{min-height:140px!important}.fp-live-ticker-updated{display:none!important}}

/* ══════════════════════════════
   v2.5 Compact rates + mobile ticker polish
══════════════════════════════ */
.fp-live-cards-pro{padding:30px clamp(14px,3vw,30px) 34px!important;overflow:hidden!important}
.fp-live-cards-title{margin-bottom:18px!important;text-align:left!important;max-width:1280px!important;margin-left:auto!important;margin-right:auto!important}
.fp-live-cards-title h2{font-size:20px!important;text-transform:none!important;letter-spacing:-.3px!important;line-height:1.2!important}
.fp-live-cards-grid{max-width:1280px!important;margin:0 auto!important;display:grid!important;grid-template-columns:repeat(8,minmax(118px,1fr))!important;gap:12px!important;align-items:stretch!important}
.fp-live-card{min-height:128px!important;height:128px!important;padding:12px 12px 10px!important;border-radius:9px!important;overflow:hidden!important;position:relative!important;background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.018))!important;border:1px solid rgba(255,255,255,.14)!important}
.fp-live-card-top{margin-bottom:8px!important;gap:7px!important;justify-content:flex-start!important}
.fp-live-flag{width:22px!important;height:22px!important;min-width:22px!important;border-radius:7px!important;font-size:14px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}
.fp-live-symbol{font-size:10px!important;line-height:1!important;font-weight:900!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;max-width:82px!important}
.fp-live-card strong{font-size:20px!important;line-height:1.05!important;letter-spacing:-.45px!important;white-space:nowrap!important}
.fp-live-change{font-size:10px!important;margin-top:5px!important;line-height:1!important}
.fp-live-spark{height:32px!important;left:10px!important;right:10px!important;bottom:8px!important;stroke-width:2px!important;opacity:.95!important}
.fp-live-updated-pro{max-width:1280px!important;margin:12px auto 0!important;font-size:12px!important;color:rgba(255,255,255,.72)!important}

@media(max-width:1180px){.fp-live-cards-grid{grid-template-columns:repeat(4,minmax(130px,1fr))!important}.fp-live-card{height:132px!important;min-height:132px!important}.fp-live-card strong{font-size:22px!important}}
@media(max-width:767px){
  .fp-live-ticker{top:62px!important;min-height:42px!important;height:42px!important;padding:6px 0!important;gap:0!important;border-top:1px solid rgba(255,255,255,.08)!important;border-bottom:1px solid rgba(255,255,255,.08)!important}
  .fp-live-ticker-badge,.fp-live-ticker-updated{display:none!important}
  .fp-live-ticker-track{width:100%!important;mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)!important}
  .fp-live-ticker-row{animation-duration:48s!important}
  .fp-live-ticker-item{min-height:30px!important;padding:0 14px!important;gap:6px!important;border-right:1px solid rgba(255,255,255,.13)!important}
  .fp-ticker-icon{width:19px!important;height:19px!important;font-size:12px!important}
  .fp-ticker-label{font-size:10px!important;font-weight:850!important}
  .fp-live-ticker-item strong{font-size:12px!important;font-weight:900!important;letter-spacing:0!important}
  .fp-ticker-up{font-size:10px!important}
  .fp-hero{padding-top:40px!important}
  .fp-hero-chart-wrap{margin-top:10px!important}
  .fp-hero-chart-wrap>div{height:260px!important;border-radius:12px!important}
  .fp-hero-chart-wrap .tradingview-widget-container,.fp-hero-chart-wrap .tradingview-widget-container__widget{height:260px!important}
  .fp-live-cards-pro{padding:24px 0 28px!important}
  .fp-live-cards-title{padding:0 16px!important;margin-bottom:14px!important}
  .fp-live-cards-title h2{font-size:22px!important}
  .fp-live-cards-grid{display:flex!important;gap:10px!important;overflow-x:auto!important;overflow-y:hidden!important;padding:0 16px 8px!important;scroll-snap-type:x mandatory!important;-webkit-overflow-scrolling:touch!important;max-width:none!important}
  .fp-live-cards-grid::-webkit-scrollbar{display:none!important}
  .fp-live-card{flex:0 0 150px!important;width:150px!important;height:118px!important;min-height:118px!important;padding:10px!important;scroll-snap-align:start!important}
  .fp-live-symbol{font-size:9px!important;max-width:78px!important}
  .fp-live-card strong{font-size:18px!important}
  .fp-live-change{font-size:9px!important}
  .fp-live-spark{height:28px!important;bottom:7px!important}
  .fp-live-updated-pro{padding:0 16px!important;font-size:11px!important;margin-top:8px!important}
}
@media(max-width:420px){.fp-live-card{flex-basis:140px!important;width:140px!important}.fp-live-card strong{font-size:17px!important}.fp-hero-chart-wrap>div,.fp-hero-chart-wrap .tradingview-widget-container,.fp-hero-chart-wrap .tradingview-widget-container__widget{height:235px!important}}

/* ══════════════════════════════
   v2.6 Exact compact one-row rate cards
══════════════════════════════ */
.fp-live-cards-pro{
  padding:18px 16px 22px!important;
  background:linear-gradient(180deg,#06130c 0%,#07160f 100%)!important;
}
.fp-live-cards-title{display:none!important}
.fp-live-cards-grid{
  width:100%!important;
  max-width:1440px!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(8,minmax(108px,1fr))!important;
  gap:10px!important;
  align-items:stretch!important;
}
.fp-live-card{
  height:112px!important;
  min-height:112px!important;
  padding:10px 11px 8px!important;
  border-radius:8px!important;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.018))!important;
  border:1px solid rgba(255,255,255,.13)!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.015)!important;
}
.fp-live-card-top{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:6px!important;
  margin-bottom:8px!important;
}
.fp-live-flag{
  width:24px!important;
  height:24px!important;
  min-width:24px!important;
  border-radius:7px!important;
  font-size:17px!important;
  background:rgba(255,255,255,.075)!important;
}
.fp-live-symbol{
  margin-left:auto!important;
  text-align:right!important;
  font-size:10.5px!important;
  font-weight:900!important;
  color:#fff!important;
  max-width:none!important;
  white-space:nowrap!important;
  letter-spacing:-.1px!important;
}
.fp-live-card strong{
  display:block!important;
  font-size:19px!important;
  line-height:1.05!important;
  font-weight:900!important;
  color:#fff!important;
  letter-spacing:-.45px!important;
  text-shadow:none!important;
  font-family:Inter,Arial,sans-serif!important;
  white-space:nowrap!important;
}
.fp-live-change{
  margin-top:6px!important;
  font-size:9.5px!important;
  line-height:1!important;
  font-weight:800!important;
  color:#4ade80!important;
}
.fp-live-spark{
  position:absolute!important;
  left:10px!important;
  right:10px!important;
  bottom:8px!important;
  width:calc(100% - 20px)!important;
  height:31px!important;
  color:#0fbf46!important;
  opacity:1!important;
}
.fp-live-spark polyline{stroke:currentColor!important;stroke-width:1.8!important}
.fp-live-card-crypto .fp-live-spark{color:#d99000!important}
.fp-live-card:nth-child(7) .fp-live-spark{color:#7b83ff!important}
.fp-live-updated-pro{
  max-width:1440px!important;
  margin:10px auto 0!important;
  padding:0!important;
  font-size:11px!important;
  color:rgba(255,255,255,.68)!important;
}
@media(max-width:1100px){
  .fp-live-cards-grid{grid-template-columns:repeat(8,128px)!important;overflow-x:auto!important;overflow-y:hidden!important;scroll-snap-type:x mandatory!important;-webkit-overflow-scrolling:touch!important;padding-bottom:6px!important}
  .fp-live-cards-grid::-webkit-scrollbar{height:0!important;display:none!important}
  .fp-live-card{scroll-snap-align:start!important;width:128px!important;min-width:128px!important}
}
@media(max-width:767px){
  .fp-live-cards-pro{padding:14px 0 18px!important}
  .fp-live-cards-grid{display:flex!important;grid-template-columns:none!important;gap:9px!important;max-width:none!important;padding:0 12px 6px!important}
  .fp-live-card{flex:0 0 132px!important;width:132px!important;min-width:132px!important;height:105px!important;min-height:105px!important;padding:9px 10px 7px!important;border-radius:8px!important}
  .fp-live-flag{width:21px!important;height:21px!important;min-width:21px!important;font-size:14px!important}
  .fp-live-symbol{font-size:9.5px!important}
  .fp-live-card strong{font-size:17px!important}
  .fp-live-change{font-size:9px!important;margin-top:5px!important}
  .fp-live-spark{height:26px!important;bottom:7px!important;left:9px!important;right:9px!important;width:calc(100% - 18px)!important}
  .fp-live-updated-pro{padding:0 12px!important;margin-top:6px!important;font-size:10.5px!important}
}
@media(max-width:420px){
  .fp-live-card{flex-basis:126px!important;width:126px!important;min-width:126px!important}
}


/* =========================================================
   v2.7 FINAL EXACT compact rate cards - hard override
   Desktop: 8 small cards in one line like reference image
   Mobile: horizontal swipe, no 2-row grid
========================================================= */
section.fp-live-cards.fp-live-cards-pro{
  padding:12px 14px 18px!important;
  background:linear-gradient(180deg,#06120b 0%,#07160f 100%)!important;
  border-top:1px solid rgba(255,255,255,.06)!important;
  border-bottom:1px solid rgba(255,255,255,.06)!important;
  overflow:hidden!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-cards-title{display:none!important;}
section.fp-live-cards.fp-live-cards-pro .fp-live-cards-grid{
  width:100%!important;
  max-width:1320px!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(8,1fr)!important;
  gap:9px!important;
  align-items:stretch!important;
  overflow:visible!important;
  padding:0!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-card{
  height:104px!important;
  min-height:104px!important;
  width:auto!important;
  min-width:0!important;
  padding:9px 10px 7px!important;
  border-radius:7px!important;
  position:relative!important;
  overflow:hidden!important;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.018))!important;
  border:1px solid rgba(255,255,255,.14)!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.015),0 8px 24px rgba(0,0,0,.14)!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-card-top{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:6px!important;
  margin:0 0 8px!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-flag{
  width:20px!important;height:20px!important;min-width:20px!important;
  border-radius:6px!important;font-size:14px!important;line-height:1!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  background:rgba(255,255,255,.08)!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-symbol{
  margin-left:auto!important;text-align:right!important;white-space:nowrap!important;
  color:#fff!important;font-size:9.5px!important;font-weight:900!important;letter-spacing:-.1px!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-card strong{
  display:block!important;color:#fff!important;font-size:17px!important;line-height:1.05!important;
  font-weight:900!important;letter-spacing:-.35px!important;white-space:nowrap!important;
  font-family:Inter,Arial,sans-serif!important;text-shadow:none!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-change{
  margin-top:6px!important;color:#4ade80!important;font-size:8.8px!important;line-height:1!important;font-weight:800!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-spark{
  position:absolute!important;left:9px!important;right:9px!important;bottom:7px!important;
  width:calc(100% - 18px)!important;height:27px!important;color:#10b94d!important;opacity:1!important;
}
section.fp-live-cards.fp-live-cards-pro .fp-live-spark polyline{stroke:currentColor!important;stroke-width:1.55!important;}
section.fp-live-cards.fp-live-cards-pro .fp-live-card-crypto .fp-live-spark{color:#d99000!important;}
section.fp-live-cards.fp-live-cards-pro .fp-live-card:nth-child(7) .fp-live-spark{color:#7b83ff!important;}
section.fp-live-cards.fp-live-cards-pro .fp-live-updated-pro{
  display:block!important;max-width:1320px!important;margin:8px auto 0!important;padding:0!important;
  font-size:10.5px!important;line-height:1.2!important;color:rgba(255,255,255,.70)!important;font-weight:600!important;
}
@media(max-width:1024px){
  section.fp-live-cards.fp-live-cards-pro .fp-live-cards-grid{
    display:flex!important;grid-template-columns:none!important;gap:9px!important;overflow-x:auto!important;overflow-y:hidden!important;
    scroll-snap-type:x mandatory!important;-webkit-overflow-scrolling:touch!important;padding:0 14px 6px!important;max-width:none!important;
  }
  section.fp-live-cards.fp-live-cards-pro .fp-live-cards-grid::-webkit-scrollbar{display:none!important;height:0!important;}
  section.fp-live-cards.fp-live-cards-pro .fp-live-card{flex:0 0 132px!important;width:132px!important;min-width:132px!important;scroll-snap-align:start!important;}
  section.fp-live-cards.fp-live-cards-pro .fp-live-updated-pro{padding:0 14px!important;}
}
@media(max-width:767px){
  section.fp-live-cards.fp-live-cards-pro{padding:10px 0 14px!important;}
  section.fp-live-cards.fp-live-cards-pro .fp-live-card{flex-basis:124px!important;width:124px!important;min-width:124px!important;height:98px!important;min-height:98px!important;padding:8px 9px 7px!important;}
  section.fp-live-cards.fp-live-cards-pro .fp-live-flag{width:18px!important;height:18px!important;min-width:18px!important;font-size:12px!important;}
  section.fp-live-cards.fp-live-cards-pro .fp-live-symbol{font-size:8.6px!important;}
  section.fp-live-cards.fp-live-cards-pro .fp-live-card strong{font-size:15.5px!important;}
  section.fp-live-cards.fp-live-cards-pro .fp-live-change{font-size:8px!important;margin-top:5px!important;}
  section.fp-live-cards.fp-live-cards-pro .fp-live-spark{height:24px!important;bottom:6px!important;}
}


/* ══════════════════════════════
   HERO GOOGLE-STYLE LIVE CONVERTER — v2.9
══════════════════════════════ */
.fp-hero-converter-wrap{width:100%;max-width:620px;justify-self:end}
.fp-hero-converter{
  position:relative;overflow:hidden;
  width:100%;min-height:390px;
  background:linear-gradient(180deg,rgba(22,27,36,.96),rgba(14,18,25,.98));
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  padding:28px;
  box-shadow:0 26px 80px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.04);
}
.fp-hero-converter:before{content:'';position:absolute;inset:-40% -20% auto auto;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(45,184,79,.17),transparent 68%);pointer-events:none}
.fp-conv-top{position:relative;display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:20px}
.fp-conv-small{display:block;color:rgba(255,255,255,.62);font-size:13px;font-weight:500;margin-bottom:8px}
.fp-conv-top h3{font-size:15px;font-weight:500;color:rgba(255,255,255,.72);line-height:1.4;margin:0 0 6px}
.fp-conv-rate{font-size:28px;line-height:1.2;color:#fff;font-weight:500;letter-spacing:-.4px}
.fp-conv-rate strong{font-size:34px;font-weight:800;color:#eaf5ff;margin-right:8px}
.fp-conv-live{display:inline-flex;align-items:center;gap:6px;background:rgba(45,184,79,.13);border:1px solid rgba(45,184,79,.35);color:#75f29b;border-radius:100px;padding:7px 11px;font-size:11px;font-weight:800;white-space:nowrap}
.fp-conv-fields{display:grid;grid-template-columns:1fr;gap:12px;margin-bottom:18px}
.fp-conv-field{display:grid;grid-template-columns:minmax(90px,140px) 1fr;align-items:center;min-height:56px;border:1px solid rgba(255,255,255,.18);border-radius:8px;background:rgba(255,255,255,.035);overflow:hidden}
.fp-conv-field:focus-within{border-color:#9bbcff;box-shadow:0 0 0 1px rgba(155,188,255,.45)}
.fp-conv-field input{height:100%;min-width:0;background:transparent;border:0;outline:0;color:#fff;font-size:18px;font-weight:600;padding:0 16px;border-right:1px solid rgba(255,255,255,.14)}
.fp-conv-field span{color:rgba(255,255,255,.86);font-size:14px;font-weight:500;padding:0 16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.fp-conv-tabs{display:flex;justify-content:flex-end;gap:24px;margin:10px 0 8px;color:rgba(255,255,255,.64);font-size:12px;font-weight:600}
.fp-conv-tabs span{padding:6px 0}.fp-conv-tabs .on{color:#dce8ff;background:rgba(87,130,190,.22);border-radius:100px;padding:6px 10px;margin:-1px 0}
.fp-conv-chart{height:145px;margin:0 0 18px;position:relative;border-bottom:1px solid rgba(255,255,255,.12)}
.fp-conv-chart svg{width:100%;height:132px;display:block;overflow:visible}
.fp-conv-chart line{stroke:rgba(255,255,255,.08);stroke-width:1}
.fp-conv-axis{position:absolute;left:0;right:0;bottom:-2px;display:flex;justify-content:space-around;color:rgba(255,255,255,.75);font-size:12px;font-weight:700}
.fp-conv-more{display:flex;align-items:center;justify-content:center;gap:10px;margin:4px auto 0;max-width:360px;background:rgba(255,255,255,.055);color:#fff;border-radius:100px;padding:13px 18px;font-size:14px;font-weight:800;transition:background .2s,transform .2s}
.fp-conv-more:hover{background:rgba(45,184,79,.18);transform:translateY(-1px)}
.fp-conv-more span{font-size:24px;line-height:1;color:rgba(255,255,255,.75)}

@media(min-width:980px){.fp-hero-inner{grid-template-columns:minmax(0,1fr) minmax(480px,620px)!important}.fp-hero-converter-wrap{display:block}}
@media(max-width:979px){.fp-hero-converter-wrap{max-width:100%;justify-self:stretch}.fp-hero-converter{min-height:auto}}
@media(max-width:600px){.fp-hero-converter{padding:18px;border-radius:14px}.fp-conv-rate{font-size:22px}.fp-conv-rate strong{font-size:28px}.fp-conv-field{grid-template-columns:100px 1fr;min-height:52px}.fp-conv-field input{font-size:16px;padding:0 12px}.fp-conv-field span{font-size:12px;padding:0 12px}.fp-conv-tabs{gap:13px;justify-content:space-between}.fp-conv-chart{height:120px}.fp-conv-chart svg{height:108px}.fp-conv-more{max-width:100%;font-size:13px;padding:12px 14px}}


/* HERO MULTI-CURRENCY CONVERTER — v3.1 */
.fp-conv-fields{gap:10px!important;position:relative}
.fp-conv-field{grid-template-columns:minmax(90px,130px) 1fr!important}
.fp-conv-field select{height:100%;min-width:0;background:transparent;border:0;outline:0;color:rgba(255,255,255,.9);font-family:inherit;font-size:13px;font-weight:700;padding:0 38px 0 14px;appearance:none;-webkit-appearance:none;background-image:linear-gradient(45deg,transparent 50%,rgba(255,255,255,.75) 50%),linear-gradient(135deg,rgba(255,255,255,.75) 50%,transparent 50%);background-position:calc(100% - 18px) 50%,calc(100% - 12px) 50%;background-size:6px 6px,6px 6px;background-repeat:no-repeat;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.fp-conv-field select option{background:#101820;color:#fff}
.fp-conv-swap{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.16);background:linear-gradient(135deg,rgba(45,184,79,.22),rgba(255,255,255,.06));color:#fff;font-size:18px;font-weight:900;display:flex;align-items:center;justify-content:center;margin:-5px auto -5px;position:relative;z-index:2;box-shadow:0 10px 28px rgba(0,0,0,.25);transition:transform .18s,background .18s}
.fp-conv-swap:hover{transform:rotate(180deg);background:rgba(45,184,79,.28)}
.fp-conv-more{display:none!important}
@media(max-width:600px){.fp-conv-field{grid-template-columns:92px 1fr!important}.fp-conv-field select{font-size:11.5px;padding-left:10px;padding-right:28px;background-position:calc(100% - 14px) 50%,calc(100% - 9px) 50%;background-size:5px 5px,5px 5px}.fp-conv-swap{width:34px;height:34px;font-size:16px}.fp-conv-top{gap:10px}.fp-conv-live{padding:6px 8px;font-size:10px}}


/* HERO CONVERTER MOBILE POLISH — v3.2 */
.fp-hero-converter{isolation:isolate}
.fp-conv-field input[type=number]::-webkit-outer-spin-button,
.fp-conv-field input[type=number]::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}
.fp-conv-field input[type=number]{-moz-appearance:textfield}
@media(max-width:767px){
  .fp-hero{min-height:auto!important;padding:34px 0 28px!important;justify-content:flex-start!important}
  .fp-hero-inner{padding:0 14px!important;display:flex!important;flex-direction:column!important;gap:18px!important}
  .fp-hero-desc{margin-bottom:18px!important;font-size:13px!important;line-height:1.6!important}
  .fp-hero-btns{margin-bottom:0!important}
  .fp-hero-converter-wrap{width:100%!important;max-width:100%!important;margin:4px auto 0!important;order:2!important}
  .fp-hero-converter{
    width:100%!important;min-height:auto!important;border-radius:18px!important;padding:16px!important;
    background:linear-gradient(180deg,rgba(18,24,31,.98),rgba(8,13,18,.99))!important;
    border-color:rgba(255,255,255,.16)!important;
    box-shadow:0 18px 44px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.05)!important;
  }
  .fp-conv-top{display:block!important;margin-bottom:14px!important;padding-right:64px!important;min-height:64px!important}
  .fp-conv-small{font-size:11px!important;margin-bottom:5px!important;color:rgba(255,255,255,.64)!important}
  .fp-conv-top h3{font-size:12px!important;line-height:1.35!important;margin-bottom:4px!important;color:rgba(255,255,255,.72)!important}
  .fp-conv-rate{font-size:18px!important;line-height:1.18!important;letter-spacing:-.2px!important}
  .fp-conv-rate strong{display:inline-block!important;font-size:25px!important;margin-right:5px!important;color:#fff!important}
  .fp-conv-live{position:absolute!important;right:16px!important;top:16px!important;padding:5px 8px!important;font-size:9px!important;border-radius:999px!important}
  .fp-conv-fields{gap:8px!important;margin-bottom:12px!important}
  .fp-conv-field{
    grid-template-columns:minmax(0,1fr) 96px!important;min-height:50px!important;border-radius:12px!important;
    background:rgba(255,255,255,.055)!important;border-color:rgba(255,255,255,.15)!important;
  }
  .fp-conv-field input{font-size:18px!important;font-weight:800!important;padding:0 12px!important;border-right:1px solid rgba(255,255,255,.12)!important}
  .fp-conv-field select{font-size:12px!important;font-weight:800!important;padding:0 24px 0 9px!important;background-position:calc(100% - 13px) 50%,calc(100% - 8px) 50%!important;background-size:5px 5px,5px 5px!important;color:#fff!important}
  .fp-conv-swap{width:32px!important;height:32px!important;margin:-3px auto!important;font-size:15px!important;box-shadow:0 8px 18px rgba(0,0,0,.28)!important}
  .fp-conv-tabs{gap:0!important;justify-content:space-between!important;margin:8px 0 4px!important;font-size:10.5px!important}
  .fp-conv-tabs span{padding:4px 2px!important}.fp-conv-tabs .on{padding:4px 8px!important}
  .fp-conv-chart{height:92px!important;margin-bottom:6px!important;border-bottom-color:rgba(255,255,255,.1)!important}
  .fp-conv-chart svg{height:84px!important}
  .fp-conv-chart line{stroke:rgba(255,255,255,.07)!important}
  .fp-conv-axis{font-size:10px!important;bottom:-4px!important;color:rgba(255,255,255,.58)!important}
}
@media(max-width:380px){
  .fp-hero-inner{padding:0 12px!important}
  .fp-hero-converter{padding:14px!important;border-radius:16px!important}
  .fp-conv-field{grid-template-columns:minmax(0,1fr) 86px!important}
  .fp-conv-field input{font-size:16px!important;padding:0 10px!important}
  .fp-conv-field select{font-size:11px!important;padding-left:7px!important;padding-right:22px!important}
  .fp-conv-rate strong{font-size:22px!important}
}
