:root {
  --color-bg: #020103;
  --color-text: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-tertiary: rgba(255, 255, 255, 0.5);
  --color-text-muted: rgba(255, 255, 255, 0.3);
  --color-accent: #00abc2;
  --border-color: rgba(255, 255, 255, 0.15);
  --gradient-accent: linear-gradient(90deg, #00abc2 0%, #0076d7 100%);
}

html, body {
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.top-notice {
  background: #0076d7;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
}

.qs-logo {
  width: 210px;
  height: auto;
  display: block;
}

/* Základní styl článku pro tmavé pozadí */
.blog-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #ffffff; /* bílý text */
  background-color: transparent; /* průhledné, zachová pozadí stránky */
}

/* Nadpis článku */
.blog-article header h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: center;
  color: #ffffff; /* bílý nadpis */
}

/* Úvodní text */
.blog-article .intro p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: justify;
  color: #ffffff;
}

/* Sekce kroků */
.blog-article .step {
  margin-bottom: 40px;
}

/* Nadpisy kroků */
.blog-article .step h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #0076d7; /* akcentní barva pro nadpisy sekcí */
}

/* Odrážky a číslované seznamy */
.blog-article ul,
.blog-article ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.blog-article li {
  margin-bottom: 10px;
  color: #ffffff;
}

/* Preformátovaný text (např. IP nebo příkaz) */
.blog-article pre {
  background-color: rgba(255, 255, 255, 0.05); /* tmavší box, lehce odlišitelný */
  padding: 12px 15px;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  color: #ffffff;
}

/* Odrážky a tipy */
.blog-article .step ul li strong {
  color: #00abc2;
}

/* Texty v odstavcích */
.blog-article p {
  margin-bottom: 20px;
  color: #ffffff;
}

/* Responzivita pro tablety a mobily */
@media (max-width: 1024px) {
  .blog-article {
    padding: 30px 15px;
  }

  .blog-article header h1 {
    font-size: 2rem;
  }

  .blog-article .step h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .blog-article {
    padding: 20px 10px;
  }

  .blog-article header h1 {
    font-size: 1.6rem;
  }

  .blog-article .step h2 {
    font-size: 1.3rem;
  }

  .blog-article p, .blog-article li {
    font-size: 1rem;
  }
}

.blog-image {
  width: 100%;
  height: auto; /* doporučeno */
  border-radius: 12px;
  margin: 20px 0 40px 0;
  display: block;
}

 /* CTA Button */
        .cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 12px 40px;
            font-size: 14px;
            font-weight: 400;
            color: white;
            background: linear-gradient(135deg, #00abc2 0%, #0076d7 100%);
            border: none;
            border-radius: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px var(--glow);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 50px var(--glow);
        }

        .cta-button:active {
            transform: translateY(0);
        }

.page-wrapper {
  max-width: 1402px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.background-elements {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1402px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.background-elements .bg-blur-1 {
  position: absolute;
  left: 50%;
  top: 376px;
  width: 693px;
  height: 694px;
  background-color: #121798;
  filter: blur(200px);
  border-radius: 50%;
  transform: translateX(-50%);
}

.background-elements .bg-blur-2 {
  position: absolute;
  left: 50%;
  top: 483px;
  width: 478px;
  height: 480px;
  background-color: #00d5d2;
  filter: blur(150px);
  border-radius: 50%;
  transform: translateX(-50%);
}

.background-elements .bg-char-1 {
  position: absolute;
  left: 81px;
  top: 249px;
  width: 441px;
  height: 408px;
}

.background-elements .bg-char-2 {
  position: absolute;
  left: 981px;
  top: 249px;
  width: 248px;
  height: 437px;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1400px) {
  .background-elements {
    left: 50%;
    transform: translateX(-50%);
  }
  .bg-char-1,
  .bg-char-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .background-elements .bg-blur-1 {
    width: 400px;
    height: 700px;
    top: 200px;
    filter: blur(150px);
    overflow: auto;
  }

  .background-elements .bg-blur-2 {
    width: 300px;
    height: 600px;
    top: 280px;
    filter: blur(100px);
  }
}

@media (max-width: 480px) {
  .background-elements .bg-blur-1 {
    width: 300px;
    height: 700px;
    top: 150px;
    filter: blur(100px);
    overflow: auto;
  }

  .background-elements .bg-blur-2 {
    width: 200px;
    height: 600px;
    top: 200px;
    filter: blur(80px);
  }
}

.site-header {
  border-bottom: 1px solid var(--border-color);
  padding: 13px 0;
  position: sticky;
  top: 0;
  background-color: rgba(2, 1, 3, 0.1);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.header-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 185px;
}
.logo {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}
.main-nav {
  display: flex;
  gap: 30px;
  padding: 8px 40px;
  border: 1px solid var(--border-color);
  border-radius: 60px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-text-muted);
  transition: color 0.3s;
}
.main-nav a:hover {
  color: var(--color-text);
}
.login-cta-container {
  flex-shrink: 0;
  padding: 6px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}
.login-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: white;
  background: linear-gradient(135deg, #00abc2 0%, #0076d7 100%);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px var(--glow);
  position: relative;
  overflow: hidden;
}
.login-cta img {
  width: 16.6px;
  height: 16.6px;
}

.login-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .login-cta:hover::before {
            left: 100%;
        }

        .login-cta:hover {
            transform: translateY(-1.5px);
            box-shadow: 0 15px 50px var(--glow);
        }

        .login-cta:active {
            transform: translateY(0);
        }

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
  position: absolute;
  color: #ffffff;
}
.close-icon {
  font-size: 24px;
  transition: opacity 0.3s ease;
  position: absolute;
  color: #ffffff;
}

.hamburger-icon {
  opacity: 1;
}

.close-icon {
  opacity: 0;
}

.hamburger.active .hamburger-icon {
  opacity: 0;
}

.hamburger.active .close-icon {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-content {
  display: contents;
}

.mobile-login-cta-container,
.mobile-login-cta {
  display: none;
}

@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .hamburger {
    display: flex;
    order: 2;
  }

  .logo {
    order: 1;
    z-index: 1001;
    position: relative;
  }

  .desktop-login {
    display: none;
  }

  .main-nav {
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 24px 24px;
    border: none;
    border-radius: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    box-sizing: border-box;
  }

  .main-nav.active {
    transform: translateX(0);
    opacity: 1;
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .main-nav a {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
    padding: 8px 20px;
    transition: color 0.3s;
  }

  .main-nav a:hover {
    color: var(--color-accent);
  }

  .mobile-login-cta-container {
    display: block;
    padding: 6px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-top: 24px;
    width: fit-content;
  }

  .mobile-login-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-accent);
    padding: 6px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  .mobile-login-cta img {
    width: 20px;
    height: 20px;
  }
}

.hero-section {
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
}
.hero-section .page-wrapper {
  align-items: center;
  gap: 50px;
}
.hero-title {
  font-size: 82px;
  font-weight: 400;
  line-height: 84px;
  letter-spacing: -4.15px;
  background: linear-gradient(180deg, #ffffff 10%, #aee3ff 95.83%);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
}
.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  max-width: 556px;
  margin: 30px 0 0px;
}
.hero-badge {
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1.95px;
  color: var(--color-accent);
  background: linear-gradient(
    90deg,
    rgba(41, 118, 153, 0) 0%,
    rgba(69, 224, 255, 0.21) 100%
  );
  border: 1px solid var(--border-color);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 0px;
}
.info-blocks-container {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.info-block {
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 5px 25px;
  text-align: left;
  position: relative;
}
.discord-block {
  background: linear-gradient(
    270deg,
    rgba(69, 177, 255, 0.15) 0%,
    rgba(41, 118, 153, 0) 100%
  );
  width: 466px;
  height: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.discord-content {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.info-block-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  margin: 0;
}
.discord-join {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.arrow-button:hover {
  background: rgba(81, 200, 255, 0.05);
  box-shadow: 0 6px 20px rgba(83, 192, 255, 0.1);
}

.arrow-button img {
  width: 10px;
  height: auto;
  transition: transform 0.3s ease;
}

.arrow-button:hover img {
  transform: translateX(2px);
}

.arrow-button img {
  width: 10px;
  height: auto;
}

.discord-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 20px;
}
.discord-icon {
  width: 152px;
  height: 117px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.server-block {
  background: linear-gradient(
    270deg,
    rgba(41, 118, 153, 0) 0%,
    rgba(69, 177, 255, 0.15) 100%
  );
  width: 466px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-left: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.server-block .info-block-title {
  font-size: 17px;
}
.server-ip {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-tertiary);
  font-size: 16px;
}
.play-button {
  width: 27px;
  height: 27px;
  background: linear-gradient(0deg, #0051c3 0%, #00abc2 100%);
  border-radius: 6px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px var(--glow);
  position: relative;
  overflow: hidden;
}
.play-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .play-button:hover::before {
            left: 100%;
        }

        .play-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 15px 50px var(--glow);
        }

        .play-button:active {
            transform: translateY(0);
        }
.play-icon-shape {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid #d9d9d9;
  border-radius: 1px;
}
.copy-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.copy-button:hover {
  color: rgba(255, 255, 255, 1);
}
.server-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--color-text-tertiary);
}
.server-stats p {
  margin: 0;
}
.server-stats span {
  color: var(--color-text);
}

@media (max-width: 1023px) {
  .info-blocks-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .info-block {
    width: 90%;
    max-width: 466px;
  }
  .discord-icon {
    width: 120px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -2px;
  }
  .hero-subtitle {
    font-size: 18px;
    margin: 20px 0 30px;
    line-height: 1.4;
  }
  .info-block {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}

.about-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-bottom: 30px;
}
.about-card hr {
  border: none;
  height: 1px;
  background-color: var(--border-color);
  margin: 0;
}
.about-benefits-card {
  width: 308px;
  height: 370px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 14px;
  line-height: 26px;
}
.about-list li img {
  width: 15px;
  height: 15px;
}
.about-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-header h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  margin: 0;
}
.about-header p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-section {
  padding: 14px 0 80px;
}
.why-section .why-page-wrapper {
  align-items: center;
  gap: 0px;
}
.why-page-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.why-text {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 30px;
}

.blog-section {
  padding: 35px 0 80px;
}
.blog-section .page-wrapper {
  align-items: center;
  gap: 0px;
}
.blog-content-grid,
.clanky-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 20px;
}
.blog-card,
.clanek-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.blog-card hr,
.clanek-card hr {
  border: none;
  height: 1px;
  background-color: var(--border-color);
  margin: 0;
}
.clanek-card {
  width: 308px;
}
.clanek-card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.clanek-card-header h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}
.clanek-card-header p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0;
}
@media (max-width: 1023px) {
  .blog-content-grid {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .blog-card {
    width: 45%;
    min-width: 280px;
    max-width: 350px;
    height: auto;
    min-height: 350px;
  }
  .clanky-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .clanek-card {
    width: 90%;
    max-width: 400px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
  .blog-section .page-wrapper {
    gap: 40px;
  }
  .blog-content-grid {
    flex-direction: column;
    align-items: center;
  }
  .blog-card {
    width: 90%;
    max-width: 400px;
  }
  .clanky-grid {
    gap: 15px;
  }
  .clanek-card {
    width: 90%;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .blog-card,
  .clanek-card {
    width: 95%;
    padding: 16px;
  }
  .clanek-card-header h3 {
    font-size: 20px;
  }
  .clanek-card-header p {
    font-size: 14px;
  }
}


.vip-section {
  padding: 14px 0 80px;
}
.vip-section .page-wrapper {
  align-items: center;
  gap: 0px;
}
.section-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 65px;
  text-align: center;
  margin: 0 0 20px;
}
.vip-content-grid,
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.vip-card,
.price-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.benefits-card {
  width: 308px;
  height: 370px;
}
.payment-card {
  width: 308px;
  height: 370px;
}
.card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-header h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  margin: 0;
}
.card-header p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0;
}
.vip-card hr,
.price-card hr {
  border: none;
  height: 1px;
  background-color: var(--border-color);
  margin: 0;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 14px;
  line-height: 26px;
}
.benefits-list li img {
  width: 15px;
  height: 15px;
}
.pricing-grid {
  padding-top: 20px;
}
.price-card {
  width: 308px;
}
.buy-button {
  background: var(--gradient-accent);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 6px 15px;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  transition: transform 0.2s;
}
.buy-button:hover {
  transform: scale(1.05);
}

@media (max-width: 1023px) {
  .vip-content-grid {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .vip-card {
    width: 45%;
    min-width: 280px;
    max-width: 350px;
    height: auto;
    min-height: 350px;
  }
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .price-card {
    width: 90%;
    max-width: 400px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
  .vip-section .page-wrapper {
    gap: 40px;
  }
  .vip-content-grid {
    flex-direction: column;
    align-items: center;
  }
  .vip-card {
    width: 90%;
    max-width: 400px;
  }
  .pricing-grid {
    gap: 15px;
  }
  .price-card {
    width: 90%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .vip-card,
  .price-card {
    width: 95%;
    padding: 16px;
  }
  .card-header h3 {
    font-size: 20px;
  }
  .card-header p {
    font-size: 14px;
  }
}

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 41px 0;
  margin-top: auto;
}
.footer-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 60px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--color-text-tertiary);
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: var(--color-text);
}
.footer-logo {
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .footer-nav {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .discord-join span {
    display: none;
  }
  .hero-badge {
    display: none;
  }
}
