/* Actiestroom.vip — global styles */

:root {
  --as-bg: #0b1120;
  --as-surface: #111a2d;
  --as-surface-2: #1a2744;
  --as-text: #f0f2f5;
  --as-muted: #9aa4b8;
  --as-cyan: #00e5ff;
  --as-amber: #ffae00;
  --as-border: rgba(148, 163, 184, 0.15);
  --as-line: 1px solid var(--as-border);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--as-bg);
  color: var(--as-text);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--as-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--as-amber); }

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

.text-gradient {
  background: linear-gradient(90deg, var(--as-cyan), var(--as-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-cyan { color: var(--as-cyan); }
.accent-amber { color: var(--as-amber); }

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: var(--as-line);
}

.top-bar {
  background: var(--as-surface);
  font-size: 0.85rem;
  color: var(--as-muted);
  border-bottom: var(--as-line);
}

.top-bar a, .top-bar span { color: var(--as-muted); }
.top-bar a:hover { color: var(--as-cyan); }

.navbar .nav-link {
  color: var(--as-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.navbar .nav-link:hover { color: var(--as-cyan); }

.navbar-toggler {
  border: var(--as-line);
  color: var(--as-text);
}

.navbar-toggler:focus { box-shadow: none; }

/* Footer */
.footer {
  background: var(--as-surface);
  border-top: var(--as-line);
  color: var(--as-muted);
}

.footer-title {
  color: var(--as-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links a, .footer-legal a {
  color: var(--as-muted);
  display: inline-block;
  padding: 0.15rem 0;
}

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

.footer-contact li, .footer-business li { margin-bottom: 0.5rem; font-size: 0.9rem; }

.footer-bottom { border-color: var(--as-border); }

/* Buttons */
.btn-accent {
  background: linear-gradient(135deg, var(--as-cyan), #00b8d4);
  color: #00101a;
  border: none;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
  color: #00101a;
}

.btn-ghost {
  background: transparent;
  color: var(--as-cyan);
  border: 1px solid var(--as-cyan);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: var(--as-cyan);
  color: #00101a;
}

/* Sections */
.as-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.as-section-dark { background: var(--as-surface); }

.section-label {
  color: var(--as-amber);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section-lead {
  color: var(--as-muted);
  font-size: 1.1rem;
  max-width: 700px;
}

/* Decorative elements */
.line-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: var(--as-line);
}

.line-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: var(--as-border);
}

.line-frame::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--as-border);
}

.dot-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.big-number {
  position: absolute;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

/* Hero */
.hero-monolith {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--as-surface);
}

.hero-monolith .hero-headline {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero-monolith .hero-image {
  position: relative;
  min-height: 420px;
  background: var(--as-surface-2);
  border: var(--as-line);
  overflow: hidden;
}

.hero-monolith .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Marquee */
.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  border-top: var(--as-line);
  border-bottom: var(--as-line);
  padding: 1rem 0;
}

.marquee span {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.05);
  padding-right: 2rem;
}

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

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--as-border);
  border: var(--as-line);
}

.bento-item {
  background: var(--as-surface);
  padding: 2rem;
  position: relative;
  min-height: 220px;
}

.bento-item.span-2 { grid-column: span 6; }
.bento-item.span-3 { grid-column: span 4; }
.bento-item.span-full { grid-column: span 12; }

@media (max-width: 991.98px) {
  .bento-item.span-2, .bento-item.span-3, .bento-item.span-full { grid-column: span 12; }
}

.bento-item .bento-icon {
  font-size: 1.5rem;
  color: var(--as-cyan);
  margin-bottom: 1rem;
}

.bento-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.bento-item p { color: var(--as-muted); font-size: 0.95rem; margin-bottom: 0; }

/* Staggered columns */
.staggered-col {
  transform: translateY(0);
}

.staggered-col:nth-child(2) { transform: translateY(40px); }
.staggered-col:nth-child(3) { transform: translateY(80px); }

@media (max-width: 767.98px) {
  .staggered-col { transform: none !important; }
}

.staggered-card {
  background: var(--as-surface);
  border: var(--as-line);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.staggered-card h4 { font-size: 1.25rem; font-weight: 700; }
.staggered-card p { color: var(--as-muted); margin-bottom: 0; }

/* Editorial index grid */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1px;
  background: var(--as-border);
  border-bottom: var(--as-line);
  align-items: center;
  padding: 1.25rem;
  background-color: var(--as-surface);
  transition: background 0.2s;
}

.editorial-row:hover { background-color: var(--as-surface-2); }

.editorial-row > div { padding: 0 0.5rem; }

.editorial-row .row-meta {
  font-size: 0.75rem;
  color: var(--as-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.editorial-row .row-title { font-weight: 700; }
.editorial-row .row-desc { color: var(--as-muted); font-size: 0.9rem; }

@media (max-width: 767.98px) {
  .editorial-row { grid-template-columns: 1fr; }
}

/* Sticky split */
.sticky-split {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
}

.sticky-split .sticky-side {
  position: sticky;
  top: 100px;
  align-self: start;
  height: max-content;
}

.sticky-split .scroll-side { padding: 2rem 0; }

@media (max-width: 991.98px) {
  .sticky-split { grid-template-columns: 1fr; }
  .sticky-split .sticky-side { position: relative; top: 0; }
}

.narrative-block {
  background: var(--as-surface);
  border: var(--as-line);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.narrative-block h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.narrative-block p { color: var(--as-muted); margin-bottom: 0; }

/* Timeline spine */
.timeline-spine {
  position: relative;
  padding-left: 2rem;
}

.timeline-spine::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--as-border);
}

.timeline-node {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-node::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 11px;
  height: 11px;
  border: 2px solid var(--as-cyan);
  border-radius: 50%;
  background: var(--as-bg);
  transform: translateX(-5px);
}

.timeline-node h4 { font-size: 1.1rem; font-weight: 700; }
.timeline-node p { color: var(--as-muted); margin-bottom: 0; }

/* Floating panels */
.floating-panels {
  position: relative;
  min-height: 600px;
}

.floating-panel {
  position: absolute;
  background: var(--as-surface);
  border: var(--as-line);
  padding: 1.5rem;
  width: 280px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.floating-panel.panel-1 { top: 10%; left: 5%; }
.floating-panel.panel-2 { top: 35%; right: 8%; }
.floating-panel.panel-3 { bottom: 15%; left: 25%; }

@media (max-width: 767.98px) {
  .floating-panel { position: relative; width: 100%; left: auto; right: auto; top: auto; bottom: auto; margin-bottom: 1rem; }
  .floating-panels { min-height: auto; }
}

.floating-panel .panel-meta {
  font-size: 0.7rem;
  color: var(--as-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.floating-panel p { color: var(--as-muted); margin-bottom: 0; }

/* Offset CTA */
.offset-cta {
  background: var(--as-surface);
  padding: 6rem 0;
}

.offset-cta .cta-headline {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
}

.offset-cta .cta-btn-wrap {
  margin-top: 2rem;
}

/* Forms */
.as-form-control {
  background: var(--as-surface);
  border: var(--as-line);
  color: var(--as-text);
  padding: 0.9rem 1rem;
  border-radius: 0.25rem;
  width: 100%;
}

.as-form-control:focus {
  outline: none;
  border-color: var(--as-cyan);
  background: var(--as-surface-2);
}

.form-label { color: var(--as-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

.form-notification {
  display: none;
  padding: 1rem;
  border-radius: 0.25rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--as-cyan);
}

.form-notification.show { display: block; }

/* Package cards */
.package-card {
  background: var(--as-surface);
  border: var(--as-line);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.package-card.featured {
  border-color: var(--as-cyan);
  box-shadow: 0 0 0 1px var(--as-cyan);
}

.package-card .package-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--as-cyan);
}

.package-card ul { padding-left: 1.2rem; color: var(--as-muted); }
.package-card ul li { margin-bottom: 0.5rem; }

/* Game selector */
.game-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

@media (max-width: 991.98px) { .game-selector { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { .game-selector { grid-template-columns: repeat(2, 1fr); } }

.game-btn {
  background: var(--as-surface);
  border: var(--as-line);
  color: var(--as-muted);
  padding: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.game-btn:hover, .game-btn.active {
  background: var(--as-cyan);
  color: #00101a;
  border-color: var(--as-cyan);
}

.game-panel {
  background: var(--as-surface);
  border: var(--as-line);
  padding: 2rem;
  margin-top: 1rem;
}

.game-panel:not(.active) { display: none; }

/* Team card */
.team-card {
  background: var(--as-surface);
  border: var(--as-line);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card .team-body { padding: 1.5rem; }
.team-card h5 { font-weight: 700; margin-bottom: 0.25rem; }
.team-card .team-role { color: var(--as-amber); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.team-card p { color: var(--as-muted); margin-bottom: 0; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--as-surface);
  border-top: var(--as-line);
  padding: 1rem 0;
  z-index: 1040;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

/* Utilities */
.border-grid { border: var(--as-line); }
.bg-surface { background: var(--as-surface); }
.bg-surface-2 { background: var(--as-surface-2); }
.text-muted { color: var(--as-muted) !important; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  border: var(--as-line);
  padding: 1rem;
  text-align: left;
}
.compare-table th { background: var(--as-surface-2); color: var(--as-text); }
.compare-table td { color: var(--as-muted); }

/* Legal pages */
.legal-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.legal-section p { color: var(--as-muted); }
.legal-section ul { color: var(--as-muted); padding-left: 1.2rem; }
.legal-section li { margin-bottom: 0.5rem; }
