* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-main: #18181A;
  --bg-surface: #252525;
  --bg-active: #2A1C0A;
  --color-accent: #F5B93E;
  --color-accent-alt: #D4A373;
  --color-cta: #28A745;
  --color-cta-hover: #32CD32;
  --text-primary: #FFFFFF;
  --text-muted: #9CA3AF;
  --border: rgba(245, 185, 62, 0.15);
  --glow: rgba(245, 185, 62, 0.25);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(245, 185, 62, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 185, 62, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(24, 24, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: translateY(-2px);
}
.logo img {
  height: 42px;
  filter: drop-shadow(0 0 10px var(--glow));
}
.logo-text {
  color: var(--color-accent);
}
.btn-cta {
  background: var(--color-cta);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.35);
  text-decoration: none;
  display: inline-block;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-cta:hover::before {
  width: 300px;
  height: 300px;
}
.btn-cta:hover {
  background: var(--color-cta-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
}
.btn-secondary {
  background: var(--bg-surface);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-secondary:hover {
  background: var(--bg-active);
  border-color: var(--color-accent-alt);
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(245, 185, 62, 0.2);
}
.link-bonus {
  background: none;
  border: none;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  box-shadow: none;
  border-radius: 0;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: color 0.2s;
}
.link-bonus:hover {
  background: transparent;
  transform: none;
  color: var(--color-accent-alt);
  text-decoration: underline;
  box-shadow: none;
}
.header-nav {
  display: flex;
  align-items: center;
}
.hero {
  position: relative;
  padding: 5rem 2rem 3rem;
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text-primary);
}
.hero-highlight {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-alt));
  border-radius: 2px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.content-card {
  background: var(--bg-surface);
  border-radius: 30px;
  padding: 3rem;
  margin: 3rem 0;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-alt), var(--color-accent));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.content-card:hover {
  border-color: rgba(245, 185, 62, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  color: var(--text-primary);
  position: relative;
  padding-left: 1.5rem;
}
h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-alt));
  border-radius: 3px;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--text-primary);
}
p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
ul, ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--text-muted);
}
li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
}
ul li::marker {
  color: var(--color-accent);
}
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 20px;
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-main);
}
th {
  background: linear-gradient(135deg, var(--bg-active), rgba(42, 28, 10, 0.8));
  color: var(--color-accent);
  font-weight: 700;
  padding: 1.25rem 1rem;
  text-align: left;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--border);
}
td {
  padding: 1.25rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
tr:last-child td {
  border-bottom: none;
}
tr {
  transition: background 0.2s ease;
}
tr:hover {
  background: rgba(245, 185, 62, 0.05);
}
td b {
  color: var(--text-primary);
  font-weight: 600;
}
footer {
  margin-top: 5rem;
  padding: 3rem 0 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-image {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.faq-question {
  cursor: pointer;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question h3 {
  margin: 0;
}
.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}
.faq-toggle.open {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}
.faq-answer p {
  padding: 1rem 0;
}
a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent-alt);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header-container {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .header-nav {
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-end;
    max-width: 100%;
  }
  .logo {
    font-size: 1.2rem;
  }
  .logo img {
    height: 36px;
  }
  .link-bonus {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    margin-right: 0.25rem;
  }
  .btn-cta,
  .btn-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .btn-secondary {
    margin-right: 0.35rem;
  }
  .container {
    padding: 0 1rem;
  }
  .hero {
    padding: 3rem 1rem 2rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .content-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  table {
    font-size: 0.85rem;
  }
  th, td {
    padding: 0.75rem 0.5rem;
  }
  .hero-image {
    margin: 1.5rem auto;
  }
}
