/* Google Font loaded via <link> in HTML <head> */

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

body {
  background: #38280A;
  color: #FFFFFF;
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
}

header {
  background: #6D5F45;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FFA938;
}

nav a[aria-current="page"] {
  color: #FFA938;
  border-bottom: 2px solid #FFA938;
}

.nav-toggle,
#navToggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

h1 {
  color: #FFA938;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

h2 {
  color: #FFA938;
  font-size: 1.9rem;
  border-bottom: 1px solid #FFA938;
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  color: #FFFFFF;
  font-size: 1.45rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.4rem;
  line-height: 1.75;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border: 1px solid #FFA938;
  border-bottom: 1px solid #FFA938;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

th {
  background: #FFA938;
  color: #38280A;
  padding: 0.85rem 0.75rem;
  text-align: left;
  font-weight: 700;
}

td {
  padding: 0.75rem;
  border: 1px solid #FFA938;
}

a {
  color: #FFA938;
  transition: color 0.3s ease;
}

a:hover {
  color: #FFB95A;
}

strong {
  color: #FFFFFF;
  font-weight: 600;
}

footer {
  background: #6D5F45;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #FFFFFF;
}

footer a {
  color: #FFA938;
}

.btn-signin {
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  background: none;
  color: #FFA938;
  border: 2px solid #FFA938;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  line-height: 1;
  cursor: pointer;
}

.btn-signin:hover {
  background: #FFA938;
  color: #38280A;
}

.btn-signup {
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  background: #FFA938;
  color: #38280A;
  border: 2px solid #FFA938;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  line-height: 1;
  cursor: pointer;
}

.btn-signup:hover {
  background: #FFB95A;
  border-color: #FFB95A;
  color: #38280A;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-header {
  padding: 0.65rem 1.75rem;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: unset;
}

.nav-play-mobile {
  display: none;
}

.faq {
  margin: 2rem 0;
}

.faq__item {
  border-bottom: 1px solid #6D5F45;
  padding: 0.5rem 0;
}

.faq__item h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  font-size: inherit;
  color: inherit;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.faq__question::after {
  content: "+";
  color: #FFA938;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__question[aria-expanded="true"] {
  color: #FFA938;
}

.faq__question[aria-expanded="true"]::after {
  content: "−";
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding-bottom: 1rem;
  color: #FFFFFF;
  opacity: 0.85;
}

ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  counter-reset: ol-counter;
}

ol li {
  counter-increment: ol-counter;
  margin-bottom: 0.75rem;
  padding-left: 2.75rem;
  position: relative;
}

ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.75rem;
  height: 1.75rem;
  background: #FFA938;
  color: #38280A;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li {
  margin-bottom: 0.4rem;
}

img {
  max-width: 100%;
  height: auto;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.site-logo a:hover {
  color: #FFA938;
}

.site-logo img {
  width: 128px;
  height: 72px;
  object-fit: contain;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .btn-header {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-play-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  .nav-toggle,
  #navToggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #6D5F45;
    padding: 0 2rem 1rem 2rem;
    z-index: 999;
  }

  nav ul li {
    min-height: 44px;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
  }

  nav ul.nav-open {
    display: flex;
  }

  main {
    padding: 1rem;
  }
  .site-logo img {
  width: 96px;
  height: 54px;
}
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }

  li {
    font-size: 1rem;
  }

  table {
    display: block;
    overflow-x: auto;
    border: none;
    box-shadow: none;
  }

  td {
    word-break: break-word;
  }

  th {
    word-break: break-word;
  }

  thead {
    display: none;
  }

  tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #FFA938;
  }

  td {
    display: block;
    padding: 0.5rem 0.75rem;
    border: none;
    border-bottom: 1px solid #6D5F45;
    text-align: left;
  }

  td::before {
    content: attr(data-label);
    display: block;
    color: #FFA938;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #FFA938;
  color: #38280A !important;
  border: 2px solid #FFA938;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button strong {
  color: #38280A;
}

.cta-button:hover {
  background: #FFB95A;
  border-color: #FFB95A;
  color: #38280A !important;
}

.cta-button:hover strong {
  color: #38280A;
}

.mobile-bottom-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #6D5F45;
    border-top: 1px solid #7a6b50;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .mobile-bottom-cta .btn-signin,
  .mobile-bottom-cta .btn-signup {
    flex: 1;
    text-align: center;
  }

  body {
    padding-bottom: 70px;
  }
}
