/* ==========================================================================
   MYFREECAMS GAMING HUB - MASTER DESIGN SYSTEM & STYLESHEET
   Theme: Dark Futuristic Gaming (Glassmorphism + 3D Neon FX)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES / DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-tertiary: #21262d;
  --bg-glass: rgba(13, 17, 23, 0.75);
  --bg-glass-card: rgba(22, 27, 34, 0.65);
  --bg-glass-hover: rgba(30, 38, 48, 0.85);

  --color-cyan: #00fff5;
  --color-purple: #8a2be2;
  --color-pink: #ff0066;
  --color-gold: #ffb703;
  --color-green: #00ff66;

  --text-primary: #ffffff;
  --text-secondary: #9eabb5;
  --text-muted: #6e7681;

  --border-cyan: rgba(0, 255, 245, 0.25);
  --border-purple: rgba(138, 43, 226, 0.25);
  --border-pink: rgba(255, 0, 102, 0.25);
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Shadows & Glows */
  --glow-cyan: 0 0 15px rgba(0, 255, 245, 0.5), 0 0 30px rgba(0, 255, 245, 0.2);
  --glow-purple: 0 0 15px rgba(138, 43, 226, 0.5), 0 0 30px rgba(138, 43, 226, 0.2);
  --glow-pink: 0 0 15px rgba(255, 0, 102, 0.5), 0 0 30px rgba(255, 0, 102, 0.2);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);

  /* Gradients */
  --grad-cyan-purple: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
  --grad-purple-pink: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
  --grad-dark-overlay: linear-gradient(180deg, rgba(13, 17, 23, 0.2) 0%, rgba(13, 17, 23, 0.95) 100%);
  --grad-hero-bg: radial-gradient(circle at 50% 20%, rgba(138, 43, 226, 0.15) 0%, rgba(0, 255, 245, 0.08) 40%, rgba(13, 17, 23, 1) 90%);

  /* Typography */
  --font-heading: 'Orbitron', -apple-system, sans-serif;
  --font-subheading: 'Rajdhani', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Layout & Transitions */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1320px;
}

/* Light Theme Variables Override (Accessible via JS toggle) */
[data-theme="light"] {
  --bg-primary: #f0f4f8;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e2e8f0;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-card: rgba(255, 255, 255, 0.75);
  --bg-glass-hover: rgba(240, 244, 248, 0.95);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --border-glass: rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --grad-hero-bg: radial-gradient(circle at 50% 20%, rgba(0, 255, 245, 0.12) 0%, rgba(138, 43, 226, 0.08) 40%, rgba(240, 244, 248, 1) 90%);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-cyan), var(--color-purple));
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-purple), var(--color-pink));
}

/* Selection */
::selection {
  background: var(--color-cyan);
  color: var(--bg-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

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

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

.neon-text-cyan {
  color: var(--color-cyan);
  text-shadow: var(--glow-cyan);
}

.neon-text-pink {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
}

.section-title {
  font-size: 2.25rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 28px;
  background: var(--grad-cyan-purple);
  border-radius: 3px;
  box-shadow: var(--glow-cyan);
}

.section-subtitle {
  color: var(--text-secondary);
  font-family: var(--font-subheading);
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   3. CUSTOM CURSOR & CANVAS OVERLAYS
   -------------------------------------------------------------------------- */
.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  z-index: 9999;
  box-shadow: var(--glow-cyan);
}

.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--color-cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  box-shadow: 0 0 10px var(--color-cyan);
}

.custom-cursor.active {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 245, 0.15);
  border-color: var(--color-pink);
  box-shadow: var(--glow-pink);
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.cyber-spinner {
  position: relative;
  width: 100px;
  height: 100px;
}

.cyber-spinner::before, .cyber-spinner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.cyber-spinner::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: var(--color-cyan);
  border-bottom-color: var(--color-purple);
  animation: spin 1.5s linear infinite;
  box-shadow: var(--glow-cyan);
}

.cyber-spinner::after {
  top: 15px;
  left: 15px;
  width: 70px;
  height: 70px;
  border: 4px solid transparent;
  border-left-color: var(--color-pink);
  border-right-color: var(--color-cyan);
  animation: spin 0.8s linear infinite reverse;
}

.preloader-text {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--color-cyan);
  text-shadow: var(--glow-cyan);
  animation: pulse 1.5s ease-in-out infinite alternate;
}

/* --------------------------------------------------------------------------
   4. GLASSMORPHISM & BUTTON COMPONENTS
   -------------------------------------------------------------------------- */
.glass-panel {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-card), 0 0 20px rgba(0, 255, 245, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-normal);
}

.btn-primary {
  background: var(--grad-cyan-purple);
  color: #000;
  font-weight: 700;
  box-shadow: var(--glow-cyan);
  border: 1px solid var(--color-cyan);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 245, 0.8), 0 0 45px rgba(138, 43, 226, 0.5);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--color-cyan);
  box-shadow: inset 0 0 10px rgba(0, 255, 245, 0.1);
}

.btn-secondary:hover {
  background: rgba(0, 255, 245, 0.15);
  border-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--grad-purple-pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 0, 102, 0.8);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 1.1rem;
}

.btn-icon:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
}

/* 3D Cyber Button Effect */
.btn-cyber {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 245, 0.3), transparent);
  transition: 0.5s;
}

.btn-cyber:hover::before {
  left: 100%;
}

/* --------------------------------------------------------------------------
   5. HEADER & STICKY GLASS NAVIGATION
   -------------------------------------------------------------------------- */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-normal);
}

.header-navbar.scrolled {
  padding: 0.65rem 0;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-cyan-purple);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.4rem;
  box-shadow: var(--glow-cyan);
  transform: rotate(-5deg);
  transition: var(--transition-normal);
}

.brand-logo:hover .logo-icon {
  transform: rotate(0deg) scale(1.1);
  box-shadow: var(--glow-pink);
}

.logo-text span {
  color: var(--color-cyan);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-cyan-purple);
  box-shadow: var(--glow-cyan);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-cyan);
  text-shadow: 0 0 8px rgba(0, 255, 245, 0.4);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.audio-toggle-btn {
  color: var(--color-cyan);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
}

/* Mega Menu Dropdown */
.has-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 580px;
  padding: 1.5rem;
  background: var(--bg-glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--glow-cyan);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 100;
}

.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}

.mega-item:hover {
  background: rgba(0, 255, 245, 0.1);
  border-left: 3px solid var(--color-cyan);
}

.mega-item i {
  font-size: 1.5rem;
  color: var(--color-cyan);
}

.mega-item-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.mega-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION & 3D THREE.JS CANVAS
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  background: var(--grad-hero-bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 255, 245, 0.1);
  border: 1px solid var(--color-cyan);
  border-radius: var(--radius-full);
  color: var(--color-cyan);
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  box-shadow: var(--glow-cyan);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.typed-text-container {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

.stat-item h4 {
  font-size: 1.75rem;
  color: var(--color-cyan);
  font-family: var(--font-heading);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero 3D Canvas Container */
.hero-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-three-canvas {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
}

.hero-floating-badge {
  position: absolute;
  padding: 0.85rem 1.25rem;
  background: var(--bg-glass-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), var(--glow-cyan);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  animation: float 4s ease-in-out infinite alternate;
}

.hero-floating-badge.badge-top {
  top: 10%;
  right: 5%;
}

.hero-floating-badge.badge-bottom {
  bottom: 12%;
  left: 5%;
  animation-delay: -2s;
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-purple-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   7. FEATURED GAMES 3D SLIDER CAROUSEL
   -------------------------------------------------------------------------- */
.featured-section {
  padding: 6rem 0;
  position: relative;
}

.swiper-container {
  padding: 2rem 0 4rem;
}

.game-card-3d {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  position: relative;
}

.game-card-3d:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-cyan);
  box-shadow: var(--shadow-card), var(--glow-cyan);
}

.card-image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.game-card-3d:hover .card-image-wrap img {
  transform: scale(1.1);
}

.card-badge-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.3);
}

.card-platform-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  background: var(--grad-purple-pink);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card-footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

/* --------------------------------------------------------------------------
   8. TRENDING NEWS & BLOG GRID
   -------------------------------------------------------------------------- */
.blog-grid-section {
  padding: 6rem 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1rem 1.5rem;
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: rgba(0, 255, 245, 0.1);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  position: relative;
  height: 220px;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.85rem;
  background: var(--bg-glass);
  border: 1px solid var(--color-cyan);
  border-radius: var(--radius-full);
  color: var(--color-cyan);
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--color-cyan);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-cyan);
}

.bookmark-btn {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.bookmark-btn.active, .bookmark-btn:hover {
  color: var(--color-pink);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   9. CATEGORIES GRID WITH ANIMATED 3D ICONS
   -------------------------------------------------------------------------- */
.categories-section {
  padding: 6rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.category-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-cyan-purple);
  opacity: 0;
  transition: var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-cyan);
  box-shadow: var(--shadow-card), var(--glow-cyan);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon-wrap {
  width: 65px;
  height: 65px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(0, 255, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  transition: transform 0.5s ease;
}

.category-card:hover .category-icon-wrap {
  transform: rotateY(360deg) scale(1.1);
  background: var(--grad-cyan-purple);
  color: #000;
}

.category-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. POPULAR REVIEWS WITH SCORE METERS
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 6rem 0;
}

.review-card-horizontal {
  display: grid;
  grid-template-columns: 280px 1fr 160px;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
}

.review-img {
  height: 170px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-score-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-cyan);
  box-shadow: var(--glow-cyan);
}

.score-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--color-cyan);
  line-height: 1;
}

.score-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.star-rating {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   11. VIDEO SHOWCASE & LIGHTBOX POPUP
   -------------------------------------------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-cyan-purple);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--glow-cyan);
  transition: var(--transition-normal);
}

.video-card:hover .play-btn-circle {
  transform: scale(1.2);
  background: var(--grad-purple-pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-cyan);
  box-shadow: var(--glow-cyan);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   12. 3D MASONRY GALLERY & WALLPAPERS
   -------------------------------------------------------------------------- */
.gallery-masonry {
  columns: 3 320px;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 17, 23, 0.9) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   13. FEATURED STREAMERS & NEWSLETTER
   -------------------------------------------------------------------------- */
.streamers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.streamer-card {
  text-align: center;
  padding: 2rem 1rem;
}

.streamer-avatar-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.25rem;
}

.streamer-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.live-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-pink);
  animation: pulse 1.5s infinite;
}

.live-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.6rem;
  background: var(--color-pink);
  color: #fff;
  font-size: 0.65rem;
  font-family: var(--font-heading);
  border-radius: var(--radius-full);
}

/* Newsletter Section */
.newsletter-card {
  padding: 4rem 2rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(138, 43, 226, 0.25) 0%, rgba(13, 17, 23, 0.9) 70%);
  border: 1px solid var(--color-purple);
  box-shadow: var(--glow-purple);
}

.newsletter-form {
  display: flex;
  max-width: 540px;
  margin: 2rem auto 0;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  color: #fff;
}

.newsletter-input:focus {
  border-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
}

/* --------------------------------------------------------------------------
   14. ARTICLE PAGE & READING PROGRESS
   -------------------------------------------------------------------------- */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
  box-shadow: var(--glow-cyan);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

.article-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 4rem 0;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2, .article-body h3 {
  margin: 2rem 0 1rem;
  color: var(--text-primary);
}

.article-quote {
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--color-cyan);
  background: rgba(0, 255, 245, 0.05);
  font-style: italic;
  font-size: 1.2rem;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  margin-top: 3rem;
}

/* Comments Section */
.comments-section {
  margin-top: 4rem;
}

.comment-input-box {
  margin-bottom: 2rem;
}

.comment-textarea {
  width: 100%;
  height: 120px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  margin-bottom: 1rem;
}

.comment-item {
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-left: 2px solid var(--color-cyan);
}

/* --------------------------------------------------------------------------
   15. LIVE SEARCH OVERLAY & TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(25px);
  z-index: 10005;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-box-wrap {
  width: 90%;
  max-width: 700px;
  position: relative;
}

.search-input-large {
  width: 100%;
  padding: 1.25rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--color-cyan);
  border-radius: var(--radius-md);
  box-shadow: var(--glow-cyan);
}

.search-results-list {
  width: 90%;
  max-width: 700px;
  margin-top: 1.5rem;
  max-height: 450px;
  overflow-y: auto;
}

.search-result-item {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--bg-glass-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.search-result-item:hover {
  background: rgba(0, 255, 245, 0.15);
  border-left: 4px solid var(--color-cyan);
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10010;
}

.toast {
  padding: 1rem 1.5rem;
  background: var(--bg-glass-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--color-cyan);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-subheading);
  font-size: 1rem;
  box-shadow: var(--glow-cyan);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.4s ease forwards;
}

.toast.success { border-color: var(--color-green); box-shadow: 0 0 15px rgba(0, 255, 102, 0.4); }
.toast.error { border-color: var(--color-pink); box-shadow: var(--glow-pink); }

/* --------------------------------------------------------------------------
   16. FOOTER & ANIMATED CANVAS WAVE
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--bg-secondary);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border-cyan);
}

.footer-wave {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%0d1117'%3E%3C/path%3E%3C/svg%3E") repeat-x;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   17. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-glass-card);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--glow-cyan);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS (Desktop, Laptop, Tablet, Mobile, Small Mobile)
   -------------------------------------------------------------------------- */
/* Laptop (1440px) */
@media (max-width: 1440px) {
  .hero-title { font-size: 3rem; }
  .hero-canvas-wrapper { height: 460px; }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-canvas-wrapper { height: 400px; margin-top: 2rem; }
  .grid-3-col { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card-horizontal { grid-template-columns: 1fr; }
  .article-container { grid-template-columns: 1fr; }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  /* Header / Mobile Drawer */
  .header-navbar { padding: 0.8rem 0; }
  .header-navbar.scrolled { padding: 0.6rem 0; }
  .brand-logo { font-size: 1.1rem; gap: 0.6rem; }
  .logo-icon { width: 36px; height: 36px; font-size: 1.15rem; }
  .btn-icon { width: 40px; height: 40px; font-size: 1rem; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(22, 27, 34, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin: 0;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  }
  .nav-menu.active { right: 0; }
  .nav-menu .nav-link { font-size: 1.05rem; padding: 0.6rem 0; width: 100%; }
  .nav-menu .has-dropdown { position: static; width: 100%; }
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.5rem 0 0.5rem 0.75rem;
    margin-top: 0.5rem;
    background: transparent;
    border: none;
    border-left: 2px solid var(--color-cyan);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .mega-item { padding: 0.6rem 0.75rem; }
  .mobile-toggle { display: block; }

  /* Custom cursor off on touch devices */
  .custom-cursor, .custom-cursor-dot { display: none; }
  #particle-canvas { opacity: 0.35; }

  /* Hero */
  .hero-section { padding-top: 6rem; padding-bottom: 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-canvas-wrapper { height: 300px; margin-top: 1.5rem; }
  .hero-description { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-buttons { gap: 0.9rem; margin-bottom: 2rem; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; padding-top: 1rem; }
  .stat-item h4 { font-size: 1.4rem; }

  /* Section type scale */
  .featured-section, .blog-grid-section, .categories-section, .reviews-section { padding: 3.5rem 0; }
  .section-title { font-size: 1.5rem; gap: 0.5rem; margin-bottom: 0.35rem; }
  .section-title::before { width: 8px; height: 22px; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; letter-spacing: 1px; }

  /* Cards / grids */
  .grid-3-col { grid-template-columns: 1fr; gap: 1.25rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .category-card { padding: 1.5rem 0.75rem; }
  .category-icon-wrap { width: 56px; height: 56px; font-size: 1.5rem; }
  .video-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
  .video-card { height: 200px; }
  .streamers-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .card-image-wrap { height: 200px; }
  .blog-card-img { height: 190px; }
  .blog-card-content { padding: 1.25rem; }
  .review-card-horizontal { gap: 1.25rem; padding: 1.25rem; }
  .review-img { height: 200px; }

  /* Filter bar */
  .filter-bar { flex-direction: column; align-items: stretch; gap: 0.75rem; padding: 1rem; margin-bottom: 2rem; }
  .filter-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.35rem; gap: 0.5rem; }
  .filter-btn { white-space: nowrap; padding: 0.45rem 1rem; }

  /* Gallery */
  .gallery-masonry { columns: 2; column-gap: 0.75rem; }
  .gallery-item { margin-bottom: 0.75rem; }

  /* Newsletter */
  .newsletter-card { padding: 2.5rem 1.25rem; }
  .newsletter-form { flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
  .newsletter-input { width: 100%; }

  /* Article / inner pages */
  .article-container { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .article-body { font-size: 1rem; }
  .article-body h2, .article-body h3 { margin: 1.5rem 0 0.75rem; }
  .author-box { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1rem; }
  .comment-textarea { height: 110px; }
  div[style*="position:sticky"] { position: static !important; }

  /* Inner-page banner overrides (inline styles) */
  section[style*="10rem 0 4rem"] { padding: 6.5rem 0 3rem !important; }
  section[style*="9rem 0 3rem"] { padding: 6rem 0 2.5rem !important; }
  h1[style*="font-size:3rem"] { font-size: 2rem !important; }
  h1[style*="font-size:2.75rem"] { font-size: 1.85rem !important; }
  h2[style*="font-size:2.5rem"] { font-size: 1.75rem !important; }
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 1.5rem; }
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 1.25rem; }
  div[style*="grid-template-columns: 1fr 1.5fr"] { grid-template-columns: 1fr !important; gap: 1.5rem; }
  div[style*="grid-template-columns: 1fr 340px"] { grid-template-columns: 1fr !important; gap: 2rem; }
  div[style*="grid-template-columns: repeat(2, 1fr)"] { grid-template-columns: 1fr !important; gap: 1.25rem; }
  div[style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; gap: 1rem; }

  /* Search / toast / misc */
  .search-modal { padding-top: 4rem; }
  .search-input-large { font-size: 1.15rem; padding: 1rem 1.25rem; }
  .toast-container { bottom: 1rem; right: 1rem; left: 1rem; }
  .toast { padding: 0.85rem 1.1rem; font-size: 0.9rem; }

  /* Footer */
  .footer { padding-top: 3rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-section { padding-top: 5.5rem; padding-bottom: 2.5rem; }
  .hero-title { font-size: 1.6rem; }
  .hero-canvas-wrapper { height: 260px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .hero-stats { gap: 1rem; }
  .nav-actions .btn-cyber { display: none; }
  .category-grid { gap: 0.75rem; }
  .streamers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-masonry { columns: 1; }
  .section-title { font-size: 1.3rem; }
  .video-card { height: 180px; }
  .social-links { flex-wrap: wrap; }
}
