:root {
  --color-primary: #e45147;
  --color-darkgray: #252525;
  --color-white: #fafafa;
  --color-green: rgb(67, 141, 64);
  --color-red: rgb(148, 56, 56);
  --color-yellow: rgb(190, 116, 54);
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #161616;
  background-image: linear-gradient(rgba(22, 22, 22, 0.45), rgba(22, 22, 22, 0.7)), url('background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #dfdfdf;
  font-family: 'Lato', sans-serif;
}

main {
  flex: 1;
  padding-top: 480px;
}

h1 {
  font-weight: 100;
  font-size: 28px;
  color: #ececec;
}

h2 {
  font-weight: 300;
  font-size: 22px;
  color: rgb(243, 243, 243);
}

p {
  color: #dfdfdf;
}

a {
  color: #ffffff;
  text-decoration: none;
}

.bebas {
  font-family: 'Bebas Neue', sans-serif;
}

.green-txt { color: var(--color-green); }
.red-txt { color: var(--color-red); }

/* ---------- hero ---------- */

#bgHeader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 480px;
  width: 100%;
  z-index: 1;
}

#bgHeader nav {
  background-color: transparent;
  z-index: 999;
}

.brand-logo {
  width: 200px;
  margin-left: 1.5vh;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 3px;
}

.logo-blue {
  color: rgb(70, 134, 255);
}

.logo-white {
  color: #ffffff;
}

.nav-links a {
  font-size: 13px;
  margin: 0 14px;
  color: #ffffff;
  letter-spacing: 1px;
}

.nav-links a i {
  font-size: 12px;
  margin-right: 6px;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  margin-top: 95px;
  letter-spacing: 1px;
}

.hero-content p {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  color: rgb(211, 211, 211);
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

/* ---------- buttons (outline system) ---------- */

.btn-makeanaccount,
.btn-viewstats,
.btn-search {
  background-color: transparent;
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-makeanaccount {
  border: 1px solid rgb(70, 134, 255);
  color: rgb(70, 134, 255);
  padding: 14px 30px;
  border-radius: 4px;
}

.btn-makeanaccount:hover {
  border-color: rgb(120, 168, 255);
  color: rgb(120, 168, 255);
}

.btn-viewstats {
  border: 1px solid rgb(190, 190, 190);
  color: rgb(190, 190, 190);
  padding: 14px 30px;
  border-radius: 4px;
}

.btn-viewstats:hover {
  border-color: rgb(230, 230, 230);
  color: rgb(230, 230, 230);
}

.btn-search {
  border: 1px solid rgb(60, 131, 179);
  color: rgb(60, 131, 179);
  padding: 8px 40px;
  border-radius: 2px;
}

.btn-search:hover {
  border-color: rgb(95, 160, 205);
  color: rgb(95, 160, 205);
}

button:focus {
  background-color: inherit !important;
}

/* ---------- sections ---------- */

.section {
  margin-top: 80px;
}

#why {
  margin-top: 100px;
  margin-bottom: 60px;
}

.section-label {
  display: block;
  font-weight: 700;
  font-size: 22px;
  color: rgb(211, 211, 211);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgb(153, 153, 153);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ---------- platforms row ---------- */

.platforms {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.platforms span {
  font-size: 14px;
  color: rgb(153, 153, 153);
  letter-spacing: 1px;
}

.platforms i {
  font-size: 20px;
  color: rgb(211, 211, 211);
  margin-right: 8px;
}

.download-row {
  margin-top: 36px;
}

/* ---------- onion address row ---------- */

.onion-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
}

.url-chip {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: #ffffff;
  background-color: rgb(19, 19, 19);
  border: 1px solid #3d4a5c;
  border-radius: 2px;
  padding: 13px 18px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.url-chip:hover {
  border-color: rgb(70, 134, 255);
}

.hint-line {
  font-size: 13px;
  color: rgb(153, 153, 153);
  margin-top: 26px;
}

.hint-line i {
  font-size: 12px;
  margin-right: 8px;
}

/* ---------- why list ---------- */

.why-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.why-list li {
  font-size: 16px;
  color: rgb(211, 211, 211);
  line-height: 2.4;
}

.why-list .bullet {
  color: rgb(70, 134, 255);
  margin-right: 12px;
}

/* ---------- mobile dropdown ---------- */

.dropdown-content {
  background-color: rgb(39, 39, 39) !important;
  margin-top: 8px;
}

.dropdown-content li > a {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
}

.dropdown-content li > a i {
  font-size: 12px;
  margin-right: 8px;
}

.dropdown-content li:hover {
  background-color: rgb(68, 68, 68);
}

/* ---------- toast ---------- */

.toast.dark-toast {
  background-color: rgb(29, 29, 29);
  border-bottom: 2px solid rgb(70, 134, 255);
  border-radius: 5px 5px 0 0;
  color: #ffffff;
}

/* ---------- footer ---------- */

footer {
  background-color: #1a1a1a;
  padding: 22px 0;
}

.copyright {
  color: rgb(199, 199, 199);
  font-size: 14px;
  text-align: center;
}

/* ---------- motion ---------- */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fadeIn {
  animation: fadeIn 1s ease;
}

/* ---------- scrollbar (WebKit) ---------- */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #919191;
  border-radius: 10px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: #202020;
  border-radius: 10px;
}

/* ---------- responsive ---------- */

@media (max-width: 992px) {
  .brand-logo {
    margin-left: 0;
  }

  #mobileMenu.dropdown-content {
    left: 0 !important;
    width: 100% !important;
  }
}
