/* GFY Gaming — Site Styles */
:root {
  --cyan: #00d4ff;
  --cyan-dark: #0099cc;
  --copper: #e08840;
  --navy: #080e1a;
  --card: #0c1422;
  --border: #1a2a45;
}

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

html { scroll-behavior: smooth; }

body {
  background: #080e1a url("/static/images/logo.9f7bd835a3cb.jpeg") center center / cover no-repeat fixed;
  color: #c8d6e5;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(8, 14, 26, 0.78);
  pointer-events: none;
}

::selection { background: rgba(0,212,255,0.25); color: #00d4ff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.site-wrapper { position: relative; z-index: 1; }

/* Nav */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(8,14,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,212,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 16px; font-size: 14px; font-weight: 500;
  color: #9ca3af; text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-right a { font-size: 14px; color: #9ca3af; text-decoration: none; }
.nav-right a:hover { color: #fff; }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  color: var(--navy); font-weight: 700; padding: 12px 32px;
  border-radius: 12px; text-decoration: none; display: inline-block;
  transition: all 0.3s; font-size: 14px;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,212,255,0.25); }
.btn-outline {
  border: 1px solid rgba(0,212,255,0.4); color: var(--cyan);
  font-weight: 600; padding: 12px 32px; border-radius: 12px;
  text-decoration: none; display: inline-block; transition: all 0.3s; font-size: 14px;
}
.btn-outline:hover { background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.7); }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px; font-size: 14px; color: #9ca3af;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 32px;
}
.hero h1 span { color: #fff; display: block; }
.hero h1 .cyan {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan), #66e5ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.2rem; color: #9ca3af; max-width: 640px; margin: 0 auto 48px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 96px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 16px; display: block;
}
.section-label.cyan { color: var(--cyan); }
.section-label.copper { color: var(--copper); }
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: #fff; margin-bottom: 16px; letter-spacing: -0.01em;
}
.section-heading .cyan {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan), #66e5ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-heading .copper {
  background: linear-gradient(135deg, #c07030, var(--copper), #f0a060);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub { font-size: 1.15rem; color: #9ca3af; max-width: 640px; margin: 0 auto; }
.text-center { text-align: center; }

/* Glass Cards */
.glass-card {
  background: rgba(12,21,37,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(26,42,69,0.5); border-radius: 16px;
  padding: 32px; transition: border-color 0.5s;
}
.glass-card:hover { border-color: rgba(0,212,255,0.15); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* Product Cards */
.product-card { padding: 32px 40px; }
.product-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.product-info { display: flex; gap: 20px; align-items: flex-start; }
.product-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 24px; flex-shrink: 0;
}
.product-name { font-size: 1.5rem; font-weight: 700; color: #fff; }
.product-type { color: #6b7280; font-size: 0.9rem; margin-top: 4px; }
.product-status { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; }
.product-status .dot { width: 6px; height: 6px; border-radius: 50%; }
.product-status.live .dot { background: #10b981; }
.product-status.live { color: #10b981; }
.product-status.dev .dot { background: var(--copper); }
.product-status.dev { color: var(--copper); }
.product-desc { color: #9ca3af; line-height: 1.7; margin-bottom: 24px; }
.product-features h4, .product-tech h4 {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: #fff; margin-bottom: 12px;
}
.product-features li {
  color: #9ca3af; font-size: 14px; margin-bottom: 6px;
  padding-left: 16px; position: relative; list-style: none;
}
.product-features li::before { content: '▸'; color: var(--cyan); position: absolute; left: 0; }
.tech-tag {
  display: inline-block; padding: 6px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  color: #c8d6e5; font-size: 13px; font-family: monospace; margin: 3px;
}

/* Capability Cards */
.cap-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 20px; margin-bottom: 20px;
}
.cap-title { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.cap-desc { color: #9ca3af; font-size: 0.9rem; line-height: 1.6; }

/* Stats */
.stats-card { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 56px; }
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: #9ca3af; font-size: 14px; font-weight: 500; margin-top: 4px; }

/* Tech Stack */
.tech-card { padding: 32px; }
.tech-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.tech-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 16px;
}
.tech-title { font-size: 1.1rem; font-weight: 600; color: #fff; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* CTA */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  color: #fff; margin-bottom: 24px;
}
.cta p { font-size: 1.2rem; color: #9ca3af; max-width: 640px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: rgba(12,20,34,0.5); border-top: 1px solid rgba(26,42,69,0.3); padding: 64px 24px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: #6b7280; font-size: 14px; line-height: 1.6; margin-top: 16px; }
.footer h4 {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: #fff; margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { color: #9ca3af; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer a:hover { color: var(--cyan); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(26,42,69,0.3); text-align: center; }
.footer-bottom p { color: #6b7280; font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .stats-card { grid-template-columns: repeat(2, 1fr); padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-header { flex-direction: column; }
}
