* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #1a1a1a;
  color: #fff;
}

a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #ea580c;
}

p, h2, h3, ul, ol, section, form, label, fieldset {
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

:last-child {
  margin-bottom: 0;
}

h1 {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f97316;
  border-bottom: 1px solid rgba(249, 115, 22, 0.3);
  padding-bottom: 0.5rem;
}

p {
  line-height: 1.5;
}

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

.bold {
  font-weight: bold;
}

.break-all {
  word-break: break-all;
}

.success {
  color: #30db5b;
}

.error {
  color: #ff6961;
}

.hidden,
body:not(.is-mobile) .mobile-only,
body.is-mobile .desktop-only,
body.is-mobile.is-safari .not-mobile-safari-only,
body:not(.is-mobile) .mobile-safari-only,
body:not(.is-safari) .mobile-safari-only {
  display: none;
}

.button {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #f97316;
  cursor: pointer;
  -webkit-appearance: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.button + .button {
  margin-top: 1.5rem;
}

.button:hover {
  background-color: #ea580c;
  color: #fff;
  text-decoration: none;
}

.button:disabled {
  position: relative;
  color: transparent;
  background-color: transparent;
}

.button:disabled:before {
  content: '';
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  border-radius: 1rem;
  width: 2rem;
  height: 2rem;
  box-sizing: border-box;
  border-top: 2px solid #f97316;
  border-right: 2px solid #f97316;
  border-bottom: 2px solid #f97316;
  border-left: 2px solid transparent;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.button--secondary {
  padding: 0;
  background-color: transparent;
}

.button--secondary:hover {
  color: #f97316;
  background-color: transparent;
}

input, label {
  display: block;
}

input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
  font-size: inherit;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type=text]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 125, 250, 0.6);
}

label input {
  margin-top: 0.5rem;
}

.header {
  background-color: #000000;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 2;
}

.header__logo {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo:hover {
  text-decoration: none;
}

.header__logo-icon {
  height: 40px;
  width: auto;
  border-radius: 10px;
  border: 1px solid #41464c;
}

.header__logo-text {
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header__nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.header__nav-toggle-line {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
}

.header__nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header__nav-link {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  text-decoration: none;
  color: #f97316;
}

.header__nav-link--purchase {
  background-color: #f97316;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 1.5rem;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease !important;
}

.header__nav-link--purchase:hover {
  background-color: #ea580c !important;
}

.main {
  padding: 0 2rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2rem;
  flex: 1;
}

.main__section {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileconfig-details {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  z-index: 10;
}

.mobileconfig-details__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans {
  display: flex;
  border: none;
  gap: 1rem;
}

.plans__option {
  flex: 1;
  width: 50%;
  margin: 0;
  padding: 0.5rem;
  border: 2px solid #333;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
}

.plans__input:checked + .plans__option {
  border: 2px solid #f97316;
}

.plans__input {
  display: none;
}

.plans__text {
  display: block;
}

.plans__text--name {
  font-size: 1.2rem;
  font-weight: bold;
}

.plans__text--description {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.plans__input:checked + .plans__option .plans__text--name {
  color: #f97316;
}

.footer {
  padding: 0.9rem;
  border-top: 1px solid #333;
  background-color: #000000;
  text-align: center;
}

.footer__text {
  margin: 0;
  font-size: 0.9rem;
}

.footer__link {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.footer__link:hover {
  text-decoration: underline;
  color: white;
}

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

  h2 {
    font-size: 1.3rem;
  }

  .header {
    padding: 1rem;
    position: relative;
  }

  .header__logo-text {
    font-size: 2rem;
  }

  .header__nav-toggle {
    display: flex;
  }

  .header__nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 1rem;
    background-color: #000000;
    z-index: 2;
    border-top: 1px solid #333;
    gap: 1rem;
  }

  .header__nav-links--active {
    display: flex;
  }

  .main__section {
    padding: 1.5rem;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  .header__logo-icon {
    height: 32px;
  }

  .header__logo-text {
    font-size: 1.5rem;
  }

  .main {
    padding: 0 1rem;
  }

  .main__section {
    padding: 1.2rem;
  }
}