/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; line-height: 1.15; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ===== DARK PLAYSTATION THEME ===== */
:root {
  /* Colors — PlayStation dark blue + electric blue accent */
  --surface: #0a0e1a;
  --surface-alt: #0f1526;
  --card: #161e32;
  --ink: #ffffff;
  --ink-2: #1a2444;
  --accent: #006FCD;
  --accent2: #0090ff;
  --accent-light: rgba(0,111,205,0.25);
  --accent-bg: rgba(0,111,205,0.1);
  --border: rgba(255,255,255,0.12);
  --muted: #8b95a8;
  --muted-light: #4a5568;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Misc */
  --nav-h: 72px;
  --max-w: 1280px;
  --tr: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

section { padding: 96px 0; overflow: hidden; }
@media(max-width:768px) { section { padding: 64px 0; } }

.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 48px;
}
@media(max-width:768px) { .container { padding: 0 24px; } }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 700; line-height: 1.2; color: var(--ink); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
p { color: var(--muted); }

.text-center { text-align: center; }
.w-full { width: 100%; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--accent); }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 480px; margin: 12px auto 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 700; border-radius: var(--r-md); transition: var(--tr);
  cursor: pointer; white-space: nowrap; letter-spacing: 0.02em;
}
.btn-accent { background: var(--accent); color: #fff; border: 2px solid var(--accent); }
.btn-accent:hover { background: #0058a6; border-color: #0058a6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,111,205,0.35); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent2); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 2px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-xl { padding: 18px 48px; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); transition: var(--tr);
  background: rgba(10,14,26,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 1.2rem; color: var(--ink);
}
.nav-logo-icon {
  width: 34px; height: 34px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-accent { color: var(--accent2); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.84rem; font-weight: 600; color: var(--muted);
  padding: 8px 14px; border-radius: var(--r-sm); transition: var(--tr);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--accent2); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--r-sm); transition: var(--tr); }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); }
.nav-burger:hover { background: rgba(255,255,255,0.08); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--surface); flex-direction: column;
  padding: var(--nav-h) 32px 32px; gap: 4px;
  border-right: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.6rem; font-weight: 700; color: var(--muted);
  padding: 14px 0; border-bottom: 1px solid var(--border); transition: var(--tr);
}
.mobile-menu a:hover { color: var(--accent2); padding-left: 10px; }

@media(max-width:900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .btn-accent { display: none; }
}

/* ===== FOOTER ===== */
.footer { background: #060912; color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 14px; }
.footer-logo-icon { width: 30px; height: 30px; background: var(--accent); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.footer-logo .logo-accent { color: var(--accent2); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 22px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.footer-soc {
  width: 38px; height: 38px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--tr);
}
.footer-soc:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,111,205,0.15); }

.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--tr); }
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list > div { font-size: 0.82rem; display: flex; flex-direction: column; gap: 2px; }
.flbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); }
.footer-contact-list a, .footer-contact-list span { color: rgba(255,255,255,0.6); transition: var(--tr); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--tr); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #060912 0%, #0a1628 50%, #0d1f3c 100%);
  padding: calc(var(--nav-h) + 60px) 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(0,111,205,0.15) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem); color: #fff; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.page-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.page-breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--tr); }
.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb span { color: var(--accent); }

/* ===== CONTENT PAGE ===== */
.content-section { background: var(--surface); }
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin: 48px 0 16px; color: var(--ink); }
.prose h3 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--ink); }
.prose p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.prose ul li::marker { color: var(--accent); }
.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin: 40px 0; }
@media(max-width:640px){ .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: var(--tr); }
.info-card:hover { box-shadow: var(--shadow-md); border-color: rgba(0,111,205,0.3); }
.info-card h4 { font-size: 1rem; color: var(--ink); margin-bottom: 10px; }
.info-card p { font-size: 0.88rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--tr); }
.faq-item.open { border-color: rgba(0,111,205,0.3); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; cursor: pointer; font-weight: 600; color: var(--ink); font-size: 1rem;
}
.faq-q svg { flex-shrink: 0; color: var(--accent); transition: transform 0.3s ease; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 22px; color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 1; transform: translateY(0); }
.reveal.animate { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal.animate.visible { opacity: 1; transform: translateY(0); }

/* ===== FAB MESSENGER WIDGET ===== */
.fab-messenger { position: fixed; bottom: 24px; right: 24px; z-index: 900; }
.fab-btn {
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,111,205,0.4); transition: var(--tr); position: relative; z-index: 2;
}
.fab-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,111,205,0.5); }
.fab-icon-x { display: none; }
.fab-messenger.open .fab-icon-msg { display: none; }
.fab-messenger.open .fab-icon-x { display: block; }
.fab-messenger.open .fab-btn { background: var(--ink); }
.fab-options {
  position: absolute; bottom: 68px; right: 0;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; pointer-events: none; transform: translateY(12px) scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fab-messenger.open .fab-options { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.fab-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px; border-radius: var(--r-md);
  color: #fff; font-size: 0.85rem; font-weight: 600; white-space: nowrap;
  transition: var(--tr); text-decoration: none;
}
.fab-wa { background: #25D366; }
.fab-wa:hover { background: #1EB854; transform: translateX(-4px); }
.fab-tg { background: #2AABEE; }
.fab-tg:hover { background: #229ED9; transform: translateX(-4px); }
.fab-phone { background: #1a3a6e; }
.fab-phone:hover { background: #0d2a5a; transform: translateX(-4px); }
.fab-opt span { font-family: var(--font-body); }
@media(max-width:480px) {
  .fab-messenger { bottom: 16px; right: 16px; }
  .fab-btn { width: 50px; height: 50px; }
}
