/* ============================================
   EXNESS TRADING VIP — MAIN STYLESHEET
   Color Palette: Yellow #FFE000, Black #1a1a1a, White #fff
   ============================================ */

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

:root {
  --yellow: #FFE000;
  --yellow-dark: #E6C800;
  --black: #1a1a1a;
  --black-pure: #000000;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e8e8e8;
  --gray-text: #666666;
  --gray-dark: #333333;
  --nav-height: 64px;
  --container: 1200px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

/* ——— RESET ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ——— CONTAINER ——— */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— UTILITY ——— */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin-top: 8px;
}
.text-center { text-align: center; }
.yellow { color: var(--yellow-dark); }
.bg-gray { background: var(--gray-light); }
.bg-dark { background: #2d2d2d; }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,224,0,0.4);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--black);
  color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.link-arrow {
  color: var(--yellow-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 10px; }
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 30px;
  margin-top: 20px;
  transition: all var(--transition);
}
.learn-more:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  height: var(--nav-height);
}
.navbar .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.logo-box {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--black);
  letter-spacing: -1px;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 20px;
}
.navbar-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 6px 10px;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--black);
  background: var(--gray-light);
}
.navbar-nav a.active { font-weight: 600; }
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  border-radius: 50%;
  transition: background var(--transition);
  font-size: 1rem;
}
.nav-icon:hover { background: var(--gray-light); }
.nav-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-phone span { font-size: 0.75rem; }
.nav-signin {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: color var(--transition);
}
.nav-signin:hover { color: var(--black); }
.nav-contact-btn {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-contact-btn:hover { background: var(--yellow-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  background: var(--gray-light);
  border-bottom: 1px solid #eee;
  font-size: 0.82rem;
  color: #888;
}
.breadcrumb a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--yellow); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,224,0,0.15), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { color: var(--white); }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,224,0,0.15);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,224,0,0.3);
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title span { color: var(--yellow); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
}
.stat-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }

.feature-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 360px;
}

/* Dark card for Exness Trade App */
.app-card {
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFE000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.app-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.app-card img {
  margin: 20px auto 0;
  border-radius: 10px;
  max-height: 280px;
  width: 100%;
  object-fit: cover;
}

/* Analytics section */
.analytics-section { background: var(--gray-light); }
.analytics-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.analytics-left { }
.analytics-section h2 { font-size: 1.9rem; font-weight: 800; text-align: center; margin-bottom: 40px; }
.check-list { display: flex; flex-direction: column; gap: 20px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.7rem;
  color: var(--black);
  font-weight: 800;
}
.check-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.check-item p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.5; }
.analytics-chart {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
  padding: 4px;
}
.analytics-chart img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { padding: 80px 0; }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; }
.faq-left p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-mid); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--yellow-dark); }
.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.7rem;
  color: var(--gray-text);
}
.faq-item.open .faq-chevron {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: rotate(180deg);
}
.faq-answer {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section { background: var(--gray-light); padding: 60px 0; }
.partners-section h2 { font-size: 1.8rem; font-weight: 800; text-align: center; }
.partners-section .subtitle {
  text-align: center;
  color: #444;
  font-size: 1.05rem;
  margin-top: 12px;
  margin-bottom: 12px;
}
.partners-link {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  transition: opacity var(--transition);
  letter-spacing: -0.5px;
}
.partner-item:hover { opacity: 0.6; }
.partner-item svg {
  height: 28px;
  width: auto;
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
}
.cta-content { 
  color: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.cta-content p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 30px;
}
.cta-content .btn {
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 1.05rem;
}
.cta-image {
  height: 100%;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
  .cta-image { height: 300px; }
  .cta-content { padding: 40px 30px; }
  .cta-content h2 { font-size: 2.2rem; }
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-header {
  padding: 50px 0;
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
}
.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 60px 0;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-mid);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.service-card-image {
  height: 200px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.service-card-body p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; }

/* Testimonial */
.testimonial-section { background: var(--gray-light); padding: 80px 0; }
.testimonial-wrapper {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.3rem;
  color: var(--black);
  font-weight: 900;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--black);
  margin-bottom: 24px;
}
.testimonial-author { }
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testimonial-author span { font-size: 0.82rem; color: var(--gray-text); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  transition: background var(--transition);
  cursor: pointer;
}
.dot.active { background: var(--black); }
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 -50px;
}
.tnav-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  margin: 0 -60px;
  transition: all var(--transition);
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.tnav-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-section { padding: 80px 0; }
.team-intro { text-align: center; margin-bottom: 50px; }
.team-intro p { color: var(--gray-text); font-size: 0.9rem; margin-top: 6px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-member { padding: 24px 0; border-bottom: 1px solid var(--gray-mid); }
.team-member:nth-child(1), .team-member:nth-child(2) { border-top: 1px solid var(--gray-mid); }
.team-member h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.team-member .role { font-size: 0.82rem; color: var(--gray-text); margin-bottom: 10px; font-style: italic; }
.team-member p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; }

.crypto-solutions {
  text-align: center;
  padding: 60px 0;
  background: var(--gray-light);
}
.crypto-solutions h2 {
  font-size: 2.2rem;
  font-weight: 900;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.2;
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.news-card-image {
  height: 200px;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-body { padding: 20px; }
.news-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow-dark);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.news-card-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.news-card-body p { font-size: 0.83rem; color: var(--gray-text); line-height: 1.5; }
.news-date { font-size: 0.78rem; color: var(--gray-text); margin-top: 12px; }

/* ============================================
   JOBS PAGE
   ============================================ */
.jobs-section { padding: 48px 0 80px; }
.jobs-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.jobs-header-bar h1 { font-size: 1.5rem; font-weight: 700; }
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.search-box input {
  border: none;
  outline: none;
  padding: 8px 14px;
  font-size: 0.88rem;
  width: 240px;
  font-family: inherit;
}
.search-box button {
  width: 38px;
  height: 38px;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: background var(--transition);
}
.search-box button:hover { background: var(--yellow); color: var(--black); }
.jobs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.no-jobs {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.9rem;
  padding: 40px 0;
}
.no-jobs a { font-weight: 700; color: var(--black); }
.no-jobs a:hover { text-decoration: underline; }
.jobs-sidebar {
  border-left: 1px solid var(--gray-mid);
  padding-left: 40px;
}
.jobs-sidebar p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 24px; }
.sidebar-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-dark);
  transition: color var(--transition);
}
.sidebar-link:hover { color: var(--black); }
.sidebar-link span { font-size: 1rem; }
.social-circles { display: flex; gap: 10px; margin-top: 8px; }
.social-circle {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-text);
  transition: all var(--transition);
}
.social-circle:hover { border-color: var(--black); color: var(--black); background: var(--gray-light); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 60px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; }
.contact-detail p, .contact-detail a {
  font-size: 0.85rem;
  color: var(--gray-text);
}
.contact-detail a:hover { color: var(--yellow-dark); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  border: 1px solid var(--gray-mid);
}
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--yellow);
}
.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================
   FOOTER
   ============================================ */
.footer-top {
  background: var(--gray-light);
  padding: 48px 0;
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr 1fr;
  gap: 40px;
}
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--gray-text); margin-bottom: 6px; }
.footer-col p { font-size: 0.9rem; color: var(--black); font-weight: 500; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--yellow-dark);
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 0.8; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray-text);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--black); color: var(--black); background: var(--gray-mid); }

.footer-bottom {
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-copyright { font-size: 0.82rem; color: var(--gray-text); }
.footer-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.82rem;
  color: var(--yellow-dark);
  transition: opacity var(--transition);
}
.footer-nav a:hover { opacity: 0.8; }
.footer-nav span { color: var(--gray-text); font-size: 0.8rem; }
.footer-powered {
  font-size: 0.78rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-powered a { color: #7c7e2a; font-weight: 600; font-size: 0.78rem; }

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.blob-yellow {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  opacity: 0.85;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
.blob-black {
  width: 60px;
  height: 80px;
  background: var(--black);
  border-radius: 50%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { 
    display: block; 
    margin-top: 40px; 
    width: 100%;
    order: 2; /* Move it below the text */
  }
  #tradingview_btc {
    height: 350px !important; /* Smaller height for mobile */
  }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid.reverse { direction: ltr; }
  .analytics-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-globe { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .jobs-inner { grid-template-columns: 1fr; }
  .jobs-sidebar { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-mid); padding-top: 32px; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
    padding: 12px 24px 20px;
    gap: 2px;
    z-index: 999;
  }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .hero-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .partner-logos { gap: 24px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 52px 0; }
  .hero { padding: 60px 0 50px; }
  .analytics-section h2 { font-size: 1.5rem; }
  .testimonial-nav .tnav-btn { margin: 0 -30px; }
  .jobs-header-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-top-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
}

/* ——— SCROLL ANIMATIONS ——— */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ——— CUSTOM SCROLLBAR ——— */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* ============================================
   PREMIUM FEATURES: TICKER, OVERLAY, SCROLL
   ============================================ */

/* Market Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  height: 36px;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-inner {
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.search-overlay.open .search-inner {
  transform: translateY(0);
}
.search-inner input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--yellow);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 12px 0;
  outline: none;
  font-family: inherit;
}
.search-inner input::placeholder {
  color: rgba(255,255,255,0.2);
}
.search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.search-close:hover {
  transform: rotate(90deg);
  color: var(--yellow);
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}
#backToTop:hover {
  background: #E6C800;
  transform: translateY(-4px);
}


/* Market Overview */
.market-table-container {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  padding: 10px;
}

/* Auth & Form Modernization */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fdfdfd;
}
input:focus, textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 224, 0, 0.1);
}
input::placeholder { color: #aaa; }

.social-btn {
  border: 1.5px solid #eee !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  height: 52px;
}
.social-btn:hover {
  background: #fafafa !important;
  border-color: #ddd !important;
}

/* News Fidelity */
.news-hero-card {
  display: flex;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
}
.news-hero-img { flex: 1.2; height: 400px; }
.news-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.news-hero-body { flex: 1; padding: 50px 60px; display: flex; flex-direction: column; justify-content: center; }
.news-hero-body h2 { font-size: 2.5rem; font-weight: 850; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.03em; }
.news-hero-body p { color: #555; font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.news-meta { font-size: 0.88rem; font-weight: 600; color: #999; display: flex; gap: 12px; }

.news-meta-small { font-size: 0.8rem; font-weight: 600; color: #aaa; margin-top: 14px; }

@media (max-width: 992px) {
  .news-hero-card { flex-direction: column; }
  .news-hero-img { height: 300px; }
  .news-hero-body { padding: 40px 30px; }
  .news-hero-body h2 { font-size: 1.8rem; }
}

/* ============================================
   INTERACTIVE TRADING PLATFORM
   ============================================ */
/* ============================================
   INTERACTIVE TRADING PLATFORM (LIGHT THEME)
   ============================================ */
.trading-platform-section { background: var(--white); }

.trading-container {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  margin-top: 40px;
}

.asset-switcher {
  display: flex;
  background: #f8f9fa;
  padding: 8px;
  gap: 8px;
  border-bottom: 1px solid #eee;
}

.asset-tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: #777;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.asset-tab:hover { color: #1a1a1a; background: rgba(0,0,0,0.03); }
.asset-tab.active { background: #1a1a1a; color: #FFE000; }
.asset-icon { font-size: 1.1rem; }

.trading-main { 
  display: flex; 
  flex-direction: row; 
  background: #121418;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.trading-chart { 
  flex: 1;
  height: 650px;
  position: relative;
  overflow: hidden;
  background: #121418;
}
#tradingview_chart_advanced {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.trading-panel {
  background: #ffffff;
  width: 380px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid #eee;
}

.panel-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.panel-label { font-size: 0.72rem; font-weight: 800; color: #E6C800; text-transform: uppercase; letter-spacing: 1px; }
.panel-asset-name { font-size: 1.4rem; font-weight: 900; color: #1a1a1a; }

.panel-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 14px;
}

.expiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.exp-btn {
  background: #f8f9fa;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 14px;
  color: #777;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.exp-btn small { color: #E6C800; font-size: 0.75rem; font-weight: 800; }
.exp-btn:hover { border-color: #ddd; background: #f0f0f0; }
.exp-btn.active { background: #1a1a1a; border-color: #1a1a1a; color: #FFE000; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.amount-header { display: flex; justify-content: space-between; align-items: baseline; }
.wallet-balance { font-size: 0.8rem; color: #888; font-weight: 600; }
.wallet-balance strong { color: #1a1a1a; font-weight: 800; }

.amount-input-wrap {
  position: relative;
  background: #f8f9fa;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 4px;
  transition: border-color 0.2s;
}
.amount-input-wrap:focus-within { border-color: #1a1a1a; }

.amount-input-wrap input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 16px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  outline: none;
}
.amount-input-wrap .currency {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #E6C800;
  font-size: 0.85rem;
}

.est-payout-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payout-label { color: #888; font-weight: 700; font-size: 0.85rem; }
.payout-value { color: #22c55e; font-weight: 900; font-size: 1.35rem; }

.trade-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.trade-btn {
  padding: 18px;
  border: none;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  letter-spacing: 1px;
}

.trade-btn.long {
  background: #22c55e;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}
.trade-btn.long:hover { background: #1eb052; box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4); transform: translateY(-2px); }

.trade-btn.short {
  background: #ef4444;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}
.trade-btn.short:hover { background: #dc3545; box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4); transform: translateY(-2px); }

.panel-disclaimer { font-size: 0.72rem; color: #555; line-height: 1.5; text-align: center; margin-top: auto; }

@media (max-width: 1100px) {
  .trading-main { grid-template-columns: 1fr; }
  .trading-panel { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
}

/* ============================================
   GLOBAL WALLET HUD & DASHBOARDS
   ============================================ */
.nav-wallet {
  display: flex;
  align-items: center;
  background: var(--gray-light);
  border: 1.5px solid transparent;
  padding: 8px 16px;
  border-radius: 12px;
  margin-right: 8px;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-wallet:hover { background: #fff; border-color: var(--yellow); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.nav-wallet-icon { font-size: 1.2rem; }
.nav-wallet-balance { display: flex; flex-direction: column; gap: 2px; }
.nav-wallet-label { font-size: 0.6rem; color: #888; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1; }
.nav-wallet-value { font-size: 0.9rem; color: var(--black); font-weight: 900; }

.dashboard-section { background: var(--white); padding: 80px 0; }
.dashboard-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-mid);
}

.portfolio-header { 
  background: linear-gradient(135deg, #121418 0%, #1a1d23 100%); 
  color: #fff;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.portfolio-header::after {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: var(--yellow);
  filter: blur(150px);
  opacity: 0.1;
  z-index: 0;
}

.portfolio-main-balance { position: relative; z-index: 1; }
.portfolio-main-balance span { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; color: var(--yellow); letter-spacing: 2px; }
.portfolio-main-balance h2 { font-size: 3.5rem; font-weight: 900; margin: 10px 0; letter-spacing: -1px; }

.asset-list { display: grid; gap: 20px; }
.asset-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: var(--gray-light);
  border-radius: 16px;
  transition: transform 0.3s;
}
.asset-item:hover { transform: translateX(5px); background: #f0f1f2; }
.asset-info { display: flex; align-items: center; gap: 20px; }
.asset-item-icon { width: 48px; height: 48px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.asset-details h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.asset-details p { font-size: 0.85rem; color: #888; font-weight: 600; }
.asset-market { text-align: right; }
.asset-market-value { font-size: 1.1rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.asset-market-change { font-size: 0.85rem; font-weight: 700; color: #22c55e; }
.asset-market-change.neg { color: #ef4444; }

/* ADMIN PANEL STYLES */
.admin-grid { display: grid; grid-template-columns: 350px 1fr; gap: 30px; }
.admin-sidebar { display: flex; flex-direction: column; gap: 20px; }
.admin-ctrl-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--gray-mid);
}
.admin-ctrl-card h3 { font-size: 0.9rem; text-transform: uppercase; color: #888; letter-spacing: 1px; margin-bottom: 20px; font-weight: 800; }

.outcome-selector { display: flex; flex-direction: column; gap: 12px; }
.outcome-btn {
  padding: 16px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.outcome-btn:hover { border-color: var(--yellow); }
.outcome-btn.active { border-color: var(--yellow); background: #fffdf0; box-shadow: 0 4px 15px rgba(255,224,0,0.1); }
.outcome-btn .status-dot { width: 10px; height: 10px; border-radius: 50%; }
.outcome-btn[data-val="win"] .status-dot { background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.outcome-btn[data-val="loss"] .status-dot { background: #ef4444; box-shadow: 0 0 10px #ef4444; }
.outcome-btn[data-val="random"] .status-dot { background: #3b82f6; box-shadow: 0 0 10px #3b82f6; }

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 16px; font-size: 0.8rem; text-transform: uppercase; color: #aaa; border-bottom: 1px solid var(--gray-mid); }
.admin-table td { padding: 20px 16px; font-weight: 700; color: var(--black); border-bottom: 1px solid #f0f1f2; }
.user-info { display: flex; align-items: center; gap: 12px; }
.user-avatar { width: 32px; height: 32px; background: var(--gray-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

.admin-status { padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 800; }
.admin-status.win { background: #def7ec; color: #03543f; }
.admin-status.loss { background: #fde8e8; color: #9b1c1c; }

@media (max-width: 991px) {
  .admin-grid { grid-template-columns: 1fr; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 30px; }
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 90%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #000;
}
.modal-body {
  padding: 30px;
}
.deposit-options { margin-bottom: 20px; }
.deposit-options label { display: block; font-size: 0.85rem; font-weight: 700; color: #555; margin-bottom: 10px; }
.network-select { display: flex; gap: 10px; }
.network-btn { flex: 1; padding: 12px; border: 2px solid #eee; border-radius: 10px; font-weight: 700; color: #888; transition: all 0.2s; }
.network-btn.active { border-color: var(--yellow); background: #fffdf0; color: #000; }
.deposit-address-box { margin-bottom: 20px; }
.deposit-address-box label { display: block; font-size: 0.85rem; font-weight: 700; color: #555; margin-bottom: 10px; }
.address-input-wrap { display: flex; gap: 10px; }
.address-input-wrap input { flex: 1; padding: 14px; border: 2px solid #eee; border-radius: 10px; font-family: monospace; font-size: 0.95rem; background: #fafafa; color: #000; outline: none; }
.address-input-wrap button { padding: 0 20px; background: #1a1a1a; color: #fff; border-radius: 10px; font-weight: 700; cursor: pointer; }
.deposit-hint { font-size: 0.75rem; color: #888; margin-top: 10px; }
.deposit-amount-input { margin-bottom: 20px; }
.deposit-amount-input label { display: block; font-size: 0.85rem; font-weight: 700; color: #555; margin-bottom: 10px; }
.deposit-amount-input input { width: 100%; padding: 14px; border: 2px solid #eee; border-radius: 10px; font-weight: 700; font-size: 1rem; outline: none; }

.withdraw-form .form-group { margin-bottom: 20px; }
.withdraw-form label { display: block; font-size: 0.85rem; font-weight: 700; color: #555; margin-bottom: 10px; }
.withdraw-form input, .withdraw-form select { width: 100%; padding: 14px; border: 2px solid #eee; border-radius: 10px; font-weight: 700; font-size: 1rem; background: #fff; outline: none; }
.input-suffix { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-weight: 800; color: #aaa; }
.balance-hint { font-size: 0.8rem; color: #888; margin-top: 10px; font-weight: 600; }

.w-100 { width: 100%; }
.contract-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.contract-detail-row span {
  color: #666;
}
.contract-detail-row strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* ——— PREMIUM TRADING MODAL (LIGHT THEME) ——— */
.trading-modal {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border: none !important;
  max-width: 460px !important;
  box-shadow: 0 10px 50px rgba(0,0,0,0.15) !important;
}
.trading-modal .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
}
.trading-modal .modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
}
.trading-modal .modal-close {
  color: #aaa;
}

.countdown-container {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  margin: 20px 0;
  border: 1px solid #eee;
}
.countdown-value {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: #1a1a1a;
  background: none;
  -webkit-text-fill-color: initial;
}
.countdown-status {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #999;
  font-weight: 700;
  text-transform: uppercase;
}

.trading-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 25px;
}
.trading-detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid #f5f5f5;
}
.trading-detail-item:last-child { border-bottom: none; }
.trading-detail-item .label {
  color: #777;
  font-size: 0.82rem;
}
.trading-detail-item .value {
  color: #1a1a1a;
  font-weight: 600;
}
.trading-detail-item .value.win { color: #22c55e; }
.trading-detail-item .value.loss { color: #ef4444; }

/* ==========================================================================
   PREMIUM PAGE STYLING (SHOP, SERVICES, NEWS, ABOUT, JOBS)
   ========================================================================== */

.section-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
  text-align: center;
}

.premium-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: #FFE000;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: #FFE000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f0f0f0;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.modal-overlay {
  background: rgba(0,0,0,0.6);
}
@media (max-width: 1100px) {
  .trading-main { flex-direction: column; }
  .trading-panel { width: 100%; border-left: none; border-top: 1px solid #eee; }
  .trading-chart { height: 450px; }
}
