:root {
  --bg: #060816;
  --card: rgba(16, 20, 40, .72);
  --accent: #7c4dff;
  --accent2: #b388ff;
  --text: #fff;
  --muted: #a8b0d3;
  --border: rgba(255, 255, 255, .08);
  --glow: 0 0 40px rgba(124, 77, 255, .45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

#features,
#pricing,
#servers,
#docs,
#contact {
  scroll-margin-top: 100px; /* Offset scroll target position so headers are not covered by sticky menu */
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(6, 8, 22, .86), rgba(6, 8, 22, .92)),
    url('https://static.tildacdn.com/tild3466-6138-4539-a432-623631313037/80534_1.jpg') center/cover no-repeat;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url('data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E');
  z-index: 999;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10000;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(6, 8, 22, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(6, 8, 22, 0.85);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(139, 92, 246, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.2rem;
  font-weight: 800;
}

.logo-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: .25s;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  color: #fff !important;
  font-weight: 700 !important;
}

.nav-links a:not(.btn-cabinet)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #d946ef);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.8), 0 0 16px rgba(217, 70, 239, 0.6);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:not(.btn-cabinet):hover::after,
.nav-links a:not(.btn-cabinet).active::after {
  width: 100%;
}

.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
}

.hero {
  padding: 120px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 24px;
  color: var(--muted);
  animation: fadeUp .8s ease forwards;
}

h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  margin-bottom: 26px;
  animation: fadeUp .9s ease forwards;
}

.gradient {
  background: linear-gradient(135deg, #fff, #b388ff, #a56eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 34px;
  max-width: 640px;
  animation: fadeUp 1s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1.1s ease forwards;
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .45);
  animation: pulseGlow 6s ease-in-out infinite;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  line-height: 1.8;
  color: var(--muted);
}

.features-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.feature-card,
.price-card,
.support-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(16px);
  transition: .35s;
}

.feature-card:hover,
.support-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25), 0 0 20px rgba(139, 92, 246, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: transparent;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.price-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25), 0 0 20px rgba(139, 92, 246, 0.1);
}

.price-card .btn-select {
  margin-top: 20px;
  padding: 12px 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
  transition: 0.3s;
}

.price-card:hover .btn-select {
  border-color: var(--accent);
  background: rgba(124, 77, 255, 0.1);
  color: #fff;
}

.price-card.popular .btn-select {
  border-color: rgba(124, 77, 255, 0.4);
  background: rgba(124, 77, 255, 0.15);
  color: #fff;
}

.price-card.popular:hover .btn-select {
  background: var(--accent);
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.4);
}

.price-card.popular {
  position: relative;
  z-index: 1;
  border: 1.5px solid transparent !important;
  border-radius: 28px;
  background: linear-gradient(rgba(16, 20, 40, 0.72), rgba(16, 20, 40, 0.72)) padding-box,
              linear-gradient(90deg, #8b5cf6, #d946ef, #7c4dff, #8b5cf6) border-box !important;
  background-size: 100% 100%, 300% 300%;
  animation: borderShine 6s linear infinite;
}

.price-card.popular::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(124, 77, 255, .18), transparent 60%);
  animation: spin 10s linear infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes borderShine {
  0% { background-position: 0% 0%, 0% 50%; }
  50% { background-position: 0% 0%, 100% 50%; }
  100% { background-position: 0% 0%, 0% 50%; }
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-size: .8rem;
  font-weight: 700;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 16px 0 22px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 26px
}

.price-card li {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.cta-box {
  padding: 70px 40px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .07);
}

.accordion {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 18px;
  backdrop-filter: blur(14px);
}

.accordion summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
}

.accordion-content {
  margin-top: 20px;
  line-height: 1.8;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 400px));
  justify-content: center;
  gap: 22px;
}

.support-card {
  text-decoration: none;
  text-align: center;
}

footer {
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none
}

.footer-links a:hover {
  color: #fff
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 20px 80px rgba(0, 0, 0, .45), 0 0 40px rgba(124, 77, 255, .2)
  }

  50% {
    box-shadow: 0 20px 100px rgba(0, 0, 0, .45), 0 0 60px rgba(124, 77, 255, .35)
  }
}

@keyframes spin {
  from {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}

/* TRUST BLOCK */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 42px auto 42px;
  max-width: 900px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, .08),
      rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: .45s cubic-bezier(.2, .8, .2, 1);
  isolation: isolate;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(124, 77, 255, .8),
      rgba(124, 77, 255, .55),
      transparent 65%);
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .8;
}

.trust-card::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle,
      rgba(124, 77, 255, .22),
      transparent 70%);
  top: -100px;
  right: -100px;
  z-index: -1;
  transition: .5s;
}

.trust-card:hover {
  transform: translateY(-12px) scale(1.035);
  box-shadow: 0 10px 50px rgba(124, 77, 255, .28),
    0 0 120px rgba(124, 77, 255, .14);
  border-color: rgba(255, 255, 255, .16);
}

.trust-card:hover::after {
  transform: scale(1.25);
  opacity: 1;
}

.trust-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: linear-gradient(135deg,
      rgba(124, 77, 255, .38),
      rgba(124, 77, 255, .22));
  box-shadow: 0 0 35px rgba(124, 77, 255, .28),
    inset 0 0 24px rgba(255, 255, 255, .08);
}

.trust-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.trust-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}

.telegram-btn {
  position: relative;
  overflow: hidden;
  padding: 18px 40px;
  font-size: 1.08rem;
  border-radius: 22px;
  background: linear-gradient(135deg,
      #7c4dff,
      #b388ff);
  box-shadow: 0 0 35px rgba(124, 77, 255, .38),
    0 0 100px rgba(124, 77, 255, .18);
  transition: .4s;
}

.telegram-btn:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 0 55px rgba(124, 77, 255, .55),
    0 0 140px rgba(124, 77, 255, .28);
}

.telegram-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .28),
      transparent);
  transition: .8s;
}

.telegram-btn:hover::before {
  left: 130%;
}

@media(max-width:900px) {
  .hero {
    padding: 50px 0 40px
  }
  .hero-grid {
    grid-template-columns: 1fr
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }
  .price-card {
    padding: 18px;
    text-align: center
  }

  .price {
    font-size: 2rem;
    margin: 12px 0 0
  }
  .popular-badge {
    position: static;
    display: block;
    text-align: center;
    margin: 8px 0 0;
    font-size: .75rem
  }
  .popular::before {
    display: none
  }
  .popular {
    border: none;
    box-shadow: 0 0 20px rgba(124, 77, 255, .15)
  }
  .nav-links {
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(10, 12, 28, .95);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    display: none;
  }
  .nav-links.active {
    display: flex
  }
  .burger {
    display: block
  }
}

@keyframes pulseInfinity {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(124, 77, 255, .2));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 18px rgba(124, 77, 255, .55));
  }
}

.infinity-stat {
  position: relative;
  overflow: hidden;
}

.infinity-stat h3 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
}

.infinity-bg {
  position: absolute;
  top: -22px;
  right: -8px;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #b388ff, #a56eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .16;
  pointer-events: none;
  animation: infinityFloat 1.8s ease-in-out infinite;
}

@keyframes infinityFloat {

  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: .14;
  }

  50% {
    transform: translateY(-6px) scale(1.06);
    opacity: .24;
  }
}

.stat.mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: .3s;
}

.stat.mini:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .14);
}

.stat .icon {
  font-size: 1.3rem;
  opacity: .9;
  filter: grayscale(1) brightness(2);
}

.stat .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.stat .label {
  font-size: .85rem;
  color: var(--muted);
}

.icon {
  display: inline-block;
  animation: rotateSoft 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes rotateSoft {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

.stat.mini:hover .icon {
  animation-duration: 1.5s;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-icon {
  margin: 0 auto 22px;
}

/* CABINET BUTTON */
.btn-cabinet {
  border: 1px solid rgba(124, 77, 255, 0.5);
  background: rgba(124, 77, 255, 0.1);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 12px !important;
  font-size: 0.9rem;
  margin-left: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-cabinet:hover {
  background: var(--accent) !important;
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.4);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .btn-cabinet {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

/* PARTICLES CANVAS */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: block;
}

/* CTA ACTIONS BLOCK */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-cabinet-btn {
  position: relative;
  overflow: hidden;
  padding: 18px 40px;
  font-size: 1.08rem;
  border-radius: 22px;
  border: 1px solid rgba(124, 77, 255, 0.4);
  background: rgba(124, 77, 255, 0.05);
  color: #fff;
  box-shadow: 0 0 25px rgba(124, 77, 255, 0.15);
  transition: .4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.cta-cabinet-btn:hover {
  transform: translateY(-5px) scale(1.04);
  background: rgba(124, 77, 255, 0.15);
  border-color: rgba(124, 77, 255, 0.8);
  box-shadow: 0 0 45px rgba(124, 77, 255, 0.35);
}

.cta-cabinet-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: .8s;
}

.cta-cabinet-btn:hover::before {
  left: 130%;
}

@media (max-width: 900px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 380px;
    margin: 20px auto 0;
  }
  .telegram-btn,
  .cta-cabinet-btn {
    width: 100% !important;
    text-align: center;
    box-sizing: border-box;
    justify-content: center;
    display: inline-flex;
  }
}

/* ==========================================
   MOBILE & UI UX IMPROVEMENTS (STICKY, BURGER, ACCORDION, FLOATING CTA)
   ========================================== */

/* 1. Glassmorphic header sticky updates */
/* Header sticky & blur properties are defined in the main header rule at the top of the file */

/* 2. Burger Button custom animated element styling */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  width: 24px;
  height: 24px;
  position: relative;
  outline: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-child(1) {
  top: 4px;
}

.burger span:nth-child(2) {
  top: 11px;
}

.burger span:nth-child(3) {
  top: 18px;
}

/* Active states (transforms to X) */
.burger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.burger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .burger {
    display: block;
  }
}

/* 3. Drop-down Menu animation updates on mobile */
@media (max-width: 900px) {
  .nav {
    position: relative;
  }
  .nav-links {
    position: absolute !important;
    top: 100%; /* aligns exactly below the header container */
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    height: 0;
    max-height: 0;
    background: #060816 !important; /* solid background to prevent page text overlay */
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    border-radius: 0 0 20px 20px !important; /* rounded bottom corners for premium floating feel */
    padding: 0 20px;
    flex-direction: column;
    display: flex !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    visibility: hidden;
  }

  .nav-links.active {
    height: auto;
    max-height: 100vh;
    padding: 30px 20px 40px !important; /* added bottom padding to prevent button cutoff */
    opacity: 1;
    pointer-events: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    visibility: visible;
  }

  .nav-links a:not(.btn-cabinet) {
    font-size: 1.15rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-links a:not(.btn-cabinet):hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
  }

  .nav-links a:not(.btn-cabinet):last-of-type {
    border-bottom: none;
  }

  .nav-links a.btn-cabinet {
    display: flex !important; /* flex layout to prevent browser rendering cutoff */
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 0;
    box-sizing: border-box;
    border: 1px solid rgba(124, 77, 255, 0.5) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 1.05rem;
  }
}

/* 4. Section padding optimization on mobile */
@media (max-width: 900px) {
  .section {
    padding: 55px 0 !important;
  }
}

/* 5. Smooth FAQ accordions updates */
.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  padding-right: 4px;
}

.accordion summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion[open] summary::after {
  transform: rotate(45deg);
}

.accordion-content {
  margin-top: 16px;
  line-height: 1.8;
  color: var(--muted);
  animation: smoothSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}

@keyframes smoothSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px) scaleY(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* 6. Floating conversion CTA button on mobile */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 999;
  width: calc(100% - 32px);
  max-width: 360px;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #7c4dff, #b388ff);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(124, 77, 255, 0.45);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  display: none;
}

.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .floating-cta {
    display: block; /* Show only on mobile screens */
  }
}

/* 7. Servers block styling */
.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.server-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.server-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 77, 255, 0.4);
  box-shadow: 0 10px 40px rgba(124, 77, 255, 0.15);
}

.server-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.server-flag {
  font-size: 2rem;
  line-height: 1;
}

.server-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.server-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.info-label {
  color: var(--muted);
}

.info-value {
  color: #fff;
  font-weight: 600;
}

.info-value.ping-low {
  color: #00ff88;
}

.server-load-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}

.load-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #7c4dff, #b388ff);
  transition: width 1s ease-in-out;
}

.server-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00ff88;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Wiggle animation & Support icons */
.support-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
  animation: wiggle 0.6s ease-in-out;
}

.support-card:hover .support-icon {
  transform: scale(1.05);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.35);
  animation: wiggle 0.6s ease-in-out;
}

@keyframes wiggle {
  0%, 100% { transform: scale(1.05) rotate(0); }
  25% { transform: scale(1.05) rotate(-8deg); }
  75% { transform: scale(1.05) rotate(8deg); }
}

/* Disable navigation line animation on mobile dropdown */
@media (max-width: 900px) {
  .nav-links a:not(.btn-cabinet)::after {
    display: none !important;
  }
}

/* VPN WIDGET STYLING */
.vpn-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.widget-title-area {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.vpn-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vpn-status-badge.connected {
  border-color: rgba(0, 255, 136, 0.25);
  background: rgba(0, 255, 136, 0.06);
  color: #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.05);
}

.vpn-status-badge.disconnected {
  border-color: rgba(255, 77, 77, 0.25);
  background: rgba(255, 77, 77, 0.06);
  color: #ff4d4d;
  box-shadow: 0 0 15px rgba(255, 77, 77, 0.05);
}

.status-dot-glow {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  position: relative;
}

.status-dot-glow::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  background: currentColor;
  animation: pulseDot 2s infinite;
}

.vpn-button-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  width: 140px;
  height: 140px;
}

.vpn-toggle-btn {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle, #161a36 0%, #0d0f20 100%);
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.6), 
              0 0 0 4px rgba(255, 255, 255, 0.01),
              0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 2;
  outline: none;
}

.vpn-toggle-btn svg {
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.vpn-toggle-btn.active {
  color: #00ff88;
  background: radial-gradient(circle, #122c24 0%, #081210 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4),
              0 0 0 6px rgba(0, 255, 136, 0.15),
              0 0 35px rgba(0, 255, 136, 0.35),
              0 0 70px rgba(0, 255, 136, 0.2);
}

.vpn-toggle-btn.active svg {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.85));
}

.vpn-toggle-btn:hover {
  transform: scale(1.05);
}

.vpn-toggle-btn:active {
  transform: scale(0.95);
}

.vpn-btn-ring-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.25);
  animation: spinSlow 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.vpn-widget.active .vpn-btn-ring-glow {
  border-color: rgba(0, 255, 136, 0.25);
  animation-duration: 15s;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.widget-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.widget-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.05);
}

.stat-card-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.stat-card-values {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-card-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.stat-card-unit {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

.stat-card-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

.widget-server-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 18px;
  border-radius: 14px;
  width: 100%;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

/* SERVER LOAD BAR ENHANCEMENTS */
.server-load {
  margin-top: 14px;
  margin-bottom: 16px;
  text-align: left;
}

.load-title-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.load-fill {
  background: linear-gradient(90deg, #7c4dff, #b388ff);
  transition: width 1s ease-in-out, background 0.5s ease;
}

.load-fill.low {
  background: linear-gradient(90deg, #00ff88, #88ff00);
}

.load-fill.medium {
  background: linear-gradient(90deg, #ffc800, #ff8800);
}

.load-fill.high {
  background: linear-gradient(90deg, #ff5500, #ff0055);
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}
