/*
Theme Name: NeoGarage
Theme URI: https://example.com
Author: Rizki Garage
Description: Modern Garage App Style WordPress Theme
Version: 1.0
*/

/* =========================
   BASE RESET
========================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #020617;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* hide scrollbar */
::-webkit-scrollbar {
  display: none;
}

/* =========================
   DESIGN TOKENS
========================= */

:root {
  --bg-primary: #020617;
  --bg-secondary: #0f172a;
  --bg-card: #111827;

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;

  --accent: #f59e0b;

  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

/* =========================
   LAYOUT CONTAINER
========================= */

.neo-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

/* =========================
   CARD SYSTEM
========================= */

.neo-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
}

/* hover effect (safe only for non-touch feel) */
.neo-card:hover {
  transform: translateY(-2px);
}

/* =========================
   BUTTON SYSTEM
========================= */

.neo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 20px;
  border-radius: var(--radius-lg);

  font-size: 14px;
  font-weight: 600;

  transition: all 0.25s ease;
}

.neo-button-primary {
  background: var(--accent);
  color: #000;
}

.neo-button-secondary {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}

/* =========================
   ICON SIZE
========================= */

.neo-icon {
  width: 22px;
  height: 22px;
}

/* =========================
   TITLE
========================= */

.neo-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* =========================
   NO SCROLLBAR HELPERS
========================= */

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* =========================
   SNAP HELPERS
========================= */

.snap-x::-webkit-scrollbar {
  display: none;
}

/* =========================
   HEADER FIX (APP STYLE SUPPORT)
========================= */

header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* =========================
   SAFE TRANSITIONS (NO GLOBAL BREAKAGE)
========================= */

.neo-card,
.neo-button,
a,
button {
  transition: all 0.25s ease;
}

/* =========================
   ACTIVE TOUCH FEEL
========================= */

button:active,
a:active {
  transform: scale(0.98);
}

.neo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.title {
  font-size: 18px;
  font-weight: 700;
}

.subtitle {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f59e0b;
}