/* ============================================
   GXMarkets Clone – Complete Stylesheet
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #0b0e1a;
  --bg-navy: #0f1220;
  --bg-card: #141729;
  --bg-card2: #181c2e;
  --bg-sidebar: #111424;
  --accent-gold: #F2B90D;
  --accent-gold-dark: #d4891a;
  --accent-red: #e02020;
  --text-white: #ffffff;
  --text-light: #c8cfe0;
  --text-muted: #8892a4;
  --text-gold: #f5a623;
  --border-color: #1e2540;
  --badge-green: #2ecc71;
  --badge-blue: #3b82f6;
  --nav-height: 60px;

    --background: 222 47% 6%;
    --foreground: 210 40% 98%;
    --card: 222 47% 8%;
    --card-foreground: 210 40% 98%;
    --popover: 222 47% 8%;
    --popover-foreground: 210 40% 98%;
    --primary: 43 96% 56%;
    --primary-foreground: 222 47% 6%;
    --secondary: 222 30% 14%;
    --secondary-foreground: 210 40% 98%;
    --muted: 222 30% 18%;
    --muted-foreground: 215 20% 65%;
    --accent: 43 96% 56%;
    --accent-foreground: 222 47% 6%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 210 40% 98%;
    --border: 222 30% 18%;
    --input: 222 30% 18%;
    --ring: 43 96% 56%;
    --radius: .75rem;
    --gold: 43 96% 56%;
    --gold-light: 43 96% 70%;
    --gold-dark: 43 80% 45%;
    --navy: 222 47% 6%;
    --navy-light: 222 47% 12%;
    --navy-lighter: 222 30% 18%;
    --success: 142 76% 36%;
    --warning: 38 92% 50%;
    --info: 199 89% 48%;
    --gradient-gold: linear-gradient(135deg, hsl(43 96% 56%) 0%, hsl(35 91% 50%) 100%);
    --gradient-navy: linear-gradient(180deg, hsl(222 47% 8%) 0%, hsl(222 47% 4%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(222 47% 6%) 0%, hsl(222 47% 12%) 50%, hsl(222 47% 6%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(222 47% 10%) 0%, hsl(222 47% 6%) 100%);
    --gradient-glass: linear-gradient(135deg, hsla(222, 47%, 20%, .4) 0%, hsla(222, 47%, 10%, .2) 100%);
    --shadow-gold: 0 4px 30px hsla(43, 96%, 56%, .15);
    --shadow-card: 0 8px 32px hsla(0, 0%, 0%, .3);
    --shadow-glow: 0 0 60px hsla(43, 96%, 56%, .2);
    --font-display: "Playfair Display", serif;
    --font-body: "DM Sans", sans-serif;
    --sidebar-background: 222 47% 8%;
    --sidebar-foreground: 210 40% 98%;
    --sidebar-primary: 43 96% 56%;
    --sidebar-primary-foreground: 222 47% 6%;
    --sidebar-accent: 222 30% 14%;
    --sidebar-accent-foreground: 210 40% 98%;
    --sidebar-border: 222 30% 18%;
    --sidebar-ring: 43 96% 56%;
}
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #2a3050; border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-navy);
  border-bottom: 1px solid var(--border-color);
  height: var(--nav-height);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-g { color: #ffffff; }
.logo-x {
  color: var(--accent-red);
  font-style: italic;
  text-shadow: 0 0 10px rgba(220,30,30,0.4);
}
.logo-markets {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover { color: var(--accent-gold); background: rgba(245,166,35,0.06); }

.nav-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.15s, background 0.15s;
}

.dropdown-menu li a:hover {
  color: var(--accent-gold);
  background: rgba(245,166,35,0.05);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-signin {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  transition: color 0.2s;
}
.btn-signin:hover { color: var(--accent-gold); }

.btn-getstarted {
  padding: 8px 20px;
    background: linear-gradient(
    90deg,
    hsl(45, 90%, 50%),
    hsl(50, 95%, 65%),
    hsl(45, 90%, 50%)
  );
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-getstarted:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0d1020 50%, #110d1a 100%);
  padding: 60px 24px 40px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(245,166,35,0.04) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 30%, rgba(59,130,246,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.gradient-text {
  /* তোমার color variables */
  --primary: 45 90% 50%;
  --gold-light: 50 95% 65%;

  background-image: linear-gradient(
    to right,
    hsl(var(--primary)),
    hsl(var(--gold-light)),
    hsl(var(--primary))
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Hero Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 24px;
  font-size: 13px;
  color: var(--text-gold);
  background: rgba(245,166,35,0.06);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-badge i { font-size: 12px; }

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-highlight {
  color: var(--accent-gold);
  display: block;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-outline {
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
.award-btn {
  padding: 12px 28px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  border: none;
  color: #030303;
  
  background: linear-gradient(
    90deg,
    hsl(45, 90%, 50%),
    hsl(50, 95%, 65%),
    hsl(45, 90%, 50%)
  );

  box-shadow: 0 4px 15px hsla(45, 90%, 50%, 0.5);
  transition: all 0.3s ease;
}

.award-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px hsla(50, 95%, 65%, 0.8);
}


.explore-btn {
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;

  color: hsl(0, 0%, 95%);
  
  background: hsla(0, 0%, 100%, 0.08); /* glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid hsla(0, 0%, 100%, 0.15);

  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: hsla(0, 0%, 100%, 0.15);
  border-color:  hsla(50, 95%, 65%, 0.8);;
  color: hsl(0, 0%, 100%);
  
  transform: translateY(-2px);
}




.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.btn-primary:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.4);
}

/* Hero Right */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.hero-news-card:hover { transform: translateY(-4px); }

.hero-banner-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-card-body { padding: 20px; }

.card-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 10px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 10px;
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-banner-inner p {
  font-size: 13px;
  color: linear-gradient(
    90deg,
    hsl(45, 90%, 50%),
    hsl(50, 95%, 65%),
    hsl(45, 90%, 50%)
  );
  text-align: center;
  font-weight: 500;
}

.btn-promo {
  padding: 8px 20px;
    background: linear-gradient(
    90deg,
    hsl(45, 90%, 50%),
    hsl(50, 95%, 65%),
    hsl(45, 90%, 50%)
  );
  color: #0a0a0a;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-promo:hover { background: var(--accent-gold-dark); transform: translateY(-1px); }

.ad-label {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================
   MAIN CONTENT LAYOUT
   ============================================ */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: 280px 1fr 240px;
  gap: 24px;
  align-items: start;
}

/* ============================================
   SIDEBAR LEFT
   ============================================ */
.sidebar-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.widget-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-title i { color: var(--accent-gold); font-size: 13px; }

.widget-title-sm {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}

/* Promo List */
.promo-list { display: flex; flex-direction: column; gap: 10px; }

.promo-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
}
.promo-item:last-child { border-bottom: none; padding-bottom: 0; }

.promo-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.promo-badge.new { background: #22C55E; color: #fff; }
.promo-badge.hot { background: #dc2626; color: #fff; }

.promo-text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}
.promo-text:hover{
  color: var(--accent-gold);
}
.promo-text strong { color: #fff; font-weight: 600; }

.btn-view-all {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 8px 45px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.2s;
}
.btn-view-all:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

/* Quick Links */
.quick-links { display: flex; flex-direction: column; gap: 4px; }

.quick-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--text-light);
  transition: all 0.2s;
}
.quick-links li a:hover { background: rgba(245,166,35,0.06); color: var(--accent-gold); }
.quick-links li a i { width: 16px; color: var(--text-muted); font-size: 12px; }

.ql-count {
  margin-left: auto;
  font-size: 11px;
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

/* XM Ads */
.ad-widget { 
  padding: 0;
  background: transparent;
  border: none;
overflow: hidden;
  position: sticky;
  top: 20px; /* আপনার প্রয়োজন অনুযায়ী adjust করতে পারেন */
}
.xm-ad-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.xm-ad {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px;
  position: relative;
  text-align: center;
}

.ad-badge {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 700;
  border: 1px solid var(--border-color);
  padding: 1px 4px;
  border-radius: 3px;
}

.xm-logo { margin-bottom: 8px; }
.xm-text {
  font-size: 18px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
}

.xm-ad-text { font-size: 13px; color: var(--text-light); margin-bottom: 10px; font-weight: 600; }
.xm-ad-text strong { color: white; font-size: 18px; }

.xm-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.xm-features li {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.xm-features li i { color: var(--badge-green); font-size: 10px; }

.btn-claim {
  display: block;
  padding: 8px;
  background: var(--badge-green);
  color: #0a0a0a;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: all 0.2s;
  margin-bottom: 6px;
}
.btn-claim:hover { background: #22c55e; transform: translateY(-1px); }

.xm-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   MAIN CENTER
   ============================================ */
.main-center { display: flex; flex-direction: column; gap: 28px; }

.section-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title i { font-size: 15px; }

.view-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.view-all-link:hover { opacity: 0.8; }

/* Broker Cards */
.brokers-list { display: flex; flex-direction: column; gap: 12px; }

.broker-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.broker-card:hover {
  border-color: rgba(245,166,35,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.broker-logo { flex-shrink: 0; }

.broker-logo-img {
  width: 130px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid var(--border-color);
  text-align: center;
  line-height: 1.3;
}

.broker-gfunded { background: #1a2240; color: #a0b0d0; }
.broker-justmarkets { background: #1a3060; color: #4a90e2; font-size: 15px; }
.broker-xm { background: #1a1a2e; color: white; flex-direction: column; gap: 2px; }
.broker-roboforex { background: #1a2840; color: white; gap: 8px; }
.broker-valetax { background: #1a2850; color: white; font-size: 17px; }
.broker-headway { background: #1a1a1a; color: #c8a24a; letter-spacing: 1px; flex-direction: column; gap: 4px; }

.xm-icon { font-size: 10px; color: #e00; }
.xm-brand { font-size: 22px; font-weight: 900; letter-spacing: -1px; }
.xm-years { font-size: 9px; letter-spacing: 1.5px; color: var(--text-muted); }

.broker-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.broker-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
}

.badge-featured {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(245,166,35,0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.broker-details {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.broker-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.broker-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: 700;
}

.broker-type {
  font-size: 11px;
  padding: 2px 7px;
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border-radius: 4px;
  font-weight: 600;
}

.broker-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  min-width: 140px;
}

.btn-start-trading {
  display: block;
  width: 100%;
  padding: 10px 14px;
   background: linear-gradient(
    90deg,
    hsl(45, 90%, 50%),
    hsl(50, 95%, 65%),
    hsl(45, 90%, 50%)
  );
  color: #0a0a0a;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-start-trading:hover { background: var(--accent-gold-dark); transform: translateY(-1px); }

.btn-visit {
  display: block;
  width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}
.btn-visit:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

/* Special Promo Card */
.special-promo-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  text-align: center;
}

.special-promo-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.promo-dot { color: var(--accent-gold); font-size: 8px; }
.special-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; font-weight: 700; text-transform: uppercase; }

.special-text {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
  line-height: 1.5;
}

.btn-promo-sm {
  margin-top: 6px;
  padding: 9px 24px;
  background: var(--accent-gold);
  color: #0a0a0a;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-promo-sm:hover { background: var(--accent-gold-dark); transform: translateY(-1px); }

/* Press Releases */
.press-list { display: flex; flex-direction: column; gap: 0; }

.press-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s;
}
.press-item:last-child { border-bottom: none; }
.press-item:hover { background: rgba(245,166,35,0.02); }

.press-avatar {
  width: 38px;
  height: 38px;
  background: var(--accent-gold);
  color: #0a0a0a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.press-avatar-k { background: #7c3aed; color: white; }

.press-content { flex: 1; }

.press-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.press-broker {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
}

.press-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.press-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.2s;
}
.press-item:hover .press-title { color: var(--accent-gold); }

.press-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.category-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.category-card:hover {
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.04);
  transform: translateY(-2px);
}

.cat-icon {
  font-size: 28px;
  color: var(--accent-gold);
  background: rgba(245,166,35,0.1);
  width: 52px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px;
}

.cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.cat-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* Articles Grid */
.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.article-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.article-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-2px);
}

.article-thumb {
  height: 140px;
  position: relative;
  background: linear-gradient(135deg, #1a2440 0%, #0f1830 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.article-thumb-1 { background: linear-gradient(135deg, #1a2830 0%, #0f1224 100%); }
.article-thumb-2 { background: linear-gradient(135deg, #1a1430 0%, #0f0a24 100%); }

.article-category {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(245,166,35,0.2);
  color: var(--accent-gold);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-body { padding: 14px; }

.article-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.article-card:hover .article-title { color: var(--accent-gold); }

.article-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.article-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--text-muted);
}
.article-meta span { display: flex; align-items: center; gap: 4px; }

/* ============================================
   SIDEBAR RIGHT
   ============================================ */
.sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 20px;

  position: sticky;
  top: 20px; /* কতটা দূর থেকে sticky হবে */
}

.right-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.view-all-sm {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  transition: opacity 0.2s;
}
.view-all-sm:hover { opacity: 0.7; }

.prop-firms-list { display: flex; flex-direction: column; gap: 12px; }

.prop-firm-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}
.prop-firm-item:last-child { border-bottom: none; padding-bottom: 0; }

.prop-firm-logo {
  width: 72px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.fxify-logo { background: #f5f5f5; color: #111; }
.ifunds-logo { background: #1a3060; color: #4a90e2; }
.funderpro-logo { background: #1a1040; color: #a07ce8; }
.e8-logo { background: #1a2030; color: #40b0e0; }
.fortraders-logo { background: #1a2030; color: #80c0a0; font-size: 10px; }

.prop-firm-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.btn-visit-sm {
  padding: 6px 12px;
  background: linear-gradient(
    90deg,
    hsl(45, 90%, 50%),
    hsl(50, 95%, 65%),
    hsl(45, 90%, 50%)
  );
  color: #0a0a0a;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.btn-visit-sm:hover { background: var(--accent-gold-dark); }

/* Awards Widget */
.awards-widget {
  text-align: center;
  padding: 24px 18px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,166,35,0.05) 100%);
  border-color: rgba(245,166,35,0.2);
}

.awards-trophy { font-size: 48px; margin-bottom: 8px; display: block; }

.awards-label {
  font-size: 11px;
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 8px;
}

.awards-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.awards-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-vote-now {
  display: block;
  padding: 10px;
    background: linear-gradient(
    90deg,
    hsl(45, 90%, 50%),
    hsl(50, 95%, 65%),
    hsl(45, 90%, 50%)
  );
  color: #0a0a0a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: all 0.2s;
}
.btn-vote-now:hover { background: var(--accent-gold-dark); transform: translateY(-1px); }

/* Payment Widget */
.payment-widget { padding: 16px; }

.payment-methods { display: flex; flex-wrap: wrap; gap: 6px; }

.pay-badge {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.2s;
}
.pay-badge:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

/* ============================================
   PROMO BANNER FULL WIDTH
   ============================================ */
.promo-banner-full {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.promo-full-inner { max-width: 960px; margin: 0 auto; }

.promo-full-img { width: 100%; height: auto; display: block; }

.promo-full-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
}

.promo-full-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.jm-logo {
  font-size: 20px;
  font-weight: 900;
  color: white;
  padding-right: 24px;
  border-right: 2px solid rgba(255,255,255,0.2);
}

.jm-text { text-align: center; }
.jm-headline { font-size: 20px; font-weight: 800; color: white; }
.jm-amount { font-size: 48px; font-weight: 900; color: white; line-height: 1; }
.jm-zero { color: var(--accent-gold); }
.jm-sub { font-size: 13px; color: rgba(255,255,255,0.5); }

.jm-btn {
  padding: 12px 28px;
  background: #111;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.jm-btn:hover { background: #222; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-navy);
  border-top: 1px solid var(--border-color);
  padding: 48px 24px 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 300px;
}

.footer-socials { display: flex; gap: 10px; }

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(245,166,35,0.06); }

.footer-col {}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.footer-contact p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-contact a { color: var(--text-light); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent-gold); }

.footer-address { font-size: 12px !important; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-links li a:hover { color: var(--accent-gold); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 16px 0;
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.copyright {
  font-size: 12px;
  color: var(--text-muted);
}

.risk-warning {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ============================================
   STICKY AD BANNER
   ============================================ */
.sticky-ad {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #030303;
  border-top: 2px solid #333;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.sticky-ad.hidden { transform: translateY(100%); }

.sticky-ad-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 700px;
}

.sticky-ad-logo {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  flex-shrink: 0;
}

.sticky-ad-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  flex-wrap: wrap;
}

.sticky-amount {
  font-size: 24px;
  font-weight: 900;
  color: #111;
}
.zero-highlight { color: var(--accent-gold); }

.sticky-sub {
  font-size: 12px;
  color: #666;
}

.sticky-cta {
  padding: 10px 22px;
  background: #111;
  color: white;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.sticky-cta:hover { background: #333; }

.sticky-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.sticky-close:hover { color: #111; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: 250px 1fr 210px;
    gap: 16px;
  }
  .hero-title { font-size: 34px; }
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-left, .sidebar-right { display: none; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-navy);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
    gap: 2px;
    z-index: 999;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav-link { font-size: 14px; padding: 12px 8px; width: 100%; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
  }

  .hero { padding: 40px 16px 30px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }

  .broker-card { grid-template-columns: 1fr; }
  .broker-logo { width: 100%; }
  .broker-logo-img { width: 100%; }
  .broker-actions { flex-direction: row; }
  .btn-start-trading, .btn-visit { flex: 1; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr; }

  .promo-banner { padding: 14px 16px; }
  .promo-banner-inner { flex-direction: column; gap: 10px; }

  .main-content { padding: 16px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-title { font-size: 24px; }
  .categories-grid { grid-template-columns: 1fr; }
}

/* ============================================
   STICKY SIDE ADS (LEFT & RIGHT) — XM
   ============================================ */
.side-ad {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  transition: opacity 0.3s;
}

.side-ad-left {
  left: 0;
  padding-left: 0;
}

.side-ad-right {
  right: 0;
  padding-right: 0;
}

.side-ad.hidden { opacity: 0; pointer-events: none; }

.side-ad-card {
  width: 148px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  position: relative;
  pointer-events: all;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.side-ad-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 32px rgba(0,0,0,0.6);
}

/* Left-side card — slight right rounding only */
.side-ad-left .side-ad-card {
  border-left: none;
  border-radius: 0 10px 10px 0;
}
/* Right-side card — slight left rounding only */
.side-ad-right .side-ad-card {
  border-right: none;
  border-radius: 10px 0 0 10px;
}

.side-ad-badge {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 700;
  border: 1px solid var(--border-color);
  padding: 1px 4px;
  border-radius: 3px;
  background: var(--bg-dark);
}

.side-ad-xm-logo {
  font-size: 22px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.xm-i {
  color: #e00;
  font-style: italic;
}

.side-ad-headline {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.side-ad-headline strong {
  color: white;
  font-size: 22px;
  display: block;
  line-height: 1.1;
  margin-bottom: 2px;
}

.side-ad-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.side-ad-features li {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.side-ad-features li i {
  color: var(--badge-green);
  font-size: 10px;
}

.side-ad-coins {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.side-ad-btn {
  display: block;
  padding: 8px;
  background: var(--badge-green);
  color: #0a0a0a;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: all 0.2s;
  margin-bottom: 6px;
  cursor: pointer;
}
.side-ad-btn:hover { background: #22c55e; }

.side-ad-disclaimer {
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Hide side ads on smaller screens */
@media (max-width: 1600px) {
  .side-ad { display: none; }
}

/* ============================================
   BONUS ARTICLES TABLE
   ============================================ */
.bonus-articles-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.bonus-table-header {
  background: var(--accent-gold);
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
}

.bonus-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
}
.bonus-table tbody tr:last-child { border-bottom: none; }
.bonus-table tbody tr:hover { background: rgba(245,166,35,0.04); }

.bonus-table td {
  padding: 10px 14px;
  font-size: 13px;
  vertical-align: middle;
}

.bonus-table td.article-link a {
  color: var(--text-light);
  transition: color 0.15s;
  line-height: 1.5;
}
.bonus-table td.article-link a:hover { color: var(--accent-gold); }

.bonus-table td.article-date {
  color: var(--text-muted);
  font-size: 12px;
  white-space: nowrap;
  text-align: right;
}

/* ============================================
   TOP 10 BROKERS WIDGET
   ============================================ */
.top10-list { display: flex; flex-direction: column; gap: 0; }

.top10-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.top10-item:last-child { border-bottom: none; }

.top10-rank {
  width: 26px;
  height: 26px;
  background: rgba(245,166,35,0.12);
  color: var(--accent-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.top10-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.top10-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top10-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.btn-vote-sm {
  padding: 5px 10px;
    background: linear-gradient(
    90deg,
    hsl(45, 90%, 50%),
    hsl(50, 95%, 65%),
    hsl(45, 90%, 50%)
  );
  color: #0a0a0a;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-vote-sm:hover { background: var(--accent-gold-dark); }

/* Awards Trophy fix */
.awards-trophy-img {
  font-size: 52px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
/* ─── BREADCRUMB ─── */
.breadcrumb-wrap{background:#0f1117;padding:20px 0;border-bottom:1px solid #1a2030;}
.breadcrumb-wrap .breadcrumb{margin:0;font-size:12px;background:none;}
.breadcrumb-wrap .breadcrumb-item a{color:#e8b84b;text-decoration:none;}
.breadcrumb-wrap .breadcrumb-item a:hover{text-decoration:underline;}
.breadcrumb-wrap .breadcrumb-item.active{color:#7a8899;}
.breadcrumb-wrap .breadcrumb-item+.breadcrumb-item::before{color:#555;content:"/";}

/* ─── PAGE BODY ─── */
.page-body{padding:20px 0 40px;}

/* ─── ARTICLE LEFT ─── */
.article-tag{display:inline-block;background:var(--accent-gold);color:#000;font-size:10px;font-weight:700;padding:2px 10px;border-radius:3px;text-transform:uppercase;margin-bottom:5px;letter-spacing:.5px;}
.article-meta-line{font-size:12px;color:#6e7e90;margin-bottom:10px;display:flex;align-items:center;gap:8px;}
.article-meta-line i{font-size:11px;}
h1.art-title{font-size:24px;font-weight:700;color:#e8edf2;line-height:1.32;margin-bottom:15px;}

/* Press from bar */
.from-bar{display:flex;align-items:center;justify-content:space-between;background:#161d2a;border:1px solid #1e2a3a;border-radius:5px;padding:9px 13px;margin-bottom:12px;}
.from-bar-left{display:flex;align-items:center;gap:9px;}
.from-logo{width:34px;height:34px;background:#1a6ce8;border-radius:5px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:10px;letter-spacing:-.5px;}
.from-label{font-size:10px;color:#6e7e90;}
.from-name{font-size:13px;color:#e8edf2;font-weight:600;}
.btn-visits{display:flex;align-items:center;gap:6px;background:transparent;border:1px solid #2e3d50;color:#b0bbc8;font-size:11.5px;padding:5px 12px;border-radius:4px;text-decoration:none;cursor:pointer;}
.btn-visits:hover{border-color:#e8b84b;color:#e8b84b;}

/* Sub-quote */
.art-subquote{border-left:3px solid #c8a030;padding:9px 14px;background:rgba(200,160,48,.07);color:#8a9bae;font-size:12.5px;font-style:italic;margin-bottom:18px;border-radius:0 4px 4px 0;line-height:1.55;}

/* ─── AWARD BOX 1 ─── */
.award-box{border-radius:10px;overflow:hidden;margin-bottom:18px;position:relative;}
.award-box-inner{
  background:linear-gradient(135deg,#0a1e38 0%,#0d2d50 35%,#0e3458 60%,#0a2040 100%);
  padding:28px 24px 20px;
  position:relative;
  min-height:220px;
  display:flex;flex-direction:column;
}
.award-box-inner::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 35%,rgba(20,120,200,.22) 0%,transparent 70%);
  pointer-events:none;
}
.award-box2-inner{
  background:linear-gradient(135deg,#081828 0%,#0a2238 40%,#0d2e4a 60%,#081828 100%);
  padding:28px 24px 20px;
  position:relative;
  min-height:220px;
  display:flex;flex-direction:column;
}
.award-box2-inner::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 55% at 50% 35%,rgba(0,160,200,.15) 0%,transparent 70%);
  pointer-events:none;
}

/* Elev8 logo in award box */
.award-elev8-logo{
  display:flex;align-items:center;gap:7px;
  position:relative;z-index:2;margin-bottom:auto;
}
.award-e8-icon{
  width:24px;height:24px;
  background:#1a6ce8;border-radius:4px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:12px;
}
.award-e8-text{color:#e8edf2;font-weight:800;font-size:14px;letter-spacing:1.5px;}

/* Trophy area */
.trophy-area{
  flex:1;display:flex;align-items:flex-end;justify-content:center;
  padding-bottom:12px;position:relative;z-index:2;
}

/* Gold trophy */
.t-gold{
  width:90px;
  display:flex;flex-direction:column;align-items:center;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.6));
}
.t-gold-body{
  width:90px;height:120px;
  background:linear-gradient(170deg,#d4a030 0%,#c08820 20%,#a06810 55%,#7a4e08 100%);
  border-radius:7px 7px 4px 4px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  position:relative;
}
.t-gold-body::after{
  content:'';position:absolute;left:8px;top:8px;right:8px;bottom:8px;
  border:1px solid rgba(255,255,255,.12);border-radius:4px;
}
.t-gold-words{
  font-size:8px;font-weight:700;color:rgba(255,255,255,.9);
  text-align:center;line-height:1.6;
}
.t-gold-year{
  position:absolute;bottom:8px;
  font-size:9.5px;font-weight:700;color:rgba(255,255,255,.55);
}
.t-gold-base{
  width:98px;height:11px;
  background:linear-gradient(180deg,#a06810,#6a4206);
  border-radius:2px;
}
.t-shadow{
  width:100px;height:16px;
  background:radial-gradient(ellipse,rgba(0,0,0,.5) 0%,transparent 70%);
  margin:0 auto;
}

/* Teal trophy */
.t-teal{
  width:90px;
  display:flex;flex-direction:column;align-items:center;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.6));
}
.t-teal-body{
  width:90px;height:120px;
  background:linear-gradient(170deg,#50c0d4 0%,#30a0b8 20%,#1a7890 55%,#0e5060 100%);
  border-radius:7px 7px 4px 4px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  position:relative;
}
.t-teal-body::after{
  content:'';position:absolute;left:8px;top:8px;right:8px;bottom:8px;
  border:1px solid rgba(255,255,255,.12);border-radius:4px;
}
.t-teal-words{
  font-size:8px;font-weight:700;color:rgba(255,255,255,.9);
  text-align:center;line-height:1.6;
}
.t-teal-year{
  position:absolute;bottom:8px;
  font-size:9.5px;font-weight:700;color:rgba(255,255,255,.55);
}
.t-teal-base{
  width:98px;height:11px;
  background:linear-gradient(180deg,#1a7890,#0a3a48);
  border-radius:2px;
}

/* ─── ARTICLE TEXT ─── */
.art-body{font-size:13.5px;color:#b8c6d2;line-height:1.72;}
.art-body p{margin-bottom:12px;}
.art-body h2{font-size:16.5px;font-weight:700;color:#dde5ee;margin:20px 0 10px;}
.art-body strong{color:#dde5ee;}
.art-body a{color:#1a8ae8;text-decoration:underline;}
.art-body a:hover{color:#e8b84b;}
.art-body ul{list-style:none;padding-left:0;margin-bottom:14px;}
.art-body ul li{padding:4px 0 4px 16px;position:relative;}
.art-body ul li::before{content:'•';position:absolute;left:0;color:#b8c6d2;}

/* elev8 inline */
.elev8-inline{display:inline-flex;align-items:center;gap:4px;font-style:italic;}
.elev8-inline .e8i{width:16px;height:16px;background:#1a6ce8;border-radius:3px;display:inline-flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:8px;font-style:normal;}
.elev8-inline span{font-weight:700;color:#1a8ae8;}

/* Disclaimer */
.disclaimer{background:#161d2a;border:1px solid #1e2a3a;border-radius:5px;padding:12px 15px;font-size:12px;color:#7a8899;margin:16px 0;}
.disclaimer strong{color:#9aabb8;}

/* Company blurb */
.co-blurb{font-size:13px;color:#8a9bae;margin-bottom:18px;line-height:1.65;}

/* Back link */
.back-link-wrap{border-top:1px solid #1e2a3a;padding-top:14px;margin-bottom:24px;}
.back-link{display:inline-flex;align-items:center;gap:7px;color:#8a9bae;font-size:13px;text-decoration:none;}
.back-link:hover{color:#e8b84b;}

/* Recommended Brokers */
.rec-title{font-size:16px;font-weight:700;color:#dde5ee;margin-bottom:14px;}
.broker-card{background:#161d2a;border:1px solid #1e2a3a;border-radius:8px;padding:14px 12px;text-align:center;height:100%;}
.broker-logo-wrap{width:68px;height:68px;border-radius:8px;margin:0 auto 10px;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.broker-logo-robo{background:linear-gradient(135deg,#1a5fd4,#0d46a8);}
.broker-logo-xm{background:linear-gradient(135deg,#b52020,#8a1010);}
.broker-logo-hw{background:linear-gradient(135deg,#7a5820,#4e3508);}
.broker-card-name{font-size:13px;font-weight:700;color:#dde5ee;margin-bottom:2px;}
.broker-card-meta{font-size:10.5px;color:#6e7e90;margin-bottom:10px;}
.btn-viewb{display:block;border:1px solid #2e3d50;border-radius:4px;color:#9aabb8;font-size:11.5px;padding:5px;text-decoration:none;background:transparent;}
.btn-viewb:hover{border-color:#e8b84b;color:#e8b84b;}

/* ─── SIDEBAR ─── */
.xm-card{
  background:linear-gradient(160deg,#b01818 0%,#c82020 60%,#a01010 100%);
  border-radius:8px;padding:14px 14px 12px;
  margin-bottom:14px;position:relative;overflow:hidden;
}
.xm-card-badge{display:inline-block;background:#fff;color:#c01818;font-weight:900;font-size:12px;padding:2px 8px;border-radius:3px;margin-bottom:5px;letter-spacing:.5px;}
.xm-card-amount{font-size:28px;font-weight:900;color:#fff;line-height:1.05;}
.xm-card-label{font-size:14px;font-weight:600;color:#fff;margin-bottom:10px;line-height:1.2;}
.xm-card-coins{position:absolute;right:8px;top:8px;font-size:32px;opacity:.6;}
.btn-claim{display:block;background:#27ae60;border:none;color:#fff;font-size:12px;font-weight:700;padding:8px;border-radius:4px;cursor:pointer;width:100%;margin-bottom:7px;}
.btn-claim:hover{background:#219150;}
.xm-disclaimer{font-size:10px;color:rgba(255,255,255,.5);}

.sb-card{background:#161d2a;border:1px solid #1e2a3a;border-radius:8px;padding:14px;margin-bottom:14px;}
.sb-card-title{font-size:18px;font-weight:700;color:#dde5ee;margin-bottom:10px;padding-bottom:8px;border-bottom:1px solid #1e2a3a;}
.sb-broker-row{display:flex;align-items:center;gap:9px;margin-bottom:11px;}
.sb-broker-icon{width:50px;background:#1a6ce8;border-radius:5px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:10px;flex-shrink:0;}
.sb-broker-name{font-size:13px;font-weight:600;color:#dde5ee;}
.sb-broker-type{font-size:11px;color:#6e7e90;}
.btn-viewprofile{display:block;background:linear-gradient(90deg, hsl(45, 90%, 50%), hsl(50, 95%, 65%), hsl(45, 90%, 50%));;color:#000;font-size:12px;font-weight:700;text-align:center;padding:8px;border-radius:10px;text-decoration:none;}
.btn-viewprofile:hover{background:#d4a030;color:#000;}

.press-item{padding:8px 0;border-bottom:1px solid #1a2230;}
.press-item:last-child{border-bottom:none;}
.press-item a{font-size:14px;color:#b0bbc8;text-decoration:none;display:block;line-height:1.4;}
.press-item a:hover{color:#e8b84b;}
.press-item .pi-sub{font-size:10px;color:#3e4e5e;margin-top:2px;}

.have-news{background:#161d2a;border:1px solid #1e2a3a;border-radius:8px;padding:18px 14px;text-align:center;margin-bottom:14px;}
.hn-icon-body{width:48px;height:56px;background:linear-gradient(160deg,#e8a020,#c07010);border-radius:6px;display:flex;align-items:center;justify-content:center;margin:0 auto 12px;position:relative;}
.hn-icon-body::before{content:'';position:absolute;top:0;right:0;width:13px;height:13px;background:#0f1117;clip-path:polygon(0 0,100% 100%,100% 0);}
.hn-icon-body i{color:#fff;font-size:20px;position:relative;z-index:1;}
.have-news h6{font-size:13px;font-weight:700;color:#dde5ee;margin-bottom:6px;}
.have-news p{font-size:11.5px;color:#6e7e90;margin-bottom:12px;line-height:1.5;}
.btn-contact{display:inline-block;border:1px solid #e8b84b;color:#e8b84b;font-size:12px;font-weight:600;padding:6px 20px;border-radius:4px;text-decoration:none;}
.btn-contact:hover{background:#e8b84b;color:#000;}

/* ─── WELCOME BANNER ─── */
.welcome-banner{
  background:linear-gradient(90deg,#0e1520 0%,#111a28 100%);
  border:1px solid #1e2a3a;border-radius:8px;
  padding:16px 22px;
  display:flex;align-items:center;justify-content:center;
  gap:18px;margin:24px 0 0;flex-wrap:wrap;
}
.wb-brand{font-size:15px;font-weight:900;color:#fff;background:#0a2a50;padding:7px 14px;border-radius:4px;white-space:nowrap;}
.wb-text-wrap{flex:1;min-width:160px;}
.wb-title{font-size:17px;font-weight:700;color:#fff;}
.wb-sub{font-size:11px;color:#6e7e90;}
.wb-amount{font-size:28px;font-weight:900;color:#fff;white-space:nowrap;}
.btn-getbonus{background:#27ae60;border:none;color:#fff;font-size:13px;font-weight:700;padding:10px 22px;border-radius:4px;text-decoration:none;white-space:nowrap;}
.btn-getbonus:hover{background:#219150;color:#fff;}

.glass-card {
  background: rgba(15, 23, 42, 0.6); /* dark transparent */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); /* Safari support */
  font-family: "Playfair Display", serif;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;

  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  padding: 24px;
  color: #fff;
}
.right-card{
  background: rgba(15, 23, 42, 0.6); /* dark transparent */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); /* Safari support */
  font-family: "Playfair Display", serif;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 24px;
  color: #fff;
}
.pages_sidebar{
   padding: 0;
  background: transparent;
  border: none;

  position: sticky;
  top: 20px; /* আপনার প্রয়োজন অনুযায়ী adjust করতে পারেন */
}


    .broker-cards {
      background: linear-gradient(145deg, #0b1220, #070d18);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.05);
      transition: all 0.3s ease;
      height: 100%;
    }

    .brokers-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    }

    .logo-box {
      background: rgba(255,255,255,0.05);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 18px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .logo-box img {
      max-height: 40px;
    }

    .broker-name {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .broker-info {
      font-size: 13px;
      color: #94a3b8;
      margin-bottom: 18px;
    }

    .btn-broker {
      border: 1px solid rgba(255,255,255,0.1);
      color: #e2e8f0;
      border-radius: 10px;
      padding: 8px 14px;
      font-size: 14px;
      width: 100%;
      background: transparent;
      transition: 0.3s;
    }

    .btn-broker:hover {
      background: rgba(255,255,255,0.08);
      color: #fff;
    }


    /* Main Section */
.forex-section {

    border-radius: 12px;
}

/* Tag */
.badge-custom {
    background: #f4b740;
    color: #000;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

/* Title */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 20px;
}

/* Meta */
.meta {
    margin-top: 20px;
    color: #9ca3af;
    font-size: 14px;
}

.meta span {
    margin-right: 15px;
}

/* Share box */
.share-box {
    background: #111827;
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-box .icon {
    width: 36px;
    height: 36px;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
}

/* Description */
.description-box {
    margin-top: 25px;
    background: #111827;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.description-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 4px;
    background: #f4b740;
    border-radius: 4px;
}

.description-text {
    margin-left: 15px;
    color: #d1d5db;
}

.right-images-card{
  display: flex;
  gap: 30px;
 
}
.right-images-card img{
 border-radius: 10px;

}

.news .pages_sidebar{
  top: 90px;
}

/* Card */
.single_broker-card {
    background: linear-gradient(180deg, #0b1628, #09101f);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Logo box */
.single_broker-logo-box {
    width: 120px;
    height: 80px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Title */
.single_broker-title {
    font-size: 28px;
    font-weight: 600;
}

/* Badge */
.single_broker-badge {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-left: 8px;
}

/* Subtitle */
.single_broker-subtitle {
    color: #9aa4b2;
    font-size: 14px;
}

/* Stars */
.single_broker-stars {
    color: #fbbf24;
    font-size: 18px;
}

/* Review */
.single_broker-review {
    color: #9aa4b2;
    font-size: 14px;
    margin-left: 5px;
}

/* Tag */
.single_broker-tag {
    background: #111827;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #9aa4b2;
    display: inline-block;
    margin-top: 10px;
}

/* Buttons */
.single_broker-btn-yellow {
    background: linear-gradient(90deg, hsl(45, 90%, 50%), hsl(50, 95%, 65%), hsl(45, 90%, 50%));
    box-shadow: 0 4px 15px hsla(45, 90%, 50%, 0.5);;
    color: #000;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 20px;
    border: none;
}

.single_broker-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 10px;
}

/* Responsive */
@media(max-width:768px){
    .single_broker-action-btns{
        margin-top:20px;
    }
}
/* Info Box */
.single_broker-info-box {
    background: linear-gradient(180deg, #0b1628, #09101f);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.single_broker-info-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255,193,7,0.3);
}

/* Icon */
.single_broker-icon {
    font-size: 22px;
    color: #fbbf24;
    margin-bottom: 10px;
}

/* Title */
.single_broker-info-title {
    font-size: 18px;
    font-weight: 600;
}

/* Sub text */
.single_broker-info-sub {
    font-size: 13px;
    color: #9aa4b2;
}