/* =========================================
   GOLDFXCLUB - PREMIUM GLOBAL CSS
   ========================================= */

:root {
  --bg: #070707;
  --panel: #11110f;
  --panel2: #17150f;
  --gold: #d6b45a;
  --gold-light: #f0d477;
  --gold-dark: #8f7431;
  --text: #f6f2e8;
  --muted: #aaa59a;
  --border: #2d2920;
  --ok: #7ddc95;
  --danger: #ff8d8d;
}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 15%, rgba(214, 180, 90, 0.12), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(214, 180, 90, 0.05), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  width: 100%;
  min-height: 96px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.96);
  position: relative;
  z-index: 100;
}

.brand {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text);
  white-space: nowrap;
}

.brand span {
  color: var(--gold);
}

.nav nav,
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav nav a,
.nav-links a {
  color: #c8c2b8;
  font-size: 17px;
  font-weight: 600;
  transition: 0.25s ease;
}

.nav nav a:hover,
.nav-links a:hover {
  color: var(--gold-light);
}

.btn,
.nav .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 25px;
  border-radius: 11px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #080808 !important;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(214, 180, 90, 0.18);
}

/* =========================================
   PAGE / HERO
   ========================================= */

.page {
  width: min(1320px, 90%);
  margin: 0 auto;
  padding: 100px 0;
}

.hero {
  width: min(1320px, 90%);
  margin: 0 auto;
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(52px, 7vw, 94px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: var(--text);
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 20px;
}

h3 {
  font-size: 23px;
  line-height: 1.3;
}

.gold,
.gold-text {
  color: var(--gold);
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 25px;
  border-radius: 11px;
  border: 1px solid var(--border);
  color: var(--text);
  background: #111;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* =========================================
   CARDS
   ========================================= */

.card {
  background:
    linear-gradient(145deg, rgba(214,180,90,0.035), transparent 45%),
    rgba(14, 14, 12, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.card h3 {
  margin-bottom: 18px;
  color: var(--text);
}

.card p {
  color: var(--muted);
  font-size: 17px;
}

.card:hover {
  border-color: rgba(214, 180, 90, 0.45);
}

/* =========================================
   GRID
   ========================================= */

.grid {
  display: grid;
  gap: 24px;
  margin-top: 35px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* =========================================
   ECOSYSTEM / STATS
   ========================================= */

.ecosystem {
  padding: 38px;
}

.ecosystem-title {
  font-size: 28px;
  margin-bottom: 28px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row strong {
  color: var(--gold);
}

/* =========================================
   TABLE
   ========================================= */

.table-wrap {
  overflow-x: auto;
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: rgba(12, 12, 10, 0.92);
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--gold);
  background: #11100d;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

td {
  color: #d3cec3;
}

tr:last-child td {
  border-bottom: none;
}

/* =========================================
   FORMS
   ========================================= */

.form-card {
  max-width: 620px;
  margin: 30px auto 0;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #ddd7cb;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0c0c0b;
  color: var(--text);
  outline: none;
  font-size: 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 180, 90, 0.08);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  font: inherit;
}

/* =========================================
   BADGES / STATUS
   ========================================= */

.badge {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(214, 180, 90, 0.1);
  border: 1px solid rgba(214, 180, 90, 0.3);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
}

.success {
  color: var(--ok);
}

.danger {
  color: var(--danger);
}

.muted {
  color: var(--muted);
}

/* =========================================
   FAQ
   ========================================= */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  background: rgba(14, 14, 12, 0.92);
}

.faq-item h3 {
  margin-bottom: 14px;
}

.faq-item p {
  color: var(--muted);
}

/* =========================================
   MEMBERSHIP
   ========================================= */

.price {
  font-size: 45px;
  font-weight: 900;
  color: var(--gold);
  margin: 15px 0;
}

.feature-list {
  list-style: none;
  margin: 25px 0;
}

.feature-list li {
  padding: 11px 0;
  color: #ccc6ba;
  border-bottom: 1px solid var(--border);
}

.feature-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding: 90px 0;
  border-top: 1px solid rgba(45, 41, 32, 0.7);
}

.section-inner {
  width: min(1320px, 90%);
  margin: 0 auto;
}

/* =========================================
   FOOTER
   ========================================= */

footer,
.footer {
  border-top: 1px solid var(--border);
  padding: 38px 6%;
  color: var(--muted);
  text-align: center;
  background: rgba(5, 5, 5, 0.92);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links a:hover {
  color: var(--gold);
}

/* =========================================
   COPY TRADING / PERFORMANCE
   ========================================= */

.notice {
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  margin: 25px 0;
  background: rgba(214, 180, 90, 0.06);
  color: #c8c2b6;
  border-radius: 0 10px 10px 0;
}

.metric {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  margin-top: 10px;
}

.divider {
  height: 1px;
  width: 100%;
  background: var(--border);
  margin: 35px 0;
}

/* =========================================
   LOGIN / DASHBOARD
   ========================================= */

.auth-page {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.auth-box {
  width: min(480px, 100%);
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(14, 14, 12, 0.96);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.auth-box h1 {
  font-size: 42px;
  letter-spacing: -1px;
}

.dashboard {
  width: min(1400px, 92%);
  margin: auto;
  padding: 60px 0;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 950px) {

  .nav {
    padding: 20px 5%;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav nav,
  .nav-links {
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .grid.two,
  .grid.three,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(46px, 12vw, 70px);
  }
}

@media (max-width: 600px) {

  .brand {
    font-size: 23px;
  }

  .nav nav,
  .nav-links {
    gap: 12px;
  }

  .nav nav a,
  .nav-links a {
    font-size: 14px;
  }

  .page {
    width: 92%;
    padding: 65px 0;
  }

  .hero {
    width: 92%;
  }

  h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 18px;
  }

  .card {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .btn-secondary {
    width: 100%;
  }
}


/* =========================================
   GOLDFXCLUB HOMEPAGE FIX
   ========================================= */

/* HERO LAYOUT */

.hero{
  width:min(1400px,90%);
  margin:auto;
  min-height:650px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  align-items:center;
  gap:70px;
  padding:90px 0;
}

.hero > div:first-child{
  max-width:780px;
}

.hero h1{
  font-size:clamp(58px,6vw,88px);
  line-height:1.03;
  letter-spacing:-3px;
  margin:15px 0 25px;
}

.hero h1 span{
  color:#d6b45a;
}

.hero .lead{
  max-width:760px;
  font-size:20px;
  color:#aaa59a;
  line-height:1.65;
}


/* RIGHT ECOSYSTEM CARD */

.hero .card{
  padding:34px;
  border-radius:18px;
  background:
    linear-gradient(
      145deg,
      rgba(214,180,90,.04),
      rgba(10,10,10,.98)
    );
  border:1px solid #2d2920;
}

.hero .card h3{
  font-size:25px;
  margin:8px 0 25px;
  color:#f6f2e8;
}


/* IMPORTANT METRIC FIX */

.metric{
  display:flex !important;
  align-items:center;
  justify-content:space-between;
  gap:25px;

  padding:19px 0;
  margin:0;

  border-bottom:1px solid #2d2920;

  font-size:17px !important;
  font-weight:400 !important;
}

.metric:last-child{
  border-bottom:none;
}

.metric span{
  display:block;
  font-size:17px !important;
  font-weight:500 !important;
  color:#f0ece2 !important;
  line-height:1.4;
}

.metric strong{
  display:block;
  margin:0 !important;

  font-size:17px !important;
  font-weight:800 !important;
  line-height:1.4 !important;

  color:#d6b45a !important;

  text-align:right;
}


/* BUTTON AREA */

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
  margin-bottom:20px;
}

.actions .btn{
  padding:13px 22px;
  min-height:auto;
  font-size:15px;
}

.actions .btn.ghost{
  background:transparent;
  color:#d6b45a !important;
}


/* RISK TEXT */

.risk{
  margin-top:20px;
  font-size:13px;
  color:#817c73;
}


/* LOWER SECTIONS */

.section{
  width:min(1400px,90%);
  margin:auto;
  padding:80px 0;
}

.section h2{
  font-size:clamp(36px,4vw,55px);
  margin:8px 0 30px;
}

.grid.three{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.grid.three .card{
  min-height:250px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.grid.three .card h3{
  font-size:23px;
  margin-bottom:13px;
}

.grid.three .card p{
  flex:1;
  margin-bottom:24px;
  font-size:16px;
  line-height:1.65;
}


/* CTA SECTION */

.cta{
  padding:45px;
  border:1px solid #2d2920;
  border-radius:18px;
  background:
    linear-gradient(
      120deg,
      rgba(214,180,90,.08),
      rgba(8,8,8,.96)
    );
}

.cta h2{
  max-width:800px;
}


/* MOBILE */

@media(max-width:900px){

  .hero{
    grid-template-columns:1fr;
    gap:40px;
    padding:60px 0;
  }

  .hero h1{
    font-size:58px;
  }

  .grid.three{
    grid-template-columns:1fr;
  }

  .metric{
    font-size:16px !important;
  }

  .metric span,
  .metric strong{
    font-size:16px !important;
  }
}


@media(max-width:600px){

  .hero h1{
    font-size:45px;
    letter-spacing:-2px;
  }

  .hero .card{
    padding:24px;
  }

  .metric{
    gap:15px;
  }

  .actions{
    flex-direction:column;
  }

  .actions .btn{
    width:100%;
  }

  .cta{
    padding:28px;
  }
}
