/* ========================================
   HOUSEHOLDS & HUMANS - MAIN STYLESHEET
   Dark theme with bold red accents
   ======================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand Colors */
  --color-red: #EE001E;
  --color-stone: #F6F0E2;
  --color-neon: #F8FF3C;
  --color-coral: #FF281E;
  --color-black: #000000;
  --color-white: #FFFFFF;
  
  /* Background & Text */
  --bg-primary: #1a1a1a;
  --bg-secondary: #242424;
  --bg-card: #2a2a2a;
  --text-primary: var(--color-stone);
  --text-secondary: rgba(246, 240, 226, 0.8);
  --text-tertiary: rgba(246, 240, 226, 0.6);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  
  /* Header Height */
  --header-height: 70px;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  font-family: 'Acme', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

main {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

h1, h2 {
  font-family: "IM Fell English SC", serif;
}

h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
}

p {
  margin-bottom: var(--spacing-md);
}

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

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  color: var(--text-primary);
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(246, 240, 226, 0.1);
  z-index: 1000;
  height: var(--header-height);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 0.05em;
}

.brand-title {
  text-shadow: 0 0 20px rgba(238, 0, 30, 0.5);
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(238, 0, 30, 0.3));
  transition: filter var(--transition-normal);
}

.brand-logo:hover {
  filter: drop-shadow(0 0 20px rgba(238, 0, 30, 0.6));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-red);
  background: rgba(238, 0, 30, 0.1);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  z-index: 1001;
}

.hamburger {
  width: 28px;
  height: 3px;
  background: var(--color-stone);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-xl) var(--spacing-lg);
    gap: var(--spacing-sm);
    border-left: 1px solid rgba(246, 240, 226, 0.1);
    transition: right var(--transition-slow);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    width: 100%;
    display: block;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--spacing-xl) var(--container-padding);
  max-width: 1000px;
  margin: 0 auto;
}

.hero-logo {
  max-width: min(600px, 90vw);
  height: auto;
  margin: 0 auto var(--spacing-xl);
  display: block;
  filter: drop-shadow(0 10px 40px rgba(238, 0, 30, 0.4));
  animation: heroFloat 6s ease-in-out infinite;
}

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

.hero-title {
  color: var(--color-stone);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
  box-shadow: 0 4px 20px rgba(238, 0, 30, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-coral);
  border-color: var(--color-coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(238, 0, 30, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.cta-wrapper {
  margin-top: var(--spacing-xl);
  text-align: center;
}

/* ===== UPDATES SECTION ===== */
.updates-section {
  background: var(--bg-secondary);
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--bg-primary);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== FANS CAROUSEL ===== */
.fans-section {
  background: var(--bg-secondary);
}

.carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-slide {
  display: none;
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  min-height: 350px;
  animation: slideIn 0.5s ease;
  position: relative;
}

.carousel-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide-with-dragon {
  display: none;
}

.carousel-slide-with-dragon.active {
  display: grid !important;
  grid-template-columns: clamp(140px, 38%, 340px) 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(16px, 3vw, 32px);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  min-height: 280px;
  overflow: hidden;
}

.testimonial-media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 220px;
  height: 100%;
  background: transparent !important;
  border-radius: 0;
  overflow: visible;
}

.testimonial-media .testimonial-dragon {
  position: relative;
  width: min(100%, 520px);
  max-height: 100%;
  height: auto;
  object-fit: contain !important;
  object-position: left bottom;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

.carousel-slide-with-dragon .testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.carousel-slide-with-dragon .testimonial-quote {
  color: var(--stone, #F6F0E2);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  line-height: 1.35;
  margin: 0 0 12px 0;
  max-width: 48ch;
}

.carousel-slide-with-dragon .testimonial-name {
  color: rgba(246,240,226,0.75);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  opacity: 0.8;
}

.carousel .carousel-slide {
  width: 100%;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--spacing-lg);
  display: block;
  object-fit: cover;
  border: 4px solid var(--color-red);
  box-shadow: 0 4px 20px rgba(238, 0, 30, 0.3);
}

.testimonial-quote {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.testimonial-name {
  display: block;
  font-size: 1rem;
  color: var(--text-tertiary);
  font-style: normal;
  position: relative;
  z-index: 2;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.carousel-btn {
  background: var(--bg-card);
  border: 2px solid rgba(246, 240, 226, 0.2);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: scale(1.1);
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 4px;
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: var(--spacing-sm);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(246, 240, 226, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
  background: rgba(246, 240, 226, 0.6);
  transform: scale(1.2);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

.carousel-dot.active {
  background: var(--color-red);
  width: 32px;
  border-radius: 6px;
}

/* ===== TIKTOK SECTION ===== */
.tiktok-section {
  background: var(--bg-primary);
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto var(--spacing-xl);
  justify-items: center;
}

.tiktok-embed {
  max-width: 325px;
  min-height: 500px;
}

/* ===== FOLLOW SECTION ===== */
.follow-section {
  background: var(--bg-secondary);
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.social-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(246, 240, 226, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-base);
  position: relative;
}

.social-btn:hover,
.social-btn:focus-visible {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(238, 0, 30, 0.4);
}

.social-btn:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 4px;
}

.social-btn:active {
  transform: translateY(-2px) scale(1.05);
}

.social-btn svg {
  transition: transform var(--transition-fast);
}

.social-btn:hover svg {
  transform: scale(1.15);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(246, 240, 226, 0.1);
  padding: var(--spacing-xl) 0;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
}

.footer-copyright {
  color: var(--text-tertiary);
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-red);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
  padding: 2px 4px;
}

.footer-divider {
  color: var(--text-tertiary);
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .section {
    padding: var(--spacing-2xl) 0;
  }
  
  .hero-section {
    min-height: auto;
    height: auto;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    background-size: 100% auto !important;
    background-position: center top !important;
    aspect-ratio: 16 / 9;
  }
  
  .carousel-slide {
    min-height: 400px;
    padding: var(--spacing-lg);
  }
  
  .carousel-slide-with-dragon.active {
    grid-template-columns: clamp(120px, 44%, 240px) 1fr;
    min-height: 240px;
  }
  
  .testimonial-media {
    min-height: 200px;
  }
  
  .tiktok-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    gap: var(--spacing-md);
  }
  
  .social-btn {
    width: 56px;
    height: 56px;
  }
  
  .carousel-controls {
    gap: var(--spacing-md);
  }
}

@media (min-width: 769px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================
   MINI BLOG & COMMENTS STYLES
   ========================================= */

/* Utility - Visually Hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mini Blog Carousel */
.mini-blog-carousel {
  position: relative;
  margin-top: clamp(16px, 2vw, 24px);
}

.mb-track {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.mb-track::-webkit-scrollbar {
  height: 6px;
}

.mb-track::-webkit-scrollbar-track {
  background: transparent;
}

.mb-track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.mb-track::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.3);
}

.mb-card {
  flex: 0 0 min(92vw, 840px);
  scroll-snap-align: center;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  padding: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(48px, 6vw, 64px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.mb-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
}

.mb-card header {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mb-title {
  margin: 0 0 4px 0;
  font-family: 'IM Fell English SC', serif;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--color-stone);
  line-height: 1.3;
}

.mb-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mb-date {
  opacity: 0.7;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.mb-author {
  opacity: 0.8;
  font-size: 0.85rem;
  color: var(--color-neon);
  font-style: italic;
}

.mb-content {
  color: var(--text-primary);
  line-height: 1.6;
}

.mb-content p {
  margin: 0 0 0.8rem 0;
}

.mb-content p:last-child {
  margin-bottom: 0;
}

/* Navigation Buttons */
.mb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: var(--color-stone);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mb-nav:hover {
  background: rgba(238,0,30,0.2);
  border-color: var(--color-red);
  transform: translateY(-50%) scale(1.1);
}

.mb-nav:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.mb-nav.prev {
  left: -4px;
}

.mb-nav.next {
  right: -4px;
}

.mb-footer {
  text-align: center;
  margin-top: clamp(12px, 2vw, 20px);
}

/* Comments Section */
.mb-comments {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.cmt-preview-notice {
  background: rgba(248,255,60,0.1);
  border-left: 3px solid var(--color-neon);
  padding: 8px 12px;
  border-radius: 4px;
}

.cmt-auth {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cmt-or {
  opacity: 0.6;
  font-size: 0.9rem;
}

.cmt-name {
  flex: 1;
  min-width: 140px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-base);
}

.cmt-name:focus {
  outline: none;
  border-color: var(--color-red);
  background: rgba(255,255,255,0.08);
}

.btn-google {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255,255,255,0.9);
  color: #333;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
  font-weight: 500;
}

.btn-google:hover:not(:disabled) {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn-google:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cmt-form {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cmt-input {
  flex: 1;
  resize: vertical;
  min-height: 80px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color var(--transition-base);
}

.cmt-input:focus {
  outline: none;
  border-color: var(--color-red);
  background: rgba(255,255,255,0.08);
}

.cmt-submit {
  align-self: flex-start;
  margin-top: 0;
}

.cmt-submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.cmt-count {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 8px 0;
  color: var(--text-secondary);
}

.cmt-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  gap: 10px;
}

.cmt-item {
  background: rgba(0,0,0,.25);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition-base);
}

.cmt-item:hover {
  background: rgba(0,0,0,.35);
}

.cmt-meta {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
}

.cmt-meta strong {
  color: var(--text-primary);
}

.cmt-avatar {
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.cmt-message {
  color: var(--text-primary);
  line-height: 1.5;
  word-wrap: break-word;
}

.cmt-toggle {
  width: 100%;
  margin-top: 8px;
}

/* Button Variants */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  text-align: center;
}

.btn-ghost {
  background: transparent;
  color: var(--color-stone);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mb-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .mb-nav.prev {
    left: -2px;
  }
  
  .mb-nav.next {
    right: -2px;
  }
  
  .cmt-auth {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cmt-name {
    min-width: 100%;
  }
  
  .cmt-form {
    flex-direction: column;
  }
  
  .cmt-submit {
    width: 100%;
  }
}
