body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #f7f8fa;
  color: #23272a;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

body.dark-mode {
  background: #23272a !important;
  color: #e3e5e8;
  transition: background 0.4s, color 0.4s;
}
.dark-mode .navbar {
  background: #2c2f33 !important;
  box-shadow: 0 2px 12px rgba(35,39,42,0.18);
}
.dark-mode .logo {
  color: #fff;
}
.dark-mode .nav-links a {
  color: #e3e5e8;
}
.dark-mode .nav-links a:hover {
  background: #5865f2;
  color: #fff;
}
.dark-mode .hero {
  background: linear-gradient(90deg, #23272a 0%, #5865f2 100%) !important;
  color: #fff;
  box-shadow: 0 2px 16px rgba(35,39,42,0.18);
}
.dark-mode .subtitle {
  color: #b9bbbe;
}
.dark-mode .cta {
  background: rgba(88,101,242,0.18);
  color: #fff;
}
.dark-mode .cta .discord {
  background: #5865f2;
  color: #fff;
}
.dark-mode .cta .discord:hover {
  background: #3ba55d;
}
.dark-mode main {
  color: #e3e5e8;
}
.dark-mode .card {
  background: #23272a !important;
  color: #e3e5e8;
  box-shadow: 0 2px 16px rgba(35,39,42,0.18);
}
.dark-mode .card:hover {
  box-shadow: 0 6px 32px rgba(88,101,242,0.18);
}
.dark-mode h2 {
  color: #b9bbbe;
}
.dark-mode h3 {
  color: #3ba55d;
}
.dark-mode .pricing th {
  background: #2c2f33 !important;
  color: #5865f2;
}
.dark-mode .pricing td {
  color: #e3e5e8;
}
.dark-mode .calculator {
  background: #2c2f33 !important;
  box-shadow: 0 1px 4px rgba(35,39,42,0.18);
}
.dark-mode .calculator label {
  color: #b9bbbe;
}
.dark-mode .calculator input {
  background: #23272a;
  color: #e3e5e8;
  border: 1.5px solid #5865f2;
}
.dark-mode .calculator input:focus {
  border: 1.5px solid #3ba55d;
}
.dark-mode .calculator button {
  background: linear-gradient(90deg, #5865f2 0%, #3ba55d 100%);
  color: #fff;
}
.dark-mode .calculator button:hover {
  background: linear-gradient(90deg, #3ba55d 0%, #5865f2 100%);
}
.dark-mode #calc-result {
  color: #b9bbbe;
}
.dark-mode .payment-methods li {
  background: #2c2f33 !important;
  color: #b9bbbe;
}
.dark-mode .payment-methods li:hover {
  background: #3ba55d;
  color: #fff;
}
.dark-mode .payicon.ltc {
  filter: brightness(0.8);
}
.dark-mode .payicon.btc {
  filter: brightness(0.95);
}
.dark-mode .payicon.paypal {
  filter: brightness(0.9);
}
.dark-mode .payment .note {
  color: #3ba55d;
}
.dark-mode .proofs-gallery a {
  box-shadow: 0 1px 6px rgba(35,39,42,0.18);
}
.dark-mode .proofs-gallery a:hover {
  box-shadow: 0 4px 16px rgba(88,101,242,0.18);
}
.dark-mode .proofs-note {
  color: #b9bbbe;
}
.dark-mode .contact-card {
  background: #23272a !important;
  color: #e3e5e8;
  border: 1.5px solid #5865f2;
}
.dark-mode .contact-card .discord {
  background: #5865f2;
  color: #fff;
}
.dark-mode .contact-card .discord:hover {
  background: #3ba55d;
}
.dark-mode footer {
  background: #23272a !important;
  color: #b9bbbe;
  box-shadow: 0 -2px 12px rgba(35,39,42,0.18);
}
.dark-mode .footer-content {
  color: #b9bbbe;
}
.dark-mode .tos-notice {
  background: #23272a !important;
  color: #5865f2;
  box-shadow: 0 1px 6px rgba(35,39,42,0.18);
}
.dark-mode .tos-notice a {
  color: #3ba55d;
}
.dark-mode .tos-notice a:hover {
  color: #fff;
}
.dark-mode .tos-notice-bar {
  background: linear-gradient(90deg, #23272a 0%, #2c2f33 100%) !important;
  color: #5865f2;
  box-shadow: 0 2px 12px rgba(35,39,42,0.18);
}
.dark-mode .tos-notice-bar a {
  color: #3ba55d;
}
.dark-mode .tos-notice-bar a:hover {
  color: #fff;
}
.dark-mode .lightbox-modal {
  background: rgba(23,25,28,0.98) !important;
}
.dark-mode .lightbox-content {
  box-shadow: 0 8px 32px rgba(35,39,42,0.45);
}
.dark-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.2rem;
  padding: 0.2rem 0.3rem;
  border-radius: 50%;
  transition: background 0.2s;
  outline: none;
  display: flex;
  align-items: center;
}
.dark-toggle:hover {
  background: #e3e5e8;
}
.dark-mode .dark-toggle:hover {
  background: #2c2f33;
}
#darkModeIcon {
  transition: fill 0.3s;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(88,101,242,0.07);
  z-index: 100;
  transition: box-shadow 0.3s, background 0.3s;
}
.nav-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2vw;
}
.logo {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #5865f2;
  letter-spacing: 0.04em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #23272a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: #5865f2;
  color: #fff;
}

.hero {
  background: linear-gradient(90deg, #5865f2 0%, #23272a 100%);
  color: #fff;
  padding: 3.5rem 1rem 2.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(88,101,242,0.08);
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInDown 1.1s cubic-bezier(.77,0,.18,1) 0.1s both;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
.subtitle {
  font-size: 1.25rem;
  margin-top: 0.7rem;
  font-weight: 400;
  color: #e3e5e8;
}
.cta {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 1.1rem;
  background: rgba(88,101,242,0.13);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(88,101,242,0.07);
  transition: background 0.3s;
}
.cta .discord {
  color: #fff;
  background: #5865f2;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin: 0 0.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.3s, color 0.3s;
}
.cta .discord:hover {
  background: #3ba55d;
  color: #fff;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 0 1rem;
}
section {
  margin: 2.5rem 0;
  animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(88,101,242,0.09);
  padding: 2rem 1.5rem;
  margin-top: 1.2rem;
  transition: box-shadow 0.3s;
  animation: fadeInCard 1.2s cubic-bezier(.77,0,.18,1) both;
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.card:hover {
  box-shadow: 0 6px 32px rgba(88,101,242,0.13);
}

h1, h2, h3 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  margin-top: 0;
}
h2 {
  font-size: 2rem;
  color: #5865f2;
}
h3 {
  font-size: 1.2rem;
  color: #3ba55d;
}

.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}
.pricing th, .pricing td {
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid #e3e5e8;
  text-align: center;
}
.pricing th {
  background: #e3e5e8;
  color: #5865f2;
  font-weight: 700;
}

.calculator {
  margin-top: 1.5rem;
  background: #f7f8fa;
  padding: 1.1rem 1rem 1rem 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(88,101,242,0.03);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  animation: fadeInCard 1.3s cubic-bezier(.77,0,.18,1) both;
}
.calculator label {
  font-weight: 600;
  color: #5865f2;
}
.calculator input {
  margin: 0 0.5rem 0 0;
  padding: 0.45rem 0.8rem;
  border: 1.5px solid #b9bbbe;
  border-radius: 8px;
  font-size: 1.08rem;
  transition: border 0.3s;
}
.calculator input:focus {
  border: 1.5px solid #5865f2;
  outline: none;
}
.calculator button {
  background: linear-gradient(90deg, #5865f2 0%, #3ba55d 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.55rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0;
  margin-top: 0.2rem;
  box-shadow: 0 2px 8px rgba(88,101,242,0.07);
  transition: background 0.3s, transform 0.2s;
  animation: fadeInCard 1.4s cubic-bezier(.77,0,.18,1) both;
}
.calculator button:hover {
  background: linear-gradient(90deg, #3ba55d 0%, #5865f2 100%);
  transform: translateY(-2px) scale(1.04);
}
#calc-result {
  margin-top: 0.8rem;
  font-size: 1.13rem;
  color: #23272a;
  min-height: 1.2em;
  transition: color 0.3s;
}

.payment-methods ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.payment-methods li {
  background: #e3e5e8;
  color: #5865f2;
  padding: 0.6rem 1.3rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.3s, color 0.3s;
}
.payment-methods li:hover {
  background: #3ba55d;
  color: #fff;
}
.payicon {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.3rem;
}
.payicon.btc {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23f2a900" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><circle cx="16" cy="16" r="16" fill="%23f2a900"/><path d="M17.5 14.5c1.1-.3 1.8-1.1 1.8-2.2 0-1.6-1.3-2.3-3.1-2.3V8h-1v2.1h-.8V8h-1v2.1h-.7v1.2h.7v4.7h-.7v1.2h.7V24h1v-2.1h.8V24h1v-2.1c2.1-.1 3.5-1.1 3.5-2.8 0-1.3-.8-2.1-2.1-2.4zm-3.1-3.2c.7 0 2.1.1 2.1 1.2 0 1.1-1.4 1.2-2.1 1.2zm0 7.2v-2.5c.8 0 2.4.1 2.4 1.2 0 1.1-1.6 1.3-2.4 1.3z" fill="white"/></svg>');
}
.payicon.ltc {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23b9bbbe" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><circle cx="16" cy="16" r="16" fill="%23b9bbbe"/><path d="M21.2 22.2l.5-1.7h-6.2l1.1-3.6 2.2-.6.4-1.3-2.2.6 2.1-6.7h-2l-2.7 8.7-1.1.3-.4 1.3 1.1-.3-.7 2.3z" fill="white"/></svg>');
}
.payicon.paypal {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><circle cx="16" cy="16" r="16" fill="%230c3c7c"/><path d="M21.5 10.5c-.5-1.1-1.7-1.5-3.2-1.5h-4.2c-.4 0-.7.3-.8.7l-2.1 13.1c0 .2.1.4.3.4h2.6l.7-4.2v.1c.1-.4.4-.7.8-.7h1.7c3.1 0 5.5-1.2 6.2-4.7.3-1.3.1-2.3-.2-2.9zm-1.2 2.7c-.4 2.1-2.1 2.3-4 2.3h-1l.7-4.3h1c1.9 0 3.7.2 3.3 2z" fill="white"/></svg>');
}
.payment .note {
  color: #3ba55d;
  font-weight: 500;
  text-align: center;
  margin-top: 1.2rem;
}

.proofs-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.proofs-gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(88,101,242,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInCard 1.5s cubic-bezier(.77,0,.18,1) both;
}
.proofs-gallery a:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 4px 16px rgba(88,101,242,0.15);
}
.proofs-gallery img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: filter 0.3s;
}
.proofs-gallery a:hover img {
  filter: brightness(1.08) saturate(1.2);
}
.proofs-note {
  text-align: center;
  color: #b9bbbe;
  font-size: 1.01rem;
  margin-top: 0.7rem;
}

.contact-card {
  text-align: center;
  font-size: 1.13rem;
  color: #23272a;
  background: #f7f8fa;
  border: 1.5px solid #e3e5e8;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  margin-top: 1.2rem;
  animation: fadeInCard 1.6s cubic-bezier(.77,0,.18,1) both;
}
.contact-card .discord {
  color: #fff;
  background: #5865f2;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin: 0 0.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.3s, color 0.3s;
}
.contact-card .discord:hover {
  background: #3ba55d;
  color: #fff;
}

footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  color: #b9bbbe;
  font-size: 1.01rem;
  margin-top: 2.5rem;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(88,101,242,0.07);
}
.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.tos-notice {
  margin-top: 1.2rem;
  background: #e3e5e8;
  color: #5865f2;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 1.01rem;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(88,101,242,0.07);
  animation: fadeInCard 1.7s cubic-bezier(.77,0,.18,1) both;
}
.tos-notice a {
  color: #3ba55d;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.tos-notice a:hover {
  color: #5865f2;
}
.tos-notice-bar {
  background: linear-gradient(90deg, #e3e5e8 0%, #b9bbbe 100%);
  color: #5865f2;
  padding: 0.8rem 0.5rem;
  text-align: center;
  font-size: 1.01rem;
  font-weight: 500;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 12px rgba(88,101,242,0.04);
  margin: 0 auto 0.5rem auto;
  max-width: 900px;
  animation: fadeInCard 1.8s cubic-bezier(.77,0,.18,1) both;
}
.tos-notice-bar a {
  color: #3ba55d;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.tos-notice-bar a:hover {
  color: #5865f2;
}
@media (max-width: 1100px) {
  main {
    max-width: 98vw;
  }
  .nav-content {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .card {
    padding: 1.2rem 0.7rem;
  }
  .hero {
    padding: 2.2rem 0.5rem 1.5rem 0.5rem;
  }
  .tos-notice-bar {
    max-width: 98vw;
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 700px) {
  .nav-content {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem 1vw;
  }
  .nav-links {
    gap: 0.7rem;
  }
  .hero-content {
    padding: 0 0.2rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .pricing table, .pricing th, .pricing td {
    font-size: 0.98rem;
  }
  .proofs-gallery img {
    width: 100px;
    height: 100px;
  }
  .card {
    padding: 1rem 0.3rem;
  }
} 

/* AOS Animate On Scroll - no extra styles needed unless overriding */

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,39,42,0.92);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  animation: fadeInModal 0.4s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(88,101,242,0.25);
  animation: zoomInModal 0.4s cubic-bezier(.77,0,.18,1);
}
@keyframes zoomInModal {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 2.5vh;
  right: 3vw;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 0 2px 8px #23272a;
  z-index: 10001;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: #3ba55d;
}
@media (max-width: 600px) {
  .lightbox-content {
    max-width: 98vw;
    max-height: 60vh;
  }
  .lightbox-close {
    font-size: 2rem;
    top: 1vh;
    right: 2vw;
  }
} 

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  margin-left: 1.2rem;
  transition: background 0.2s;
}
.hamburger .bar {
  width: 26px;
  height: 3.2px;
  background: #b9bbbe;
  margin: 3.5px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.77,0,.18,1);
}
.hamburger.open .bar:nth-child(1) {
  transform: translateY(6.7px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-6.7px) rotate(-45deg);
}

@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 220px;
    background: #23272a;
    box-shadow: -2px 0 16px rgba(0,0,0,0.18);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4.5rem 1.2rem 1.2rem 1.2rem;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
    z-index: 110;
    border-radius: 12px 0 0 12px;
    box-sizing: border-box;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 0.7rem;
    font-size: 1.13rem;
    border-radius: 8px;
    color: #e3e5e8;
    background: none;
    text-align: left;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover {
    background: #5865f2;
    color: #fff;
  }
  .nav-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 400px) {
  .nav-links {
    width: 100vw;
    border-radius: 0;
    padding: 4.5rem 0.5rem 1.2rem 0.5rem;
  }
} 

/* Glassmorphism and techy styles */
.glass {
  background: rgba(44,47,51,0.72) !important;
  border: 1.5px solid rgba(88,101,242,0.18);
  box-shadow: 0 8px 32px rgba(35,39,42,0.22);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-radius: 18px;
  transition: box-shadow 0.3s, background 0.3s, border 0.3s;
}
.navbar.glass {
  background: rgba(44,47,51,0.92) !important;
  border-bottom: 1.5px solid rgba(88,101,242,0.18);
  box-shadow: 0 2px 24px rgba(88,101,242,0.10);
}
h1, h2, h3 {
  font-family: 'Orbitron', 'Montserrat', 'Inter', sans-serif;
  letter-spacing: 0.04em;
}
.calculator button, .cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 16px 2px #5865f2, 0 0 32px 0 #3ba55d33;
  background: linear-gradient(90deg, #5865f2 0%, #3ba55d 100%);
  border: 1.5px solid #5865f2;
  transition: box-shadow 0.3s, background 0.3s, border 0.3s, transform 0.2s;
}
.calculator button::before, .cta::before {
  content: '';
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #5865f2, #3ba55d, #5865f2, #3ba55d, #5865f2);
  opacity: 0.18;
  z-index: -1;
  animation: glowRotate 3.5s linear infinite;
}
@keyframes glowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cta {
  animation: pulseFloat 2.5s ease-in-out infinite alternate;
}
@keyframes pulseFloat {
  0% { box-shadow: 0 0 16px 2px #5865f2, 0 0 32px 0 #3ba55d33; transform: translateY(0) scale(1); }
  50% { box-shadow: 0 0 32px 8px #3ba55d, 0 0 48px 0 #5865f233; transform: translateY(-4px) scale(1.03); }
  100% { box-shadow: 0 0 16px 2px #5865f2, 0 0 32px 0 #3ba55d33; transform: translateY(0) scale(1); }
}
.section-divider svg {
  width: 100%;
  height: 32px;
  display: block;
  stroke: #5865f2;
  opacity: 0.7;
  filter: drop-shadow(0 2px 8px #5865f2aa);
}
.card, .contact-card, .proofs-gallery, .payment-methods, .navbar {
  /* Add glass class for all cards/navbar */
  background: rgba(44,47,51,0.72) !important;
  border: 1.5px solid rgba(88,101,242,0.18);
  box-shadow: 0 8px 32px rgba(35,39,42,0.22);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-radius: 18px;
  transition: box-shadow 0.3s, background 0.3s, border 0.3s;
}
.card:hover, .contact-card:hover, .payment-methods:hover, .proofs-gallery:hover {
  box-shadow: 0 12px 48px 0 #5865f2cc, 0 0 32px 0 #3ba55d33;
  border: 1.5px solid #3ba55d;
}
.calculator button:hover, .cta:hover {
  box-shadow: 0 0 32px 8px #3ba55d, 0 0 48px 0 #5865f2cc;
  border: 1.5px solid #3ba55d;
  background: linear-gradient(90deg, #3ba55d 0%, #5865f2 100%);
  transform: scale(1.04);
} 

.typing-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Orbitron', 'Montserrat', 'Inter', sans-serif;
  font-size: 2.3rem;
  color: #3ba55d;
  margin-bottom: 1.1rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px #3ba55d, 0 0 24px #5865f2;
  font-weight: 700;
  min-height: 2.7rem;
}
#typed-text {
  display: inline-block;
  font-family: inherit;
  color: #3ba55d;
  text-shadow: 0 0 8px #3ba55d, 0 0 24px #5865f2;
  font-weight: 700;
}
#typed-h1 {
  display: inline-block;
  font-family: 'Orbitron', 'Montserrat', 'Inter', sans-serif;
  color: #fff;
  text-shadow: 0 0 8px #5865f2, 0 0 24px #fff;
  font-weight: 700;
  font-size: inherit;
}
.typed-cursor {
  display: inline-block;
  color: #fff;
  font-size: inherit;
  font-weight: 700;
  margin-left: 2px;
  animation: blink-cursor 1s steps(2, start) infinite;
  text-shadow: 0 0 8px #fff, 0 0 24px #5865f2;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@media (max-width: 600px) {
  .typing-hero, #typed-text, .typed-cursor {
    font-size: 1.3rem;
    min-height: 1.5rem;
  }
} 