:root {
  --bg-primary: #0b1020;
  --bg-surface: #151b2f;
  --accent-primary: #38bdf8;
  --accent-secondary: #a78bfa;
  --accent-highlight: #facc15;
  --text-primary: #f8fafc;
  --text-muted: #aab4c8;
  --font-heading: 'Segoe UI', 'Arial Black', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--accent-highlight);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

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

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-highlight);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: #60d5ff;
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-highlight);
  border: 2px solid var(--accent-highlight);
}

.btn-secondary:hover {
  background: var(--accent-highlight);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 16, 32, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo .pixel {
  color: var(--accent-primary);
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 2rem;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--accent-primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 16, 32, 0.98);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color 0.2s;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(167, 139, 250, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-kicker {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--accent-highlight);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-marquee {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.hero-marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.hero-marquee span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  opacity: 0.6;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.footer-links a,
.footer-legal a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--accent-primary);
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(11, 16, 32, 0.5);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  padding: 0.65rem 1.25rem;
  background: var(--accent-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #60d5ff;
}

.footer-bottom {
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding: 1.25rem 1.5rem;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.85rem;
  flex: 1;
  min-width: 250px;
}

.cookie-banner a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.cookie-btn-accept:hover {
  background: #60d5ff;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--text-muted);
}

.cookie-btn-decline:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.disclaimer-strip {
  background: var(--bg-surface);
  border-top: 1px solid rgba(250, 204, 21, 0.15);
  border-bottom: 1px solid rgba(250, 204, 21, 0.15);
  padding: 1rem 0;
  text-align: center;
}

.disclaimer-strip p {
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-content {
  padding-top: 70px;
  min-height: 100vh;
}

.page-header {
  background: var(--bg-surface);
  padding: 5rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-body {
  padding: 3rem 0 5rem;
}

.page-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-primary);
  margin: 2.5rem 0 1rem;
}

.page-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-highlight);
  margin: 2rem 0 0.75rem;
}

.page-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-body ul {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-body a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.page-body .notice-box {
  background: rgba(56, 189, 248, 0.08);
  border-left: 4px solid var(--accent-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.page-body .notice-box p {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--accent-primary);
}

.contact-card h3 {
  color: var(--accent-primary) !important;
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
}

.contact-card p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-card .contact-email {
  color: var(--accent-highlight);
  text-decoration: none;
  font-weight: 600;
}

.contact-card .contact-email:hover {
  color: var(--accent-primary);
}
