:root {
  --bg-main: #0c1c38;
  --bg-header: #08142b;
  --bg-card: #132a52;
  --border-color: #1f3f6e;
  --text-white: #ffffff;
  --text-main: #cadbf0;
  --text-muted: #7e9bb5;

  --red-accent: #e61c1c;
  --red-hover: #ff2a2a;
  --blue-accent: #0073e6;
  --blue-hover: #1a85f2;
  --green-accent: #5cb82a;
  --green-hover: #69c730;

  --font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --radius: 6px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 60px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

a {
  text-decoration: none;
  color: inherit;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

/* AUTHENTIC LOGO STYLING */
.brand-logo {
  display: inline-flex;
  align-items: center;
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -1px;
  user-select: none;
}

.brand-logo .logo-1x {
  color: #ffffff;
}

.brand-logo .logo-bet {
  color: #2196f3;
}

/* HEADER */
.top-header {
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-auth {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

/* GREEN BUTTON (REGISTRATION IN HEADER) */
.btn-green {
  background: linear-gradient(180deg, #62c72e 0%, #4ea820 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(92, 184, 42, 0.35);
}
.btn-green:hover {
  background: var(--green-hover);
}

/* BLUE BUTTON (LOGIN IN HEADER) */
.btn-blue {
  background: linear-gradient(180deg, #0080f6 0%, #005bb5 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 115, 230, 0.35);
}
.btn-blue:hover {
  background: var(--blue-hover);
}

/* RED BUTTON (FOR TEXT / BANNER CTAs) */
.btn-red {
  background: linear-gradient(180deg, #e61c1c 0%, #b80000 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(230, 28, 28, 0.4);
}
.btn-red:hover {
  background: linear-gradient(180deg, #ff2a2a 0%, #d10000 100%);
}

/* HERO BANNER (CENTERED, NO RIGHT GRAPHIC) */
.hero-banner {
  background: linear-gradient(135deg, #122850 0%, #0a1836 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 24px;
  margin: 24px 0 30px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-title {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
}

.hero-subtext {
  color: var(--text-main);
  font-size: 15px;
  margin: 0 auto 24px auto;
  max-width: 650px;
  line-height: 1.5;
  text-align: center;
}

/* ALL CONTENT HEADINGS CENTERED */
h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 32px 0 16px 0;
  line-height: 1.3;
  text-align: center;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--blue-accent);
  margin: 8px auto 0 auto;
}

p.paragraph {
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.7;
}

/* CHARACTERISTICS TABLE */
.char-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0 30px 0;
}

.char-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.char-table tr {
  border-bottom: 1px solid var(--border-color);
}

.char-table tr:last-child {
  border-bottom: none;
}

.char-table td {
  padding: 14px 20px;
}

.char-table td.label-td {
  color: #fff;
  font-weight: 700;
  width: 40%;
  background: rgba(255, 255, 255, 0.02);
}

.char-table td.val-td {
  color: var(--text-main);
}

/* CUSTOM LISTS */
.general-ul {
  list-style: none;
  margin: 14px 0 20px 0;
  padding: 0;
}

.general-ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.general-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--blue-accent);
  border-radius: 50%;
}

/* CTA BUTTON BOX (CENTERED) */
.cta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 28px 0;
}

.btn-large-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-large-cta:hover {
  transform: translateY(-2px);
}

/* FAQ CARDS WITH H3 QUESTIONS (NO "Q.") */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px 22px;
}

h3.faq-question {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.4;
}
.toggle {
  display: none;
}

.faq-answer {
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  margin-top: 50px;
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* STICKY BOTTOM BAR FOR MOBILE */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-header);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  z-index: 1000;
  display: none;
}

.mobile-sticky-inner {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-sticky-inner .btn-action {
  flex: 1;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }
  .char-table td.label-td {
    width: 50%;
  }
  .mobile-sticky-bar {
    display: block;
  }
}

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