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

html {
  scroll-behavior: smooth;
}

body {
  font-family: CurseCasual, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(90deg, #c0392b 0%, #f39c12 100%);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: fixed;
  height: 84px;
  padding: 1rem 1rem;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #c0392b 0%, #f39c12 100%);
  z-index: 100;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.site-header.scrolled {
  background-color: #e25822;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo img {
  height: 80px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  animation: logo-bounce 0.6s ease forwards;
}

@keyframes logo-bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #fff;
}
.site-nav ul li:not(:last-child) a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav ul li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.site-nav ul li:not(:last-child) a:hover::after {
  width: 100%;
}

.site-nav ul li:last-child a {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav ul li:last-child a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn-play {
  background-color: #b02e0c;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #fff;
}

.disclaimer {
  margin-top: 84px;
  background-color: #a23c2f;
  color: #fff;
}
.disclaimer-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-self: center;
}

.disclaimer-inner img {
  height: 50px;
  width: 50px;
}

.hero {
  background: linear-gradient(90deg, #c0392b 0%, #f39c12 100%);
  color: #fff;
  padding: 8rem 0 8rem;
  margin-top: 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-content {
  max-width: 50%;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: none;
  border: 2px solid #ffd55b;
  color: #ffd55b;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1rem;

  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease,
    transform 0.2s ease;
}

.btn-primary:hover {
  background: #ffd55b;
  color: #c0392b;

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .hero-inner {
    gap: 1rem;
  }
  .hero-content {
    max-width: 60%;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    max-width: 80%;
    margin: 2rem auto 0;
  }
  .site-header {
    height: 90px;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .site-nav ul {
    gap: 1rem;
  }
  .logo img {
    height: 60px;
  }
  .disclaimer-inner img {
    height: 40px;
    width: auto;
  }
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-image {
    max-width: 100%;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    transform: translateX(100%);
    transition: transform 0.3s ease;
    background-color: #e25822;
    z-index: 200;
  }
  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.2rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s;
  }
  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

.discover {
  background: #fff;
  padding: 4rem 0;
}
.discover .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.discover-image {
  flex: 1 1 45%;
}
.discover-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 4px solid #ffd55b;
  border-radius: 8px;
}

.discover-text {
  flex: 1 1 45%;
}
.discover-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #20395c;
}
.discover-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #555;
}

.discover-text .btn-play {
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.6s ease-in-out;
}

@keyframes btn-glow {
  from {
    box-shadow: 0 0 8px rgba(255, 213, 91, 0.6);
  }
  to {
    box-shadow: 0 0 20px rgba(255, 213, 91, 1);
  }
}

.discover-text .btn-play:hover {
  background-color: #8a2308;
  transform: translateY(-4px) scale(1.05);
  animation: btn-glow 1s ease-in-out infinite alternate;
}

@media (max-width: 1024px) {
  .discover .container {
    gap: 2rem;
  }
  .discover-text h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .discover .container {
    flex-direction: column;
    text-align: center;
  }
  .discover-image,
  .discover-text {
    width: 100%;
    flex: none;
  }
  .discover-image {
    margin-bottom: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .discover {
    padding: 2rem 0;
  }
  .discover-text h2 {
    font-size: 1.5rem;
  }
  .discover-text p {
    font-size: 0.95rem;
  }
  .discover-text .btn-play {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

.features {
  background-color: #f9f9f9;
  padding: 5rem 0;
}
.features-title {
  text-align: center;
  font-size: 2.5rem;
  color: #20395c;
  margin-bottom: 0.5rem;
}
.features-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #556085;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-text {
  max-width: calc(100% - 80px);
}
.feature-text h3 {
  font-size: 1.25rem;
  color: #20395c;
  margin-bottom: 0.75rem;
}
.feature-text p {
  font-size: 0.95rem;
  color: #556085;
  line-height: 1.6;
}

.feature-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #e25822;
  border-radius: 50%;
  padding: 4px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .features {
    padding: 4rem 0;
  }
  .features-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
  .feature-text {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .feature-icon {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 3rem 0;
  }
  .feature-card {
    padding: 1rem;
  }
  .feature-text h3 {
    font-size: 1.125rem;
  }
  .feature-text p {
    font-size: 0 Nine Five;
  }
}

.features-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0 !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
}

.feature-card {
  margin: 0 !important;
}

.feature-card {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem;
  border-bottom: 1px solid #e6e6e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:nth-child(odd) {
  border-right: 1px solid #e6e6e6;
}

.feature-card:nth-last-child(1),
.feature-card:nth-last-child(2) {
  border-bottom: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-card {
  position: relative;
}

.feature-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.feature-icon img {
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.feature-card:hover .feature-icon img {
  border-color: #ffd55b;
}

@media (max-width: 1024px) {
  .features {
    padding: 4rem 0;
  }
  .features-title {
    font-size: 2.25rem;
  }
  .features-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }
  .feature-card {
    padding: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 3rem 0;
  }
  .features-title {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }
  .features-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .feature-icon {
    position: static !important;
    margin-bottom: 1rem;
    width: 50px;
    height: 50px;
  }
  .feature-icon img {
    border-width: 2px;
  }
  .feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .feature-text p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 2rem 0;
  }
  .features-title {
    font-size: 1.75rem;
  }
  .features-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
  .feature-text h3 {
    font-size: 1.25rem;
  }
  .feature-text p {
    font-size: 0.85rem;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }
  .feature-icon img {
    border-width: 1px;
  }
}

.contact-section {
  background: #fff;
  padding: 5rem 0;
}
.contact-title {
  text-align: center;
  font-size: 2.5rem;
  color: #20395c;
  margin-bottom: 0.5rem;
}
.contact-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #556085;
  margin-bottom: 3rem;
}

.contact-inner {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
}
.contact-row input,
.contact-row textarea {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}
.submit-btn {
  align-self: start;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.submit-btn {
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.6s ease-in-out;
}

@keyframes btn-glow {
  from {
    box-shadow: 0 0 8px rgba(255, 213, 91, 0.6);
  }
  to {
    box-shadow: 0 0 20px rgba(255, 213, 91, 1);
  }
}

.submit-btn:hover {
  transform: translateY(-4px) scale(1.05);
  animation: btn-glow 1s ease-in-out infinite alternate;
}

.contact-image {
  flex: 1;
}
.contact-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .contact-inner {
    gap: 2rem;
  }
  .contact-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .contact-inner {
    flex-direction: column;
  }
  .contact-image {
    margin-top: 2rem;
  }
  .submit-btn {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 3rem 0;
  }
  .contact-title {
    font-size: 2rem;
  }
  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .contact-row {
    flex-direction: column;
  }
  .contact-row input,
  .contact-row textarea {
    font-size: 0.95rem;
  }
  .submit-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

.site-footer {
  background-color: #b02e0c;
  color: #fff;
  padding-top: 3rem;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1rem;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-right {
  text-align: end;
}

.footer-icons {
  width: 100%;
  max-width: 360px;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.footer-buttons {
  display: flex;
  gap: 1rem;
}
.footer-btn {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.footer-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-btn img {
  height: 44px;
  width: 160px;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}
.footer-links a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  background-color: #8a2308;
  padding: 1rem;
  font-size: 0.875rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-right {
    margin-top: 2rem;
    text-align: center;
  }
  .footer-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
  }
  .footer-heading {
    font-size: 1.1rem;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
  .footer-btn {
    padding: 0.4rem 0.6rem;
  }
  .footer-btn img {
    height: 20px;
  }
  .footer-bottom {
    font-size: 0.8rem;
    margin-top: 1.5rem;
  }
}

.contact-us {
  background: linear-gradient(90deg, #c0392b 0%, #f39c12 100%);
  color: #fff;
  padding: 5rem 0;
}

.contact-us__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-us__subtitle {
  text-align: center;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.contact-us__form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-us__row {
  display: flex;
  gap: 1rem;
}

.contact-us__row input,
.contact-us__row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

.contact-us__btn {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-us__row {
    flex-direction: column;
  }
  .contact-us__btn {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .contact-us {
    padding: 3rem 0;
  }
  .contact-us__title {
    font-size: 2rem;
  }
  .contact-us__subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .contact-us__row input,
  .contact-us__row textarea {
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
  }
  .contact-us__btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

.register {
  background: linear-gradient(90deg, #c0392b 0%, #f39c12 100%);
  color: #fff;
  padding: 5rem 0;
}
.register__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.register__subtitle {
  text-align: center;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.register__form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.register__row {
  display: flex;
  flex-direction: column;
}
.register__row label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #fff;
}
.register__row input {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.register__btn {
  align-self: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .register {
    padding: 4rem 0;
  }
  .register__subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }
  .register__form {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .register {
    padding: 3rem 0;
  }
  .register__title {
    font-size: 2rem;
  }
  .register__subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .register__row input {
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
  }
  .register__btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

.about-us {
  background: linear-gradient(90deg, #c0392b 0%, #f39c12 100%);
  color: #fff;
  padding: 5rem 0;
}

.about-us__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-us__content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-us__content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.about-us__content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-us__content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}
.about-us__content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.about-us__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd55b;
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 1024px) {
  .about-us {
    padding: 4rem 0;
  }
  .about-us__title {
    font-size: 2.25rem;
  }
  .about-us__content {
    max-width: 700px;
  }
  .about-us__content h3 {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 3rem 0;
  }
  .about-us__title {
    font-size: 2rem;
  }
  .about-us__content {
    padding: 0 1rem;
    max-width: 100%;
  }
  .about-us__content h3 {
    font-size: 1.25rem;
  }
  .about-us__content p,
  .about-us__content ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 2rem 0;
  }
  .about-us__title {
    font-size: 1.75rem;
  }
  .about-us__content h3 {
    font-size: 1.125rem;
  }
  .about-us__content p,
  .about-us__content ul li {
    font-size: 0.9rem;
  }
  .about-us__content ul {
    margin: 1rem 0;
  }
}

.terms {
  background: linear-gradient(90deg, #c0392b 0%, #f39c12 100%);
  color: #fff;
  padding: 5rem 0;
}

.terms__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.terms__content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.terms__content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.terms__content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.terms__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
}
.terms__content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.terms__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd55b;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 1024px) {
  .terms {
    padding: 4rem 0;
  }
  .terms__title {
    font-size: 2.25rem;
  }
  .terms__content {
    max-width: 700px;
  }
  .terms__content h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .terms {
    padding: 3rem 0;
  }
  .terms__title {
    font-size: 2rem;
  }
  .terms__content {
    padding: 0 1rem;
    max-width: 100%;
  }
  .terms__content h3 {
    font-size: 1.1rem;
  }
  .terms__content p,
  .terms__content ul li {
    font-size: 0.95rem;
  }
  .terms__content ul li::before {
    font-size: 1rem;
    left: 0.25rem;
  }
}

@media (max-width: 480px) {
  .terms {
    padding: 2rem 0;
  }
  .terms__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .terms__content h3 {
    font-size: 1rem;
  }
  .terms__content p,
  .terms__content ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .terms__content ul li::before {
    font-size: 0.9rem;
    left: 0.2rem;
  }
}

.privacy {
  background: linear-gradient(90deg, #c0392b 0%, #f39c12 100%);
  color: #fff;
  padding: 5rem 0;
}

.privacy__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.privacy__content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.privacy__content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.privacy__content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.privacy__content ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.privacy__content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.privacy__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd55b;
  font-size: 1.2rem;
  line-height: 1;
}

.privacy__content a {
  color: #ffd55b;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .privacy {
    padding: 4rem 0;
  }
  .privacy__title {
    font-size: 2.25rem;
  }
  .privacy__content {
    max-width: 700px;
  }
  .privacy__content h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .privacy {
    padding: 3rem 0;
  }
  .privacy__title {
    font-size: 2rem;
  }
  .privacy__content {
    padding: 0 1rem;
    max-width: 100%;
  }
  .privacy__content h3 {
    font-size: 1.1rem;
  }
  .privacy__content p,
  .privacy__content ul li {
    font-size: 0.95rem;
  }
  .privacy__content ul li::before {
    font-size: 1rem;
    left: 0.25rem;
  }
}

@media (max-width: 480px) {
  .privacy {
    padding: 2rem 0;
  }
  .privacy__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .privacy__content h3 {
    font-size: 1rem;
  }
  .privacy__content p,
  .privacy__content ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .privacy__content ul li::before {
    font-size: 0.9rem;
    left: 0.2rem;
  }
}

@media (max-width: 780px) {
  iframe {
    height: 100% !important;
  }
}

.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.form-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffd55b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.checkmark {
  font-size: 2.5rem;
  color: #ffd55b;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.checkmark.show {
  opacity: 1;
  transform: scale(1);
}

form {
  position: relative;
  overflow: hidden;
}

.footer-subscribe-form {
  position: relative;
  max-width: 400px;
  margin-top: 1rem;
  margin-left: auto;
}
.subscribe-row {
  display: flex;
  width: 100%;
}
.subscribe-row input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}
.footer-subscribe-btn {
  background-color: #f3cb3c;
  border: none;
  padding: 0 1rem;
  font-size: 1.25rem;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.6s ease-in-out;
}
.footer-subscribe-btn:hover {
  transform: translateY(-3px);
  animation: btn-glow 1s ease-in-out infinite alternate;
}
@keyframes btn-glow {
  from {
    box-shadow: 0 0 8px rgba(243, 203, 60, 0.6);
  }
  to {
    box-shadow: 0 0 20px rgba(243, 203, 60, 1);
  }
}

.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.form-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.spinner {
  width: 30px;
  height: 30px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 0.5rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.checkmark {
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.checkmark.show {
  opacity: 1;
  transform: scale(1);
}
.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #fff; /* или другой цвет */
  text-decoration: none;
  font-family: 'Arial', sans-serif;
}
