@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #0f1115;
  --bg-radial: radial-gradient(circle at 50% 0%, #141824 0%, #0f1115 60%);
  --primary-green: #3B82F6;
  --secondary-green: #60a5fa;
  --primary-glow: 0 0 20px rgba(59, 130, 246, 0.45);
  --primary-glow-hover: 0 0 35px rgba(96, 165, 250, 0.7);
  --card-bg: rgba(20, 24, 33, 0.5);
  --card-border: rgba(255, 255, 255, 0.06);
  --glass-bg: rgba(15, 17, 21, 0.7);
  --glass-border: rgba(59, 130, 246, 0.15);
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --text-light: #e2e8f0;
  --font-sans: 'Outfit', 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==================================================
   GLOBAL STYLES & RESET
   ================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  background-image: var(--bg-radial);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

input, button, textarea, select {
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.3);
  border-radius: 4px;
  transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green);
  box-shadow: var(--primary-glow);
}

/* Typography Utilities */
.text-glow {
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, var(--text-white) 30%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==================================================
   CONTAINERS & LAYOUT
   ================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ==================================================
   BUTTONS
   ================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, #2563eb 100%);
  color: var(--text-white);
  border: none;
  box-shadow: var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--primary-glow-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-green {
  background: transparent;
  color: var(--primary-green);
  border: 1.5px solid var(--primary-green);
}

.btn-outline-green:hover {
  background: rgba(59, 130, 246, 0.1);
  box-shadow: var(--primary-glow);
  transform: translateY(-2px);
}

/* ==================================================
   STICKY NAVIGATION BAR
   ================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Secret Logo Wrapper styling */
.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 5;
  color: var(--text-white);
}

.logo span {
  color: var(--primary-green);
  text-shadow: var(--primary-glow);
}

/* Progress ring overlaying the logo */
.logo-hold-ring {
  position: absolute;
  top: -12px;
  left: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-hold-ring.active {
  opacity: 1;
  transform: scale(1);
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 3px;
}

.progress-circle {
  fill: none;
  stroke: var(--primary-green);
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-dasharray: 283; /* 2 * PI * r (r=45) */
  stroke-dashoffset: 283;
  transform: rotate(-90deg);
  transform-origin: 50px 50px;
  filter: drop-shadow(0 0 5px var(--primary-green));
}

.logo-hold-ring.active .logo-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 30px 10px rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.logo-hold-text {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-green);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

.logo-hold-text.active {
  opacity: 1;
}

/* Nav Menu Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  box-shadow: var(--primary-glow);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--text-white);
  transition: var(--transition);
}

/* ==================================================
   GLASSMORPHISM CARD STYLING
   ================================================== */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: skewX(-25deg);
  transition: 0.75s ease;
  pointer-events: none;
}

.glass-card:hover::before {
  left: 125%;
}

.glass-card.glow-hover:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.15);
}

/* ==================================================
   HERO SECTION
   ================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animated decorative background grid */
.hero-glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

/* Beautiful dynamic 3D-looking hosting node card visualization */
.hero-vps-card {
  width: 100%;
  max-width: 380px;
  z-index: 2;
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--primary-glow);
  transform: rotate3d(1, 1, 0, 15deg);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-vps-card .card-line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
}

.hero-vps-card .card-line:last-child {
  border-bottom: none;
}

/* ==================================================
   FEATURES SECTION
   ================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  margin-bottom: 24px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary-green);
  color: var(--text-white);
  box-shadow: var(--primary-glow);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==================================================
   STATISTICS SECTION
   ================================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  text-shadow: var(--primary-glow);
  margin-bottom: 6px;
}

.stat-item p {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
}

/* ==================================================
   WHY CHOOSE US & INFRASTRUCTURE
   ================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.why-illustration {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid var(--card-border);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.spec-list {
  list-style: none;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.spec-list li:last-child {
  margin-bottom: 0;
}

.spec-icon {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-top: 4px;
}

.spec-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.spec-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==================================================
   CALL TO ACTION (CTA)
   ================================================== */
.cta-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 40px rgba(59, 130, 246, 0.05);
}

.cta-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-wrapper p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================================================
   MINECRAFT PLAN CARDS
   ================================================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2563eb 100%);
  color: var(--text-white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: var(--primary-glow);
  text-transform: uppercase;
}

.plan-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-ram {
  font-size: 1.1rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
}

.plan-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-white);
}

.plan-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.plan-features li i {
  color: var(--primary-green);
  font-size: 1rem;
}

.plan-action {
  width: 100%;
}

/* ==================================================
   VPS HOSTING LAYOUT & ARCHITECTURE TABS
   ================================================== */
.vps-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.tab-btn.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.1);
}

.vps-pane {
  display: none;
}

.vps-pane.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  animation: fadeIn 0.4s ease-in-out;
}

.vps-plan-spec {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
}

.vps-plan-spec .spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light);
}

.vps-plan-spec .spec-label {
  color: var(--text-muted);
}

.vps-plan-spec .spec-val {
  font-weight: 600;
}

/* ==================================================
   FAQ ACCORDION
   ================================================== */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(20, 24, 33, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  color: var(--primary-green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary-green);
  color: var(--text-white);
  transform: rotate(180deg);
  box-shadow: var(--primary-glow);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 24px;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
}

/* ==================================================
   ABOUT PAGE & INFRASTRUCTURE
   ================================================== */
.about-hero {
  text-align: center;
  padding: 140px 0 60px;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  text-align: center;
  padding: 30px;
}

.contact-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 16px;
  display: block;
}

.payment-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ==================================================
   ADMIN LOGIN STYLING
   ================================================== */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-green);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.remember-me {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.remember-checkbox input {
  cursor: pointer;
  accent-color: var(--primary-green);
}

.auth-btn {
  width: 100%;
}

.auth-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}

.auth-alert.danger {
  background: rgba(
