:root {
  /* Primary Colors */
  --primary-color: #4962dd;
  --primary-hover: #4059d4;
  /* --primary-gradient: linear-gradient(90deg, #24EE89 0%, #9FE871 100%); */

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #B5B9C2;
  --text-muted: #7F8696;
  --text-on-primary: #FFFFFF;
  --text-on-secondary: #FFFFFF;
  --text-light: #FFFFFF;

  /* Background Colors */
  --bg-body: #08070a;
  --bg-dark: #212025;
  --bg-darker: #212025;
  --bg-table: #212025;

  /* Accent Colors */
  --accent-blue: #3461FF;
  --accent-purple: #7A33FF;
  --accent-green: #23EE88;
  --accent-red: #FF4444;

  /* Border Colors */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);

  /* Shadow Colors */
  --shadow-color: rgba(0, 0, 0, 0.2);
  --shadow-color-dark: rgba(0, 0, 0, 0.3);
  --shadow-color-darker: rgba(0, 0, 0, 0.4);

  /* Layout */
  --header-height: 77px;
  --scroll-offset: 20px;
  --scroll-padding: calc(var(--header-height) + var(--scroll-offset));

  /* Button Variables */
  --tab-color-1: #12171d;
  --tab-color-text: #ffffff;
  --tab-border-radius: 8px;
  --tab-height: 48px;
  --tab-padding-x: 24px;
  --tab-padding-y: 12px;

  /* Primary Button Variables */
  --primary-button--bg-color: #4962dd;
  --primary-button--box-shadow: none;
  --primary-button--hover-bg-color: #4059d4;
  --primary-button--font-weight: 600;
  --primary-button--color: var(--text-on-primary);
  --primary-button--transition: all 0.2s ease;

  --button-padding: 1rem;
  --button-radius: 0.375rem;
  /* equivalent to radius-md */
  --button-display: flex;
  --button-align: center;
  --button-justify: center;
  --button-user-select: none;

  /* Update Button Variables */
  --button-hover-brightness: brightness(1.05);
  --button-transition: all 0.2s ease;
  --button-height: 48px;
}


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

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Regular link styles */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-color);
  /* Using primary color for hover */
  text-decoration: underline;
}

section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Button styles */
.button {
  display: var(--button-display);
  align-items: var(--button-align);
  justify-content: var(--button-justify);
  height: var(--button-height);
  padding-top: var(--button-padding/2);
  padding-bottom: var(--button-padding/2);
  padding-left: var(--button-padding);
  padding-right: var(--button-padding);
  cursor: pointer;
  border-radius: var(--button-radius);
  user-select: var(--button-user-select);
  font-size: 16px;
  font-weight: 400;
  gap: 8px;
  transition: .3s;
  text-decoration: none;
  position: relative;
  background-color: var(--bg-dark);
  border: none;
  color: var(--text-primary);
}

.button:hover {
  text-decoration: underline;
}

/* Primary Button */
.button-primary {
  font-weight: var(--primary-button--font-weight);
  background-color: var(--primary-button--bg-color);
  box-shadow: var(--primary-button--box-shadow);
  color: var(--primary-button--color);
  height: var(--button-height);
  transition: var(--button-transition);
}

.button-primary::after {
  display: none;
}

.button-primary:hover {
  background-color: var(--primary-button--hover-bg-color);
  color: var(--text-on-primary);
}

@media (hover: hover) and (pointer: fine) {
  .button-primary:hover:not(:disabled) {
    filter: var(--button-hover-brightness);
  }
}

.button-primary:active:not(:disabled),
.button-secondary:active:not(:disabled) {
  transform: translateY(1px);
}

.button-primary:disabled,
.button-secondary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  filter: grayscale(30%);
}

/* Secondary Button */
.button-secondary {
  font-weight: 700;
  background: #34303c;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  height: var(--button-height);
  transition: var(--button-transition);
}

.button-secondary::after {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .button-secondary:hover:not(:disabled) {
    filter: var(--button-hover-brightness);
  }
}

.button-secondary:hover {
  background: #34303c;
  color: var(--text-on-secondary);
}

.card {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.table-of-contents {
  background: var(--bg-table);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px 30px;
  margin: 2.5rem 0;
  color: var(--text-primary);
  box-shadow: 0 4px 6px var(--shadow-color-darker);
}

.table-of-contents h2 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.5em;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 2rem;
}

.table-of-contents li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  break-inside: avoid;
}

.table-of-contents li:before {
  content: "»";
  color: var(--accent-blue);
  position: absolute;
  left: 0;
}

.table-of-contents a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
}

.table-of-contents a:hover {
  color: var(--primary-color);
  transform: translateX(8px);
}

.header .header-items__list {
  font-size: 14px;
  display: flex;
  gap: 20px;
  list-style: none;
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

  :root {
    --header-height: 65px;
  }

  section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .hero-container {
    border-radius: 0;
  }

  .hero-container::after {
    border-radius: 0;
  }

  .hero-image {
    height: 300px;
    border-radius: 0;
  }

  .hero-content {
    padding: 1rem;
  }

  .table-wrapper {
    margin: 1rem -1rem;
    border-radius: 0;
  }

  .table-of-contents {
    margin: 1.5rem 0;
    padding: 15px 20px;
    border-radius: 8px;
  }

  .table-of-contents ul {
    column-count: 1;
  }

  .table-of-contents li {
    margin: 12px 0;
  }

  .table-of-contents a {
    font-size: 0.95rem;
  }

  /* Keep border radius on mobile */
  section,
  .table-of-contents,
  .hero-container,
  .accordion-item {
    border-radius: 8px !important;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .main {
    padding: 1rem 0;
  }

  .table-wrapper,
  .hero-container {
    width: 100%;
  }

  .hero-image {
    height: 250px;
  }

  .hero-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }

  .hero-bonus {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .payment-info th,
  .payment-info td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

.nav {
  padding: 1rem 0;
  background-color: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.header {
  background-color: var(--bg-darker);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 45px;
  width: auto;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

@media (max-width: 992px) {
  .nav-toggle-label {
    display: flex;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background-color: var(--bg-body);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px var(--shadow-color);
    z-index: 1000;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header-buttons {
    width: 100%;
    gap: 1rem;
    margin-top: 2rem;
  }

  .nav-toggle:checked~.nav-wrapper {
    right: 0;
  }

  /* Hamburger to X animation */
  .nav-toggle:checked~.nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked~.nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked~.nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-toggle:checked~.nav-wrapper {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link::after {
    display: none;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .nav-wrapper {
    width: 100%;
  }
}

.nav-link {
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons {
  display: flex;
  width: 100%;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
}

.main {
  padding: 2rem 0;
  min-height: calc(100vh - 300px);
}

.footer {
  background-color: var(--bg-darker);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-radius: 12px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-section:first-child {
  flex-shrink: 0;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badges img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.footer-bottom {
  padding-top: 1.5rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .main-nav {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-badges {
    gap: 0.5rem;
  }

  .footer-badges img {
    height: 45px;
  }
}

.content-table {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.content-table h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.content-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-table li {
  margin-bottom: 0.8rem;
}

.content-table a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.3rem 0;
}

.content-table a:hover {
  color: var(--primary-color);
  transform: translateX(8px);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--bg-dark);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--bg-darker);
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background-color: var(--bg-darker);
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  th,
  td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .content-table {
    padding: 1rem;
  }
}

.content-table__table {
  margin-top: 3rem;
}

.content-table__head {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.content-table__wrap {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.main-button {
  display: inline-block;
  padding: 12px 15px;
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  border: none;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  min-width: 120px;
}

.main-button:hover {
  color: var(--text-on-secondary);
  background-color: var(--primary-hover);
  text-decoration: none;
}

ul,
ol {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

ul:not(.footer-links):not(.content-table ul) {
  list-style: none;
}

ul:not(.footer-links):not(.content-table ul) li {
  position: relative;
  padding-left: 1.5rem;
}

ul:not(.footer-links):not(.content-table ul) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.pros-cons ul {
  list-style: none;
  padding-left: 0;
}

.pros-cons li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.pros-cons li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
}

.pros-cons li.con::before {
  content: '×';
  color: var(--accent-red);
}

.faq-section h2 {
  margin-bottom: 2rem;
}

.faq-section p:nth-child(odd):not(:first-child) {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faq-section p:nth-child(even) {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--primary-color);
}

@media (max-width: 768px) {

  ul,
  ol {
    padding-left: 1rem;
  }

  .faq-section p:nth-child(even) {
    padding-left: 1rem;
  }
}

.content-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-table li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.content-table li:hover {
  transform: translateX(8px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(8px);
}

.main-section picture {
  display: block;
  width: 100%;
  margin-bottom: 4rem;
}

.main-section picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.main-section__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: start;
}

.main-section__description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: start;
}

@media (min-width: 640px) {
  .hero-container {
    margin: 0;
    aspect-ratio: 4.6;
    padding: 4rem 2rem;
    flex-direction: row;
  }

  .hero-logo {
    position: absolute;
    top: 0;
    left: 1.5%;
    height: 96%;
    margin-bottom: 0;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-buttons .button {
    width: auto;
  }

  .main-section__title {
    font-size: 2rem;
  }

  .main-section__description {
    font-size: 1.25rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-section picture img {
    border-radius: 4px;
  }

  .main-section__description {
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
  }
}

.payment-info {
  margin: 3rem 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
}

.payment-info table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.9rem;
}

.payment-info th {
  background-color: var(--bg-darker);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--primary-color);
}

.payment-info td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.payment-info tr:last-child td {
  border-bottom: none;
}

.payment-info tr:hover {
  background-color: var(--bg-darker);
}

.payment-notes {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.payment-notes p {
  margin-bottom: 1rem;
}

.payment-notes p:last-child {
  margin-bottom: 0;
}

.payment-notes strong {
  color: var(--primary-color);
}

@media (max-width: 768px) {

  .payment-info th,
  .payment-info td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .payment-notes {
    padding: 1rem;
  }
}

.info-section {
  margin: 3rem 0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pros-cons h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.pros ul,
.cons ul {
  margin-bottom: 0;
}

.pros li::before {
  content: '✓';
  color: var(--accent-green);
}

.cons li::before {
  content: '×';
  color: var(--accent-red);
}

.hero-container {
  position: relative;
  margin: 1rem;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 1.7;
  background-color: var(--bg-darker);
  background-image: linear-gradient(to right, rgb(0, 0, 0), transparent 40%), url('/assets/images/welcome_nologin_desktop.webp');
  background-size: cover;
  background-repeat: repeat-x;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem 1rem;
}

.hero-logo {
  position: relative;
  height: 60px;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0;
  color: var(--text-primary);
  text-align: start;
  max-width: 600px;
  width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
}

.hero-buttons .button {
  width: 100%;
}

.main-section__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.main-section__description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: start;
}

@media (min-width: 640px) {
  .hero-container {
    margin: 0;
    aspect-ratio: 4.6;
    padding: 4rem 2rem;
    flex-direction: row;
  }

  .hero-logo {
    position: absolute;
    top: 0;
    left: 1.5%;
    height: 96%;
    margin-bottom: 0;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-buttons .button {
    width: auto;
  }

  .main-section__title {
    font-size: 2rem;
  }

  .main-section__description {
    font-size: 1.25rem;
    text-align: start;
  }
}

.main-button {
  margin-bottom: 2rem;
}

.buttons-section {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

@media (max-width: 768px) {

  .header {
    padding: 0.5rem 0;
  }

  .logo img {
    max-height: 35px;
  }

  .hero-image {
    height: 400px;
  }

  .hero-content {
    width: 95%;
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .main-section {
    padding: 1rem 0;
  }

  .main-section__title {
    margin: 0 auto;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .main-section__description {
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
  }

  /* Table adjustments */
  .table-wrapper {
    margin: 1rem -1rem;
    border-radius: 0;
    width: calc(100% + 2rem);
  }

  .pros-cons {
    margin: 1rem 0;
  }

  .pros-cons h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer {
    padding: 2rem 0 1rem;
    margin-top: 2rem;
  }

  .footer-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-badges img {
    width: 100%;
    height: auto;
    max-height: 45px;
  }

  .main-button {
    width: 100%;
    margin: 1rem 0;
  }

  .nav-wrapper {
    padding-top: 60px;
  }

  .main-nav {
    margin-bottom: 2rem;
  }

  .nav-link {
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto 0;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-container {
    margin: 0px;
    margin-bottom: 1.5rem;
    padding: 2rem 1rem;
    aspect-ratio: unset;
  }

  .main-section .main-section__description,
  .entry-content .main-section__description,
  .hero-content .main-section__description {
    text-align: start;
  }

  .hero-content {
    width: 100%;
    padding: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: none;
  }

  .main-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .main-section__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .hero-image {
    height: 250px;
  }

  .hero-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }

  .hero-bonus {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .payment-info th,
  .payment-info td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding);
}

section[id] {
  scroll-margin-top: var(--scroll-padding);
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 8px var(--shadow-color-dark);
  text-decoration: none;
  color: var(--text-primary);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-gradient);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--text-primary);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}

.logo {
  cursor: pointer;
}

/* Ensure table of contents starts after hero section */
.table-of-contents {
  clear: both;
  margin-top: 2rem;
}

/* FAQ Accordion Styles */
.faq-accordion {
  max-width: 100%;
  margin: 2rem 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: var(--bg-darker);
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.faq-question:hover {
  background: var(--bg-table);
  border-color: var(--accent-blue);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-primary);
  flex: 1;
}

.toggle-icon {
  font-size: 1.5rem;
  min-width: 20px;
  text-align: center;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background: var(--bg-dark);
  opacity: 0;
}

.faq-toggle:checked~.faq-answer {
  max-height: 500px;
  opacity: 1;
  border-top: 1px solid var(--border-color);
}

.faq-toggle:checked~.faq-question {
  background: var(--bg-table);
  border-bottom: 1px solid var(--accent-blue);
}

.faq-toggle:checked~.faq-question .toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-purple);
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-answer p {
    padding: 1rem;
  }
}

.accordion {
  width: 100%;
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-dark);
}

.accordion-header {
  background: var(--bg-darker);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: var(--bg-table);
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
  border-bottom: 1px solid var(--accent-blue);
  background: var(--bg-table);
}

.accordion-item.active .accordion-header:after {
  content: '-';
  color: var(--accent-purple);
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background: var(--bg-dark);
  opacity: 0;
}

.accordion-content p {
  padding: 1.5rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 1rem;
    font-size: 1rem;
  }

  .accordion-header:after {
    right: 1rem;
  }

  .accordion-content p {
    padding: 1rem;
  }
}

/* Hero section responsive improvements */
.hero-container {
  padding: 3rem 2rem;
}

.hero-content {
  max-width: 800px;
}

.main-section__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.main-section__description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* Accordion polish */
.accordion-item {
  transition: transform 0.3s ease;
}

.accordion-item:hover {
  transform: translateX(5px);
}

.accordion-header {
  padding-right: 3rem;
}

/* Mobile improvements */
@media (max-width: 768px) {
  .hero-container {
    padding: 2rem 1.5rem;
    background-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%),
      url('/assets/images/welcome_nologin_desktop.webp');
  }

  .hero-content {
    width: 100%;
  }

  .main-section__title {
    text-align: left;
    margin-bottom: 0.8rem;
  }

  .main-section__description {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
    max-width: 100%;
  }

  .hero-buttons .button {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
  }

  /* Section spacing on mobile */
  section {
    margin: 2rem 0;
    padding: 0 1rem;
  }

  /* Table of contents mobile */
  .table-of-contents {
    margin: 1.5rem -1rem;
    border-radius: 0;
  }

  .table-of-contents ul {
    column-count: 1;
  }

  /* Accordion mobile polish */
  .accordion-item {
    margin-bottom: 0.5rem;
  }

  .accordion-header {
    padding: 1rem;
    padding-right: 2.5rem;
  }

  .accordion-header:after {
    right: 1rem;
    font-size: 1.2rem;
  }

  .accordion-content p {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

/* Small mobile improvements */
@media (max-width: 480px) {
  .hero-container {
    padding: 1.5rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .main-section__title {
    font-size: 1.5rem;
  }

  .main-section__description {
    font-size: 1rem;
  }

  /* Adjust section spacing */
  section {
    margin: 1.5rem 0;
  }

  h2 {
    font-size: 1.3rem;
  }

  /* Content readability */
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Add smooth transitions */
.button,
.nav-link,
.accordion-header,
.hero-buttons .button {
  transition: all 0.3s ease;
}

/* Fix table of contents spacing */
.table-of-contents {
  margin: 2.5rem 0;
}

.table-of-contents ul {
  column-count: 2;
  column-gap: 2rem;
}

.table-of-contents li {
  break-inside: avoid;
}

/* Improve content readability */
section p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

section h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* Consistent border radius */
.button,
.accordion-item,
.hero-container,
.table-of-contents,
.card,
.faq-item,
.scroll-to-top {
  border-radius: 8px;
}

/* Mobile improvements */
@media (max-width: 768px) {
  .table-of-contents {
    margin: 1.5rem 0;
    padding: 15px 20px;
    border-radius: 8px;
  }

  .table-of-contents ul {
    column-count: 1;
  }

  .table-of-contents li {
    margin: 12px 0;
  }

  .table-of-contents a {
    font-size: 0.95rem;
  }

  /* Keep border radius on mobile */
  section,
  .table-of-contents,
  .hero-container,
  .accordion-item {
    border-radius: 8px !important;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .table-of-contents {
    padding: 15px;
  }

  .table-of-contents h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .table-of-contents li {
    margin: 10px 0;
  }
}

/* Terms and Privacy Pages Styles */
.terms-section,
.policy-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.terms-section h2,
.policy-section h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-darker);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.contact-info a {
  color: var(--primary-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {

  .terms-section,
  .policy-section {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .intro {
    padding: 1rem;
    font-size: 1rem;
    margin: 1.5rem 0;
  }
}

@media (max-width: 480px) {

  .terms-section,
  .policy-section {
    padding: 1rem;
    margin: 1rem 0;
  }
}