/* ==========================================
   TRENDGAMERC - FUTURISTIC AI THEME
   ========================================== */

:root {
  --primary: #00c6ff;
  --purple: #7b61ff;
  --cyan: #00ffe1;
  --black: #050816;
  --black-2: #0a0e1f;
  --glass: rgba(15, 23, 42, 0.55);
  --glass-border: rgba(123, 97, 255, 0.25);
  --white: #f8fafc;
  --muted: #94a3b8;
  --gradient: linear-gradient(135deg, #00c6ff, #7b61ff, #00ffe1);
  --gradient-2: linear-gradient(135deg, #7b61ff, #00c6ff);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at top left, rgba(0,198,255,0.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(123,97,255,0.08), transparent 50%);
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }

a { color: inherit; text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--cyan);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ==== Buttons ==== */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}
.btn-primary {
  background: var(--gradient);
  color: var(--black);
  box-shadow: 0 0 30px rgba(0,198,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,198,255,0.7);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(0,255,225,0.3);
}
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* ==== Header ==== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5, 8, 22, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.site-header.scrolled {
  background: rgba(5, 8, 22, 0.95);
  box-shadow: 0 4px 30px rgba(0,198,255,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Space Grotesk', sans-serif;
}
.logo-mark {
  color: var(--cyan);
  font-size: 1.6rem;
  animation: pulse-glow 2s ease-in-out infinite;
}
.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes pulse-glow {
  0%,100% { text-shadow: 0 0 10px var(--cyan); }
  50% { text-shadow: 0 0 25px var(--cyan), 0 0 40px var(--primary); }
}
.main-nav {
  display: flex;
  gap: 0.4rem;
}
.main-nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
  border-radius: 8px;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  background: rgba(123,97,255,0.1);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==== Hero ==== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.cyber-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,97,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,97,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: float 8s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-100px) translateX(40px); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ==== AI Orb ==== */
.hero-orb {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-core {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--cyan), var(--primary) 40%, var(--purple));
  box-shadow:
    0 0 80px rgba(0,198,255,0.6),
    0 0 150px rgba(123,97,255,0.4),
    inset 0 0 60px rgba(0,255,225,0.3);
  animation: orb-pulse 4s ease-in-out infinite, orb-rotate 20s linear infinite;
  position: relative;
}
.orb-core::before {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%);
}
@keyframes orb-pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes orb-rotate {
  to { transform: rotate(360deg); }
}
.orb-ring {
  position: absolute;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  border-top-color: var(--cyan);
  border-right-color: var(--primary);
}
.ring1 { width: 320px; height: 320px; animation: orb-rotate 15s linear infinite; }
.ring2 { width: 400px; height: 400px; animation: orb-rotate 25s linear infinite reverse; }
.ring3 { width: 480px; height: 480px; animation: orb-rotate 35s linear infinite; }
.orb-icon {
  position: absolute;
  width: 50px; height: 50px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,198,255,0.3);
  animation: float 6s ease-in-out infinite;
}
.i1 { top: 5%; left: 50%; animation-delay: 0s; }
.i2 { top: 50%; right: 0; animation-delay: 1s; }
.i3 { bottom: 5%; left: 50%; animation-delay: 2s; }
.i4 { top: 50%; left: 0; animation-delay: 3s; }
.i5 { top: 15%; right: 10%; animation-delay: 4s; }

/* ==== Page Hero ==== */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ==== Article ==== */
.article-hero { padding-bottom: 3rem; }
.article-meta {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.article-meta .meta-dot { color: var(--cyan); }
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.article-feature-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,198,255,0.15);
  margin-bottom: 2.5rem;
}
.article-content {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}
.article-content h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: var(--cyan);
}
.article-content h2:first-child { margin-top: 0; }
.article-content p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.article-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ==== Sections ==== */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(123,97,255,0.04), transparent);
}
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ==== Grids ==== */
.grid {
  display: grid;
  gap: 1.8rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==== Cards ==== */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.4s;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0,198,255,0.2);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 1.5rem;
}
.card-body h3 { margin-bottom: 0.6rem; }
.card-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(0,198,255,0.15);
  color: var(--cyan);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.link-arrow {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
}
.link-arrow:hover { color: var(--white); }
.rating {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.rating span { color: var(--muted); margin-left: 0.4rem; }

/* ==== Bento ==== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 1.2rem;
}
.bento-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.4s;
}
.bento-item:hover { transform: scale(1.02); }
.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.bento-item:hover img { transform: scale(1.1); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,8,22,0.95), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.bento-overlay h3 { margin-bottom: 0.3rem; }
.bento-overlay p { color: var(--muted); font-size: 0.9rem; }

/* ==== Split ==== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p { color: var(--muted); margin-bottom: 1.5rem; }
.feature-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.feature-list li {
  padding: 0.6rem 0;
  color: var(--white);
  border-bottom: 1px solid var(--glass-border);
}
.split-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,198,255,0.15);
  border: 1px solid var(--glass-border);
}

/* ==== Scroller (Gadgets) ==== */
.scroller {
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--black-2);
}
.scroller::-webkit-scrollbar { height: 8px; }
.scroller::-webkit-scrollbar-track { background: var(--black-2); border-radius: 10px; }
.scroller::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 10px; }
.scroller-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
}
.gadget-card {
  flex: 0 0 260px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}
.gadget-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
}
.gadget-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gadget-card h4 {
  padding: 1rem 1.2rem 0.3rem;
  font-family: 'Space Grotesk', sans-serif;
}
.gadget-card p {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==== Glass Cards ==== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
  text-align: center;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(123,97,255,0.2);
}
.icon-circle {
  width: 60px; height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 30px rgba(0,198,255,0.4);
}
.glass-card h3 { margin-bottom: 0.6rem; }
.glass-card p { color: var(--muted); font-size: 0.95rem; }

/* ==== Testimonials ==== */
.testimonial {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}
.testimonial:hover {
  border-color: var(--purple);
  box-shadow: 0 20px 50px rgba(123,97,255,0.2);
}
.testimonial p {
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.author { display: flex; flex-direction: column; }
.author strong { color: var(--cyan); }
.author span { color: var(--muted); font-size: 0.85rem; }

/* ==== Newsletter ==== */
.newsletter {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.newsletter-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(123,97,255,0.2), transparent 60%);
  pointer-events: none;
}
.newsletter h2 { margin-bottom: 1rem; position: relative; }
.newsletter p { color: var(--muted); margin-bottom: 2rem; position: relative; }
.newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 540px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.4rem;
  background: rgba(5,8,22,0.6);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,255,225,0.2);
}

/* ==== Filter Bar ==== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.6rem 1.4rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient);
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 0 25px rgba(0,198,255,0.4);
}

/* ==== Blog Featured ==== */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  align-items: center;
}
.featured-post img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}
.featured-content {
  padding: 2.5rem;
}
.featured-content h2 { margin: 1rem 0; }
.featured-content p { color: var(--muted); margin-bottom: 1.5rem; }

/* ==== Search Bar ==== */
.search-bar {
  display: flex;
  gap: 0.6rem;
  max-width: 560px;
  margin: 2rem auto 0;
  justify-content: center;
}
.search-bar input {
  flex: 1;
  padding: 0.9rem 1.4rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--white);
  font-family: inherit;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--cyan);
}

/* ==== Pagination ==== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination a {
  padding: 0.6rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
}
.pagination a:hover, .pagination a.active {
  background: var(--gradient);
  color: var(--black);
  border-color: transparent;
}

/* ==== Contact ==== */
.contact-info p {
  margin-bottom: 1.4rem;
  color: var(--muted);
}
.contact-info strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(5,8,22,0.6);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0,255,225,0.15);
}
.map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-border); filter: invert(0.9) hue-rotate(180deg); }

/* ==== Legal ==== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  color: var(--cyan);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-content a {
  color: var(--cyan);
}

/* ==== Footer ==== */
.site-footer {
  background: var(--black-2);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 0;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-col h4 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: 1rem;
}
.footer-col a {
  display: block;
  color: var(--muted);
  padding: 0.3rem 0;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--cyan); }
.footer-col p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--cyan); }

/* ==== Reveal Animation ==== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==== Responsive ==== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-orb { height: 400px; margin-top: 2rem; }
  .ring3 { width: 380px; height: 380px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post img { min-height: 250px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(5,8,22,0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-150%);
    transition: transform 0.4s;
    gap: 0.2rem;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 0.8rem 1rem; }
  .hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .bento-item { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 7rem 0 3rem; }
  .section { padding: 4rem 0; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.8rem; }
  .legal-content { padding: 2rem 1.5rem; }
  .article-content { padding: 2rem 1.5rem; }
  .featured-content { padding: 1.5rem; }
  .orb-core { width: 160px; height: 160px; }
  .ring1 { width: 240px; height: 240px; }
  .ring2 { width: 300px; height: 300px; }
  .ring3 { width: 360px; height: 360px; }
}