* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy-900: #060E1A;
  --navy-800: #0B1A2E;
  --navy-700: #122A4A;
  --navy-600: #1B3D6B;
  --teal-500: #1D9E75;
  --teal-400: #5DCAA5;
  --teal-300: #9FE1CB;
  --teal-100: #E1F5EE;
  --white: #FFFFFF;
  --gray-100: #F4F6F8;
  --gray-200: #E2E6EB;
  --gray-400: #8A94A0;
  --gray-600: #4A5568;
  --gray-800: #1A202C;
}
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--gray-800); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav { background: var(--navy-800); padding: 0 2rem; position: fixed; top: 0; width: 100%; z-index: 100; border-bottom: 1px solid var(--navy-700); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.5px; }
.logo span { color: var(--teal-400); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--teal-300); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--teal-500); color: var(--white) !important; padding: 8px 20px; border-radius: 6px; font-weight: 600; transition: background 0.2s; }
.nav-cta:hover { background: #178A64; }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu svg { width: 28px; height: 28px; stroke: var(--teal-300); }

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%); padding: 10rem 2rem 6rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 80%, rgba(29,158,117,0.08) 0%, transparent 50%), radial-gradient(circle at 70% 20%, rgba(93,202,165,0.05) 0%, transparent 40%); }
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(29,158,117,0.15); color: var(--teal-400); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid rgba(29,158,117,0.25); }
.hero h1 { font-size: 3.2rem; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -1px; }
.hero h1 em { font-style: normal; color: var(--teal-400); }
.hero p { font-size: 1.2rem; color: var(--teal-300); max-width: 580px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--teal-500); color: var(--white); padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: #178A64; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--teal-300); padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; border: 1px solid var(--navy-600); cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-secondary:hover { border-color: var(--teal-400); color: var(--white); }

/* SECTIONS */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { display: inline-block; color: var(--teal-500); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--gray-800); margin-bottom: 1rem; letter-spacing: -0.5px; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; line-height: 1.7; }
.bg-light { background: var(--gray-100); }
.bg-dark { background: var(--navy-800); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.feature-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 2rem; transition: all 0.2s; }
.feature-card:hover { border-color: var(--teal-400); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.feature-icon { width: 48px; height: 48px; background: var(--teal-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.feature-icon svg { width: 24px; height: 24px; stroke: var(--teal-500); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 2.5rem 2rem; position: relative; transition: all 0.2s; }
.price-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.price-card.featured { border: 2px solid var(--teal-500); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal-500); color: var(--white); padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.price-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.price-card .price { font-size: 2.5rem; font-weight: 800; color: var(--navy-800); margin: 1rem 0 0.25rem; }
.price-card .price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.price-card .period { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.price-specs { list-style: none; margin-bottom: 2rem; }
.price-specs li { padding: 0.5rem 0; font-size: 0.95rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; }
.price-specs li:last-child { border-bottom: none; }
.price-specs .subtext { font-size: 0.85rem; color: var(--gray-400); margin-top: 0.25rem; display: block; padding-left: 0; }
.check { color: var(--teal-500); font-weight: 700; font-size: 1.1rem; }
.price-btn { display: block; width: 100%; padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: all 0.2s; }
.price-btn-primary { background: var(--teal-500); color: var(--white); }
.price-btn-primary:hover { background: #178A64; }
.price-btn-outline { background: transparent; color: var(--teal-500); border: 1.5px solid var(--teal-500); }
.price-btn-outline:hover { background: var(--teal-100); }

/* GAMES GRID */
.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.game-pill { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 1rem; text-align: center; font-weight: 500; color: var(--gray-800); transition: all 0.2s; }
.game-pill:hover { border-color: var(--teal-400); color: var(--teal-500); box-shadow: 0 4px 12px rgba(0,0,0,0.04); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; max-width: 1000px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 2rem; }
.faq-item h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--gray-800); }
.faq-item p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%); padding: 4rem 2rem; text-align: center; }
.cta-banner h2 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--teal-300); font-size: 1.1rem; margin-bottom: 2rem; }

/* FOOTER */
footer { background: var(--navy-900); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .logo { margin-bottom: 0.75rem; display: inline-block; }
.footer-brand p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--gray-400); font-size: 0.9rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom { border-top: 1px solid var(--navy-700); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--gray-400); font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* SMOOTH SCROLL */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
/* Utility classes for gaming-vps.html */
.u-28 { border: none; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--gray-100); padding-left: 0; }
.u-29 { color: var(--gray-400); font-weight: 400; font-size: 0.85rem; }
.u-31 { font-size:0.8rem;color:var(--teal-500);margin-top:-0.25rem;margin-bottom:0.25rem; }
