
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(234, 179, 8, 0.16);
  backdrop-filter: blur(14px);
}

.nav-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: #facc15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 14px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 12px 16px;
  border-radius: 14px;
  color: #e4e4e7;
  font-weight: 800;
  font-size: 14px;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: #000;
  background: #facc15;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(234, 179, 8, 0.25);
  background: rgba(24, 24, 27, 0.8);
  color: #facc15;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  padding-top: 74px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85)),
    url("https://img.youtube.com/vi/nz7FbTBmZ_M/maxresdefault.jpg") center / cover no-repeat;
  opacity: 0.35;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(9, 9, 11, 0.96);
    border: 1px solid rgba(234, 179, 8, 0.18);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  }

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

  .nav-menu a {
    width: 100%;
    text-align: center;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(234, 179, 8, 0.2);
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.25);
  opacity: 0.3;
  pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 34%);
}

.gold-effect {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.35), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 110px 0;
}

.eyebrow {
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1,
.section-header h2,
.features-text h2,
.final-cta h2 {
  font-weight: 900;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  max-width: 980px;
  margin: 0 auto;
}

.hero-text {
  max-width: 760px;
  margin: 28px auto 0;
  color: #d4d4d8;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 16px 28px;
  font-weight: 900;
  transition: 0.45s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #facc15;
  color: #000;
}

.btn-outline {
  border-color: rgba(234, 179, 8, 0.4);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(234, 179, 8, 0.1);
}

.btn-motion:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 20px 45px rgba(234, 179, 8, 0.22);
}

.full {
  width: 100%;
}

.benefits {
  padding: 95px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card,
.service-card,
.feature-item,
.faq-item,
.discord-card {
  background: rgba(24, 24, 27, 0.75);
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: 28px;
}

.benefit-card {
  padding: 32px;
  transition: 0.35s ease;
}

.benefit-card:hover,
.service-card:hover,
.feature-button:hover,
.faq-question:hover {
  border-color: rgba(234, 179, 8, 0.4);
}

.benefit-card h3 {
  color: #facc15;
  font-size: 24px;
  margin-bottom: 14px;
}

.benefit-card p,
.section-header p,
.features-text p,
.faq-answer,
.feature-description,
.discord-footer p {
  color: #d4d4d8;
  line-height: 1.7;
}

.services-section,
.faq-section {
  padding: 95px 0;
  background: #09090b;
  border-top: 1px solid rgba(234, 179, 8, 0.1);
  border-bottom: 1px solid rgba(234, 179, 8, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
}

.section-header p {
  max-width: 720px;
  margin: 18px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  width: 100%;
  color: #fff;
  text-align: left;
  padding: 32px;
  background: #000;
  transition: 0.35s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.service-head h3 {
  font-size: 24px;
  line-height: 1.2;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #facc15;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.2);
  flex-shrink: 0;
}

.service-meta {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.label {
  display: block;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 5px;
}

.price {
  color: #facc15;
  font-size: 22px;
  font-weight: 900;
}

.more {
  margin-top: 28px;
  color: #facc15;
  font-weight: 900;
}

.features {
  padding: 95px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.features-text h2 {
  font-size: clamp(36px, 5vw, 56px);
}

.features-text p {
  margin-top: 24px;
  font-size: 18px;
}

.features-list {
  display: grid;
  gap: 16px;
}

.feature-block {
  display: grid;
  gap: 12px;
}

.feature-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  background: #18181b;
  border: 1px solid rgba(234, 179, 8, 0.1);
  cursor: pointer;
  transition: 0.35s ease;
}

.feature-button:hover {
  transform: translateY(-4px);
}

.check {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #facc15;
  color: #000;
  font-weight: 900;
  flex-shrink: 0;
}

.feature-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.feature-more {
  display: block;
  color: #facc15;
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
}

.feature-description {
  border-left: 1px solid rgba(234, 179, 8, 0.35);
  margin-left: 16px;
  padding: 20px 0 20px 24px;
  background: rgba(24, 24, 27, 0.4);
  border-radius: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  background: #09090b;
}

.faq-question {
  width: 100%;
  color: #fff;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  transition: 0.35s ease;
}

.faq-question span:first-child {
  font-size: 18px;
  font-weight: 800;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #facc15;
  border-radius: 12px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.2);
  font-weight: 900;
  flex-shrink: 0;
}

.faq-answer {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(234, 179, 8, 0.1);
}

.discord-card {
  overflow: hidden;
  background: #09090b;
  position: sticky;
  top: 24px;
}

.discord-header {
  background: #5865f2;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discord-header strong {
  font-size: 20px;
}

.discord-header a {
  font-weight: 800;
  text-decoration: underline;
}

.discord-card iframe {
  display: block;
  background: #09090b;
}

.discord-footer {
  padding: 20px;
  border-top: 1px solid rgba(234, 179, 8, 0.1);
}

.discord-footer p {
  font-size: 14px;
  margin-bottom: 16px;
}

.final-cta {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(234, 179, 8, 0.1);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.12), transparent 60%);
}

.final-cta .container {
  position: relative;
}

.final-cta h2 {
  font-size: clamp(38px, 6vw, 64px);
}

.final-cta p {
  color: #d4d4d8;
  margin-top: 22px;
  font-size: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal.hidden,
.hidden {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(7px);
}

.modal-box {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #09090b;
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(234, 179, 8, 0.08);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid #3f3f46;
  background: #18181b;
  color: #fff;
  cursor: pointer;
}

.modal-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #facc15;
  font-size: 32px;
  border-radius: 18px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.2);
  margin-bottom: 22px;
}

.modal-box h3 {
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.1;
  padding-right: 50px;
}

.modal-info {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-info div {
  background: #000;
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: 18px;
  padding: 18px;
}

.modal-info span,
.modal-contact span {
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.modal-info strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

#modalPrice {
  color: #facc15;
}

#modalDescription {
  margin-top: 24px;
  color: #d4d4d8;
  font-size: 18px;
  line-height: 1.7;
}

.modal-contact {
  margin-top: 28px;
}

.modal-contact div {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .benefits,
  .services-grid,
  .features,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .discord-card {
    position: relative;
    top: auto;
  }

  .modal-contact div,
  .modal-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-card,
  .benefit-card,
  .modal-box {
    padding: 24px;
  }
}


/* Topbar layout v3 */
.nav-container {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
}

.brand {
  justify-self: start;
  text-align: left;
}

.nav-menu {
  justify-self: center;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-selector {
  position: relative;
}

.language-button {
  min-width: 108px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(234, 179, 8, 0.25);
  background: rgba(24, 24, 27, 0.85);
  color: #facc15;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
}

.language-button:hover {
  border-color: rgba(234, 179, 8, 0.55);
  background: rgba(234, 179, 8, 0.1);
}

.language-arrow {
  font-size: 13px;
}

.language-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 230px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(9, 9, 11, 0.98);
  border: 1px solid rgba(234, 179, 8, 0.18);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  display: none;
  z-index: 100;
}

.language-dropdown.open {
  display: grid;
  gap: 6px;
}

.language-dropdown button {
  width: 100%;
  text-align: left;
  color: #e4e4e7;
  background: transparent;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.language-dropdown button:hover {
  color: #000;
  background: #facc15;
}

@media (max-width: 920px) {
  .nav-container {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-column: 1;
  }

  .nav-actions {
    grid-column: 2;
  }

  .nav-menu {
    justify-self: stretch;
  }

  .language-selector {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .language-button {
    min-width: 88px;
    height: 42px;
    font-size: 12px;
  }

  .language-dropdown {
    width: 220px;
    right: -52px;
  }
}


/* Flag Icons */
#currentLanguage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#currentLanguage .fi {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

.language-dropdown button {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-dropdown .fi {
  width: 22px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}


/* Currency Converter */
.currency-panel {
  margin: 26px auto 0;
  width: min(520px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(234, 179, 8, 0.16);
}

.currency-panel div {
  text-align: left;
}

.currency-label {
  display: block;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  margin-bottom: 5px;
}

#currencyStatus {
  color: #facc15;
  font-size: 15px;
}

.currency-select {
  min-width: 155px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(234, 179, 8, 0.28);
  background: #09090b;
  color: #facc15;
  font-weight: 900;
  padding: 0 12px;
  cursor: pointer;
}

.converted-price {
  display: block;
  margin-top: 5px;
  color: #d4d4d8;
  font-size: 14px;
  font-weight: 700;
}

.modal-converted-price {
  display: block;
  margin-top: 6px;
  color: #d4d4d8;
  font-size: 14px;
}

@media (max-width: 560px) {
  .currency-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .currency-select {
    width: 100%;
  }
}


/* Final Footer */
.site-footer {
  padding: 40px 20px;
  border-top: 1px solid rgba(234,179,8,0.12);
  background: rgba(0,0,0,0.55);
  text-align: center;
}

.site-footer p:first-child {
  color: #facc15;
  font-weight: 900;
  margin-bottom: 10px;
}

.site-footer p:last-child {
  color: #a1a1aa;
  font-size: 14px;
}
