/* =========================
   NERDAGORA - BASE TAILWIND LOCAL (SAFE)
========================= */

/* RESET BASE */
body {
  background-color: #0a0a0b;
  color: #e0e0e0;
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   CORES BRAND
========================= */

.bg-brand-dark { background-color: #0a0a0b; }
.bg-brand-surface { background-color: #12121a; }

.text-brand-text { color: #e0e0e0; }
.text-brand-text-muted { color: #a0a0a0; }

.text-brand-cyan { color: #00f2ff; }
.text-brand-purple { color: #9d00ff; }
.text-brand-pink { color: #ff00e5; }

/* =========================
   BORDAS
========================= */

.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.10); }

/* =========================
   TIPOGRAFIA
========================= */

.font-sans { font-family: Inter, sans-serif; }
.font-display { font-family: "Space Grotesk", Inter, sans-serif; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-xs { font-size: .75rem; }
.text-sm { font-size: .875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }

.text-white { color: #fff; }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }

/* =========================
   LAYOUT
========================= */

.min-h-screen { min-height: 100vh; }

.flex { display: flex; }
.flex-col { flex-direction: column; }

.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.max-w-7xl { max-width: 80rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-md { max-width: 28rem; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   ESPAÇAMENTOS
========================= */

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }

.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }

.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* =========================
   FORMAS
========================= */

.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* =========================
   POSICIONAMENTO
========================= */

.hidden { display: none; }
.block { display: block; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { inset: 0; }

.top-0 { top: 0; }
.top-full { top: 100%; }

.right-0 { right: 0; }

.z-50 { z-index: 50; }

/* =========================
   HEADER / GLASS
========================= */

.site-header {
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(12px);
}

.glass {
  background: rgba(10,10,11,.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* =========================
   SCROLL
========================= */

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* =========================
   ENTRY CONTENT
========================= */

.entry-content h2 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.entry-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #00f2ff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.entry-content p {
  color: rgba(255,255,255,.9);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.entry-content a {
  color: #00f2ff;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}

.entry-content strong {
  color: #fff;
  font-weight: 900;
}

/* =========================
   RESPONSIVO
========================= */

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
}

@media (min-width: 768px) {
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
}

/* =========================
   NERDAGORA - HEADER SAFE EXTENSIONS
========================= */

.overflow-hidden { overflow: hidden; }
.whitespace-nowrap { white-space: nowrap; }

.h-24 { height: 6rem; }
.h-8 { height: 2rem; }
.h-1\.5 { height: 0.375rem; }

.w-8 { width: 2rem; }
.w-64 { width: 16rem; }

.p-1\.5 { padding: 0.375rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pr-2 { padding-right: 0.5rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }

.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.right-8 { right: 2rem; }
.bottom-6 { bottom: 1.5rem; }

.opacity-0 { opacity: 0; }
.invisible { visibility: hidden; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }

.transition-all { transition: all .3s ease; }
.transition-colors { transition: color .3s ease, background-color .3s ease, border-color .3s ease; }
.transition-transform { transition: transform .3s ease; }
.duration-300 { transition-duration: .3s; }

.scale-95 { transform: scale(.95); }
.object-cover { object-fit: cover; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.text-center { text-align: center; }
.leading-none { line-height: 1; }

.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[0\.2em\] {}
.text-\[0\.3em\] {}
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-tighter { letter-spacing: -0.04em; }
.tracking-widest { letter-spacing: 0.12em; }

.bg-transparent { background: transparent; }
.bg-white\/5 { background-color: rgba(255,255,255,.05); }
.bg-white\/10 { background-color: rgba(255,255,255,.10); }
.bg-white\/\[0\.02\] { background-color: rgba(255,255,255,.02); }

.bg-brand-purple\/10 { background-color: rgba(157, 0, 255, .10); }
.bg-brand-dark\/50 { background-color: rgba(10,10,11,.50); }
.bg-brand-dark\/95 { background-color: rgba(10,10,11,.95); }

.text-white\/10 { color: rgba(255,255,255,.10); }
.text-white\/50 { color: rgba(255,255,255,.50); }

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }

.border-brand-purple\/30 { border-color: rgba(157, 0, 255, .30); }
.border-brand-cyan\/30 { border-color: rgba(0, 242, 255, .30); }

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to));
}
.from-brand-pink { --tw-gradient-from: #ff00e5; }
.to-brand-purple { --tw-gradient-to: #9d00ff; }
.to-brand-cyan { --tw-gradient-to: #00f2ff; }

.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.25), 0 8px 10px -6px rgba(0,0,0,.25); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,.45); }
.shadow-brand-pink\/20 { box-shadow: 0 10px 30px rgba(255, 0, 229, .20); }

.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); }

.z-\[100\] { z-index: 100; }
.z-\[120\] { z-index: 120; }
.z-\[2000\] { z-index: 2000; }

.animate-\[ticker_60s_linear_infinite\] {
  animation: ticker60 60s linear infinite;
}

@keyframes ticker60 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}