/* ==========================================================================
   ULTIMATE TRADING - MODERN FINTECH DESIGN SYSTEM & INVESTMENT STYLES
   Dark Glassmorphism Theme with Modern Typography & Vibrant Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #070a13;
  --bg-secondary: #0d1322;
  --bg-tertiary: #131b2e;
  --bg-card: rgba(19, 27, 46, 0.75);
  --bg-card-hover: rgba(26, 37, 64, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(16, 185, 129, 0.3);
  
  --primary: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.25);
  --primary-dark: #059669;
  --secondary: #06b6d4;
  --accent: #3b82f6;
  --gold: #f59e0b;
  --danger: #ef4444;
  --danger-glow: rgba(239, 68, 68, 0.2);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(6, 182, 212, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #34d399;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

/* Container */
.tm-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Glass Card */
.tm-glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.tm-glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5), 0 0 25px rgba(16, 185, 129, 0.1);
  transform: translateY(-3px);
}

/* Badges & Pills */
.tm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.813rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tm-badge-primary {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tm-badge-secondary {
  background: rgba(6, 182, 212, 0.12);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.tm-badge-gold {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.tm-badge-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Pulsing Dot */
.tm-live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
  animation: tmPulse 1.8s infinite;
}

@keyframes tmPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Buttons & Interactive Elements */
.tm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.tm-btn i {
  transition: transform 0.25s ease;
}

.tm-btn:hover i {
  transform: translateX(2px);
}

.tm-btn:active {
  transform: scale(0.97);
}

.tm-btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tm-btn-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
}

.tm-btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tm-btn-outline:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.5);
  color: #34d399;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
  transform: translateY(-2px);
}

.tm-btn-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
  color: #ffffff;
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.35);
}

.tm-btn-cyan:hover {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.55);
  transform: translateY(-2px);
  color: #ffffff;
}

.tm-btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.tm-btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
  color: #ffffff;
}

.tm-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.tm-btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   TOP BAR & LIVE MARQUEE TICKER (RECENT INVESTMENTS)
   ========================================================================== */
.tm-top-bar {
  background: #04060c;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.825rem;
  padding: 6px 0;
  position: relative;
  z-index: 100;
}

.tm-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tm-ticker-container {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  position: relative;
}

.tm-ticker-label {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  white-space: nowrap;
  margin-right: 15px;
  z-index: 2;
}

.tm-ticker-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: tmMarquee 45s linear infinite;
}

.tm-ticker-track:hover {
  animation-play-state: paused;
}

.tm-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.tm-ticker-item strong {
  color: var(--text-main);
}

.tm-ticker-item .tm-amt-deposit {
  color: #34d399;
  font-weight: 700;
}

.tm-ticker-item .tm-amt-payout {
  color: #38bdf8;
  font-weight: 700;
}

@keyframes tmMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tm-top-quick-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
}

.tm-top-quick-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.tm-top-quick-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
.tm-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(7, 10, 19, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
}

.tm-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.tm-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.tm-logo-img {
  height: 42px;
  width: auto;
}

.tm-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tm-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tm-nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.tm-nav-link:hover, .tm-nav-link.active {
  color: #ffffff;
}

.tm-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.tm-nav-link:hover::after, .tm-nav-link.active::after {
  width: 100%;
}

.tm-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tm-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Nav Drawer */
.tm-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-glass);
  z-index: 1000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.tm-mobile-drawer.open {
  right: 0;
}

.tm-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.tm-drawer-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tm-mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tm-mobile-link:hover, .tm-mobile-link.active {
  color: var(--primary);
  padding-left: 6px;
}

.tm-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tm-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION & 3D GLOBE CAROUSEL
   ========================================================================== */
.tm-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: var(--bg-dark);
  perspective: 1600px;
  perspective-origin: 50% 50%;
}

/* 3D Rotating Globe Background Container */
.tm-globe-canvas-wrap {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.65;
  filter: drop-shadow(0 0 45px rgba(16, 185, 129, 0.25));
  transition: opacity 0.5s ease;
}

.tm-hero-globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* 3D Glowing Orbitals around Globe */
.tm-globe-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(16, 185, 129, 0.3);
  pointer-events: none;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.tm-globe-orbit-1 {
  width: 620px;
  height: 620px;
  margin: -310px 0 0 -310px;
  transform: rotateX(65deg) rotateY(-15deg);
  border-color: rgba(6, 182, 212, 0.35);
  animation: tmOrbitSpin1 24s linear infinite;
}

.tm-globe-orbit-2 {
  width: 780px;
  height: 780px;
  margin: -390px 0 0 -390px;
  transform: rotateX(72deg) rotateY(25deg);
  border-color: rgba(16, 185, 129, 0.25);
  animation: tmOrbitSpin2 36s linear infinite reverse;
}

.tm-globe-orbit-3 {
  width: 900px;
  height: 900px;
  margin: -450px 0 0 -450px;
  transform: rotateX(55deg) rotateY(45deg);
  border-color: rgba(245, 158, 11, 0.2);
  animation: tmOrbitSpin1 48s linear infinite;
}

@keyframes tmOrbitSpin1 {
  from { transform: rotateX(65deg) rotateZ(0deg); }
  to { transform: rotateX(65deg) rotateZ(360deg); }
}

@keyframes tmOrbitSpin2 {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to { transform: rotateX(72deg) rotateZ(360deg); }
}

.tm-hero-carousel {
  position: relative;
  width: 100%;
  min-height: 680px;
  transform-style: preserve-3d;
}

/* 3D Globe-Like Cylindrical Slide Transitions */
.tm-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: perspective(1400px) rotateY(60deg) translateZ(120px) scale(0.9);
  transition: opacity 0.95s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1.05s cubic-bezier(0.25, 1, 0.5, 1), 
              filter 0.95s ease, 
              visibility 0.95s;
  filter: blur(8px) brightness(0.6);
  display: flex;
  align-items: center;
  padding: 70px 0 60px;
  transform-origin: center center;
}

.tm-hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: perspective(1400px) rotateY(0deg) translateZ(0) scale(1);
  filter: blur(0) brightness(1);
  position: relative;
  z-index: 4;
}

.tm-hero-slide.prev-slide {
  transform: perspective(1400px) rotateY(-60deg) translateZ(120px) scale(0.9);
  opacity: 0;
  filter: blur(8px) brightness(0.6);
}

.tm-hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.55) saturate(1.2);
  transition: transform 1.2s ease-out;
}

.tm-hero-slide.active .tm-hero-slide-bg {
  transform: scale(1.03);
}

.tm-hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(7, 10, 19, 0.96) 0%,
    rgba(7, 10, 19, 0.82) 48%,
    rgba(7, 10, 19, 0.65) 100%
  );
  z-index: 2;
}

.tm-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 4;
}

.tm-hero-content {
  position: relative;
  z-index: 4;
}

.tm-hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  margin: 18px 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.tm-gradient-text {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tm-hero-desc {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.tm-hero-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.tm-hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 10, 19, 0.75);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.tm-hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.55);
  transform: scale(1.1);
}

.tm-hero-dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.tm-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.35s ease;
}

.tm-hero-dot.active {
  width: 34px;
  border-radius: 9999px;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.7);
}
  line-height: 1.7;
}

.tm-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tm-hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
}

.tm-stat-item h3 {
  font-size: 1.8rem;
  color: var(--text-main);
  font-weight: 800;
}

.tm-stat-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero Widget / Live Stream Card */
.tm-hero-widget-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(16, 185, 129, 0.1);
  position: relative;
}

.tm-hero-widget-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(6, 182, 212, 0.1), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ==========================================================================
   LIVE RECENT INVESTMENTS & PAYOUTS SECTION
   ========================================================================== */
.tm-section {
  padding: 90px 0;
  position: relative;
}

.tm-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.tm-section-header h2 {
  font-size: 2.5rem;
  margin: 12px 0;
  letter-spacing: -0.02em;
}

.tm-section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Tab Switcher */
.tm-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.tm-tabs-nav {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: 9999px;
  border: 1px solid var(--border-glass);
  gap: 4px;
}

.tm-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tm-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Live Transactions Table */
.tm-tx-table-container {
  overflow-x: auto;
}

.tm-tx-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.tm-tx-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
}

.tm-tx-table tbody tr {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.tm-tx-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.tm-tx-table td {
  padding: 16px 20px;
  color: var(--text-main);
  font-size: 0.925rem;
  vertical-align: middle;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.tm-tx-table td:first-child {
  border-left: 1px solid var(--border-glass);
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
}

.tm-tx-table td:last-child {
  border-right: 1px solid var(--border-glass);
  border-top-right-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

.tm-user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #34d399;
}

.tm-user-name {
  font-weight: 600;
  color: var(--text-main);
}

.tm-user-country {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.tm-tx-hash {
  font-family: monospace;
  font-size: 0.825rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 8px;
  border-radius: 4px;
}

.tm-tx-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Row highlight animation for live newly added transactions */
.tm-row-new {
  animation: tmRowHighlight 2s ease-out;
}

@keyframes tmRowHighlight {
  0% {
    background-color: rgba(16, 185, 129, 0.25);
    transform: scale(1.01);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.025);
    transform: scale(1);
  }
}

/* ==========================================================================
   INVESTMENT PACKAGES / PLANS
   ========================================================================== */
.tm-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tm-plan-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.tm-plan-card.featured {
  background: linear-gradient(180deg, rgba(26, 38, 66, 0.9) 0%, rgba(13, 19, 34, 0.95) 100%);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.2);
  transform: translateY(-8px);
}

.tm-plan-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.tm-plan-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
}

.tm-plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tm-plan-roi {
  font-size: 2.8rem;
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  margin: 12px 0 6px;
}

.tm-plan-roi-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.tm-plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.tm-plan-feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tm-plan-feature-item strong {
  color: var(--text-main);
}

/* ==========================================================================
   INTERACTIVE PROFIT & ROI CALCULATOR
   ========================================================================== */
.tm-calc-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.tm-calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.tm-calc-form-group {
  margin-bottom: 24px;
}

.tm-calc-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.tm-calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.tm-calc-currency {
  position: absolute;
  left: 16px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.tm-calc-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 38px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  outline: none;
  transition: var(--transition);
}

.tm-calc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.tm-calc-range {
  width: 100%;
  margin-top: 14px;
  accent-color: var(--primary);
  height: 6px;
  border-radius: 4px;
  cursor: pointer;
}

.tm-quick-amount-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tm-quick-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.tm-quick-chip:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--primary);
  color: #34d399;
}

.tm-plan-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tm-plan-select-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 6px;
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.tm-plan-select-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.tm-plan-select-btn.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--primary);
  color: #34d399;
}

/* Calculator Result Card */
.tm-calc-result-box {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.tm-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tm-result-item:last-child {
  border-bottom: none;
}

.tm-result-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tm-result-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.tm-result-total {
  font-size: 1.8rem;
  color: #34d399;
}

/* ==========================================================================
   FEATURES, SECURITY & WHY CHOOSE US
   ========================================================================== */
.tm-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.tm-feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.tm-feature-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.tm-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.tm-feature-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.tm-feature-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   PAGE HERO FOR INNER PAGES
   ========================================================================== */
.tm-page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, rgba(13, 19, 34, 0.8) 0%, rgba(7, 10, 19, 1) 100%);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
}

.tm-page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.tm-page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.tm-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 18px;
}

.tm-breadcrumb a {
  color: var(--text-muted);
}

.tm-breadcrumb a:hover {
  color: var(--primary);
}

/* ==========================================================================
   LIVE ACTIVITY TOAST NOTIFICATION (BOTTOM CORNER)
   ========================================================================== */
.tm-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  pointer-events: none;
}

.tm-toast {
  background: rgba(13, 19, 34, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.15);
  max-width: 380px;
  pointer-events: auto;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tm-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.tm-toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tm-toast-body {
  flex: 1;
}

.tm-toast-title {
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.35;
}

.tm-toast-title strong {
  color: #34d399;
}

.tm-toast-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 3px;
}

.tm-toast-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  align-self: flex-start;
  transition: var(--transition);
}

.tm-toast-close:hover {
  color: var(--text-main);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.tm-footer {
  background: #04070f;
  border-top: 1px solid var(--border-glass);
  padding: 70px 0 30px;
  position: relative;
}

.tm-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.tm-footer-brand p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin: 16px 0 24px;
  max-width: 320px;
}

.tm-footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.tm-footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tm-footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.tm-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.tm-disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ==========================================================================
   LIVE RECENT PAYOUTS & ENHANCED INTERACTIVE ELEMENTS
   ========================================================================== */

/* Hero Live Payout Rotating Card */
.tm-hero-payout-box {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tm-hero-payout-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.35);
}

.tm-hero-payout-content {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.tm-hero-payout-content.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.tm-hero-payout-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Live Ledger Top Stats Banner */
.tm-ledger-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.tm-ledger-stat-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.tm-ledger-stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.tm-stat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tm-stat-icon-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tm-stat-icon-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.tm-stat-icon-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.tm-stat-icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.tm-stat-info-title {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.tm-stat-info-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 2px;
}

/* Gateway Badges in Live Ledger */
.tm-gw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.tm-gw-btc {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}

.tm-gw-usdt {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}

.tm-gw-eth {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border-color: rgba(99, 102, 241, 0.3);
}

.tm-gw-bank {
  background: rgba(6, 182, 212, 0.12);
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.3);
}

/* Copy TX Hash Button */
.tm-tx-hash-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tm-copy-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  transition: var(--transition);
}

.tm-copy-btn:hover {
  color: var(--primary);
  background: rgba(16, 185, 129, 0.1);
}

.tm-copy-btn.copied {
  color: #34d399;
}

/* Calculator Quick Amount Chips */
.tm-quick-amount-wrap {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.tm-quick-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
}

.tm-quick-chip:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
  transform: translateY(-1px);
}

/* Social Buttons in Footer */
.tm-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.tm-social-btn:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

/* Floating Back To Top Button */
.tm-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.tm-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tm-back-to-top:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
  color: #ffffff;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS PAGE STYLES
   ========================================================================== */
.tm-reviews-stats-card {
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.8) 0%, rgba(13, 19, 34, 0.9) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 35px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.tm-review-score-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tm-review-big-num {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.tm-reviews-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tm-review-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
}

.tm-review-filter-btn:hover, .tm-review-filter-btn.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--primary);
  color: #34d399;
}

.tm-reviews-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.tm-review-card-item {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tm-review-card-item:hover {
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.12);
}

.tm-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.tm-review-avatar-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #34d399;
  flex-shrink: 0;
}

.tm-review-author {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

.tm-review-date {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.tm-review-stars {
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.tm-review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.tm-review-reply {
  background: rgba(16, 185, 129, 0.04);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.tm-review-reply-title {
  color: #34d399;
  font-weight: 700;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   AWARDS & FEATURES RESPONSIVE CLASSES (BASE)
   ========================================================================== */
.tm-awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: center;
  text-align: center;
}

.tm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

/* ==========================================================================
   FOREX CAROUSEL SHOWCASE COMPONENT (BASE)
   ========================================================================== */
.tm-forex-carousel-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(16, 185, 129, 0.1);
  background: var(--bg-card);
}

.tm-forex-carousel {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}

.tm-forex-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out, visibility 0.8s;
  transform: scale(1.03);
  display: flex;
  align-items: flex-end;
}

.tm-forex-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.tm-forex-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.85);
}

.tm-forex-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 19, 0.3) 0%,
    rgba(7, 10, 19, 0.65) 45%,
    rgba(7, 10, 19, 0.95) 100%
  );
  z-index: 2;
}

.tm-forex-slide-content {
  position: relative;
  z-index: 3;
  padding: 45px;
  max-width: 780px;
  width: 100%;
}

.tm-forex-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  backdrop-filter: blur(10px);
}

.tm-forex-slide-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.tm-forex-slide-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.tm-forex-slide-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tm-forex-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 19, 34, 0.75);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}

.tm-forex-stat-pill i {
  color: var(--primary);
}

.tm-forex-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(7, 10, 19, 0.7);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.tm-forex-carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.tm-forex-carousel-btn.prev {
  left: 20px;
}

.tm-forex-carousel-btn.next {
  right: 20px;
}

.tm-forex-dots {
  position: absolute;
  bottom: 24px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.tm-forex-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tm-forex-dot.active {
  width: 32px;
  border-radius: 9999px;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

/* ==========================================================================
   CONSOLIDATED RESPONSIVE MEDIA QUERIES (AT THE VERY BOTTOM)
   ========================================================================== */
@media (max-width: 1024px) {
  .tm-hero-grid, .tm-calc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tm-hero-title {
    font-size: 2.8rem;
  }
  .tm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tm-ledger-stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .tm-globe-canvas-wrap {
    width: 540px;
    height: 540px;
    right: -10%;
    opacity: 0.45;
  }
}

@media (max-width: 768px) {
  .tm-top-bar {
    padding: 6px 0;
    overflow: hidden;
  }
  .tm-top-quick-links {
    display: none !important;
  }
  .tm-top-bar-inner {
    justify-content: center;
    gap: 0;
    width: 100%;
  }
  .tm-ticker-container {
    width: 100%;
    overflow: hidden;
  }
  .tm-ticker-label {
    font-size: 0.7rem;
    padding: 2px 8px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  .tm-nav-menu, .tm-nav-actions .tm-btn:not(.tm-btn-primary) {
    display: none;
  }
  .tm-mobile-toggle {
    display: block;
  }
  .tm-hero {
    min-height: auto;
    padding: 0;
    overflow: hidden;
  }
  .tm-hero-carousel {
    min-height: auto;
    width: 100%;
    overflow: hidden;
  }
  .tm-hero-slide {
    position: absolute;
    width: 100%;
    min-height: 100%;
    padding: 35px 0 65px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
  }
  .tm-hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .tm-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
  }
  .tm-hero-title {
    font-size: clamp(1.9rem, 6.8vw, 2.35rem);
    line-height: 1.2;
    margin: 12px 0 16px;
  }
  .tm-hero-desc {
    font-size: clamp(0.92rem, 3.6vw, 1.05rem);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .tm-hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }
  .tm-hero-btns .tm-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    justify-content: center;
    padding: 8px 6px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    gap: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .tm-hero-btns .tm-btn i {
    font-size: 0.72rem;
  }
  .tm-hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 24px;
    padding: 12px 8px;
    background: rgba(13, 19, 34, 0.65);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
  }
  .tm-stat-item {
    text-align: center;
  }
  .tm-stat-item h3 {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  .tm-stat-item p {
    font-size: 0.72rem;
  }
  .tm-hero-widget-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
  }
  .tm-hero-widget-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .tm-hero-controls {
    display: none;
  }
  .tm-hero-dots-container {
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
  }
  .tm-hero-dot {
    width: 10px;
    height: 10px;
  }
  .tm-hero-dot.active {
    width: 28px;
  }
  .tm-globe-canvas-wrap {
    width: 320px;
    height: 320px;
    left: 50%;
    right: auto;
    top: 28%;
    transform: translate(-50%, -50%);
    opacity: 0.28;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.25));
  }
  .tm-globe-orbit-1 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
  }
  .tm-globe-orbit-2 {
    width: 350px;
    height: 350px;
    margin: -175px 0 0 -175px;
  }
  .tm-globe-orbit-3 {
    width: 410px;
    height: 410px;
    margin: -205px 0 0 -205px;
  }
  .tm-section {
    padding: 45px 0;
  }
  .tm-calc-card {
    padding: 22px 14px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .tm-calc-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100%;
  }
  .tm-calc-inputs,
  .tm-calc-results {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .tm-calc-result-box {
    padding: 20px 14px;
    width: 100%;
    min-width: 0;
    border-radius: var(--radius-md);
  }
  .tm-calc-label {
    flex-wrap: wrap;
    gap: 4px;
  }
  .tm-plan-select-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100%;
  }
  .tm-plan-select-btn {
    padding: 10px 4px;
    font-size: 0.8rem;
    width: 100%;
  }
  .tm-quick-amount-wrap {
    gap: 6px;
    margin-top: 10px;
    width: 100%;
  }
  .tm-quick-chip {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  .tm-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tm-glass-card {
    padding: 24px 16px !important;
  }
  .tm-ledger-stats-banner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tm-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tm-awards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .tm-features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .tm-toast-container {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .tm-toast {
    max-width: 100%;
  }
  .tm-forex-carousel {
    min-height: 480px;
  }
  .tm-forex-slide-content {
    padding: 24px 20px 60px;
  }
  .tm-forex-slide-title {
    font-size: 1.6rem;
  }
  .tm-forex-slide-desc {
    font-size: 0.92rem;
  }
  .tm-forex-carousel-btn {
    display: none;
  }
  .tm-forex-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .tm-hero-title {
    font-size: 1.8rem;
  }
  .tm-stat-item h3 {
    font-size: 1.05rem;
  }
  .tm-stat-item p {
    font-size: 0.68rem;
  }
  .tm-globe-canvas-wrap {
    width: 270px;
    height: 270px;
  }
  .tm-plan-select-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }
  .tm-plan-select-btn {
    font-size: 0.75rem;
    padding: 8px 3px;
  }
  .tm-calc-input {
    font-size: 1.1rem;
    padding: 12px 14px 12px 34px;
  }
  .tm-calc-card {
    padding: 18px 12px;
  }
}

