@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&family=Noto+Sans+SC:wght@400;500;700;900&display=swap');
/* Base Reset & Variables */
:root {
  --bg-color: #030712;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-color: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.4);
  --neon-purple: #8b5cf6;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: 'Outfit', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}



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

/* Space Background Animation */
.space-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
  background-color: var(--bg-color);
  background-image: 
    radial-gradient(ellipse at 80% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  overflow: hidden;
}



.stars {
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 100px 50px #fff, 200px 200px #fff, 400px 300px #fff, 500px 100px #fff, 
              700px 400px #fff, 800px 50px #fff, 1000px 250px #fff, 1200px 450px #fff, 
              300px 500px #fff, 900px 600px #fff, 1100px 150px #fff;
  animation: animStar 50s linear infinite;
}
.stars::after {
  content: " ";
  position: absolute;
  top: 2000px;
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 100px 50px #fff, 200px 200px #fff, 400px 300px #fff, 500px 100px #fff, 
              700px 400px #fff, 800px 50px #fff, 1000px 250px #fff, 1200px 450px #fff, 
              300px 500px #fff, 900px 600px #fff, 1100px 150px #fff;
}
@keyframes animStar {
  from { transform: translateY(0px); }
  to { transform: translateY(-2000px); }
}

/* Meteor / Shooting Star Effect */
.meteor {
  position: absolute;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  animation: meteorFall 3s linear infinite;
  opacity: 0;
}
.meteor:nth-child(1) { top: -50px; left: 20%; animation-delay: 0s; }
.meteor:nth-child(2) { top: -50px; left: 50%; animation-delay: 1.5s; }
.meteor:nth-child(3) { top: -50px; left: 80%; animation-delay: 2.5s; }

@keyframes meteorFall {
  0% { transform: translateY(-50px) translateX(50px) rotate(-45deg); opacity: 1; }
  100% { transform: translateY(100vh) translateX(-100vh) rotate(-45deg); opacity: 0; }
}

/* Floating Planets */
.planet {
  position: absolute;
  border-radius: 50%;
  animation: floatEarth 12s ease-in-out infinite, spinTexture 40s linear infinite;
  z-index: -1;
  background-image: url('earth-map.jpg');
  background-size: 200% 100%;
  box-shadow: inset -10px -10px 20px rgba(0,0,0,0.8), 0 0 30px rgba(59, 130, 246, 0.4);
}
.planet-1 {
  width: 150px;
  height: 150px;
  top: 15%;
  right: 10%;
  opacity: 0.6;
}
.planet-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  opacity: 0.4;
  animation-duration: 15s, 30s;
  animation-direction: alternate, reverse;
}

@keyframes spinTexture {
  0% { background-position: 0 0; }
  100% { background-position: -200% 0; }
}

@keyframes floatEarth {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}
.subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--accent-color);
  color: white;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--accent-glow);
  cursor: pointer;
  border: none;
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
}
.btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 24px 50px -12px rgba(0, 0, 0, 0.5);
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 34px 50px -12px rgba(0, 0, 0, 0.6);
}

/* Navbar */
nav {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: none;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 30px;
  }
  .nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
  }
  .nav-links a:hover {
    color: var(--text-primary);
  }
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tg-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tg-link:hover {
  color: #3b82f6; /* Accent color / Telegram blue */
}
.logo {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  color: var(--accent-color);
  text-shadow: 0 0 15px var(--accent-color);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.2fr 1fr;
    padding: 120px 0;
    text-align: left;
  }
  .hero-content {
    padding-right: 40px;
  }
}

.premium-hero-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 420px;
  margin: 0 auto;
}
.network-canvas {
  position: relative;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}
.globe-scene {
  width: 120px; height: 120px;
  position: relative;
  transform-style: preserve-3d;
  animation: spinGlobe 15s linear infinite;
}
@keyframes spinGlobe {
  0% { transform: rotateX(-15deg) rotateY(0deg); }
  100% { transform: rotateX(-15deg) rotateY(360deg); }
}
.real-earth-sphere {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  background-image: url('earth-map.jpg');
  background-size: 200% 100%;
  animation: counterSpinGlobe 15s linear infinite, spinTexture 15s linear infinite;
  box-shadow: inset -15px -15px 30px rgba(0,0,0,0.8), inset 5px 5px 20px rgba(255,255,255,0.2), 0 0 40px rgba(59, 130, 246, 0.4);
}
@keyframes counterSpinGlobe {
  0% { transform: rotateY(0deg) rotateX(15deg); }
  100% { transform: rotateY(-360deg) rotateX(15deg); }
}
.globe-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--accent-color);
}
.globe-label {
  position: absolute;
  top: 50%; left: 50%;
  transform-style: preserve-3d;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  margin-top: -6px;
  margin-left: -15px;
  text-shadow: 0 0 5px rgba(59, 130, 246, 0.8), 0 0 10px rgba(0, 0, 0, 0.8);
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  letter-spacing: 0.5px;
}

.premium-stats {
  display: flex;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}
.p-stat {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.p-stat:first-child {
  border-right: 1px solid var(--glass-border);
}
.p-dot {
  width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; flex-shrink: 0;
}
.p-dot.green { background: #10b981; box-shadow: 0 0 10px #10b981; }
.p-dot.blue { background: #3b82f6; box-shadow: 0 0 10px #3b82f6; }
.p-info span { font-size: 0.85rem; color: var(--text-secondary); display: block; margin-bottom: 4px;}
.p-info strong { font-size: 1.1rem; color: #fff; }

/* Advantages Section */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.advantage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}
.advantage-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Supported Services Section */
.services-card {
  text-align: center;
  margin-bottom: 30px;
}
.service-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.service-badge {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.pricing-card {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}
.pricing-card.featured {
  border-color: rgba(59, 130, 246, 0.5);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15), inset 0 2px 20px rgba(59, 130, 246, 0.2);
  transform: scale(1.02);
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
  border-color: rgba(59, 130, 246, 0.8);
}
.price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 5px 0 25px;
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price span:first-child {
  font-size: 1.2rem;
  color: var(--text-secondary);
}
.price .period {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-secondary);
}
.features-list {
  list-style: none;
  margin: 0 0 30px 0;
  flex-grow: 1;
  border-top: 1px solid var(--glass-border);
  padding-top: 25px;
}
.features-list li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}
.features-list li::before {
  content: "✓";
  color: var(--text-primary);
  margin-right: 12px;
  font-weight: bold;
  opacity: 0.8;
}
.pricing-card .btn {
  width: 100%;
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
details {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px 20px;
}
summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s;
}
details[open] summary::after {
  transform: rotate(45deg);
}
.faq-content {
  margin-top: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  font-style: italic;
  color: var(--text-secondary);
}
.reviewer {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
  font-style: normal;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars-rating {
  color: #fbbf24;
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  margin-top: 50px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* Content Pages (About, Terms, etc.) */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
}
.content-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.content-page h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
}
.content-page p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}
.content-page ul {
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-left: 20px;
}
.content-page li {
  margin-bottom: 10px;
}

/* Blog / Articles Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.blog-card {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}
.blog-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.blog-card a.read-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  position: static; /* Ensure the pseudo-element is positioned relative to the card */
}
.blog-card a.read-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.blog-card a.read-more:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

/* Article Page Layout */
.article-page-wrapper {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 992px) {
  .article-page-wrapper {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}

/* Sidebar */
.article-sidebar {
  padding: 25px 20px;
  position: sticky;
  top: 140px;
  margin-top: 100px;
}
.article-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
}
.article-sidebar ul {
  list-style: none;
}
.article-sidebar li {
  margin-bottom: 12px;
}
.article-sidebar a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s;
  display: block;
  line-height: 1.5;
}
.article-sidebar a:hover, .article-sidebar a.active {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Main Content */
.article-main {
  padding: 40px 50px;
}
@media (max-width: 768px) {
  .article-main {
    padding: 30px 20px;
  }
}
.article-header {
  text-align: center;
  margin-bottom: 40px;
}
.article-header h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  line-height: 1.3;
}
.article-meta {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.article-content {
  color: #cbd5e1; /* slightly lighter than text-secondary for better reading */
  line-height: 1.8;
  font-size: 1.05rem;
}
.article-content h2 {
  font-size: 1.6rem;
  color: #fff;
  margin: 40px 0 20px;
  text-align: left;
}
.article-content h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 30px 0 15px;
}
.article-content p {
  margin-bottom: 20px;
}
.article-content a {
  color: var(--accent-color);
  text-decoration: underline;
}
.article-content a:hover {
  color: var(--accent-hover);
}
.article-content strong {
  color: #fff;
}
.article-content .highlight-box {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--accent-color);
  padding: 15px 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 500;
  transition: color 0.3s;
}
.back-link:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero { padding: 60px 0; }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}
