/* === Dual Nest Full Premium Theme === */
:root {
  --blue: #003a8c;
  --blue-light: #0d6efd;
  --gold: #d4af37;
  --gray-dark: #1a1a1a;
  --gray-mid: #2e2e2e;
  --gray-light: #dcdcdc;
  --text: #eaeaea;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #0d1b2a, #1b263b 35%, #000000 90%);
  background-attachment: fixed;
  line-height: 1.7;
}

/* Header */
header {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  color: white;
  padding: 16px 0;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

/* Navigation */
nav a {
  color: #f0f0f0;
  margin: 0 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
nav a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
}

/* Hero Sections */
section {
  background: rgba(25,25,25,0.8);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 32px;
  margin: 28px auto;
  max-width: 950px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Headings */
h1, h2, h3 {
  color: var(--gold);
  margin-top: 20px;
  font-weight: 700;
}
h1 {
  text-shadow: 0 0 10px rgba(212,175,55,0.4);
}

/* Buttons */
button, .btn, a[href*="cash"], a[href*="offer"] {
  display: inline-block;
  background: var(--blue-light);
  color: white !important;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
button:hover, .btn:hover, a[href*="cash"]:hover, a[href*="offer"]:hover {
  background: var(--gold);
  color: var(--gray-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.6);
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--gray-mid), var(--gray-dark));
  color: #cccccc;
  text-align: center;
  padding: 18px 0;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
footer p {
  margin: 6px 0;


/* Logo image styling */
.logo {
  margin: 10px 0;
  text-align: center;
}

.logo img {
  height: 40px !important;   /* smaller height */
  width: auto !important;
  max-width: 180px !important;  /* keeps it from stretching */
  display: inline-block;
  margin: 0 auto;
  vertical-align: middle;
}
