:root {
  /* Nuanced Dark Palette */
  --bg-dark: #050505;
  --bg-surface: #0a0a0a;
  --bg-surface-light: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent: #bb86fc;
  --accent-secondary: #03dac6;
  --accent-shopping: #ff9900;
  --accent-cinema: #ff4d4d;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-bright: rgba(255, 255, 255, 0.2);
  
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --header-height: 130px; /* Maximum impact header */
  --container-width: 1200px;
}

@font-face {
  font-family: 'Outfit';
  src: url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');
}

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

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  /* Subtle Radial Gradient for depth */
  background-image: radial-gradient(circle at 50% 0%, rgba(187, 134, 252, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 0% 100%, rgba(3, 218, 198, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Glassmorphism Helper */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.product-image {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #000;
}

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

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Header & Nav */
header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 100px; /* Maximum visibility as requested */
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Specific Footer Logo sizing */
.main-footer .logo {
  height: 110px;
}

.logo span {
  display: none; /* Hide legacy text components if any remain */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0.6rem 2rem;
  border-radius: 100px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: white;
}

/* Dropdown Menu Styles */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 0;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1100;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  width: 100%;
}

.dropdown li a {
  padding: 0.8rem 1.5rem;
  display: block;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.2s;
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--accent);
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(187, 134, 252, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-bright);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Sections */
section {
  padding: 8rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-title h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-title p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Home Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(5,5,5,0.85), rgba(5,5,5,0.95)), 
url('/assets/home-hero-v2.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax-like depth */
}

/* AI Labs Hero */
.ai-labs-hero {
  padding: 10rem 0 6rem;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.7), var(--bg-dark)), url('/assets/ai-labs-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 2rem;
}

.hero h1 span {
  background: linear-gradient(45deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Service & Shopping Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

/* Micro Grid for Shopping */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  justify-content: center;
  width: 100%;
}

.service-card, .product-card {
  padding: 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover, .product-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255,255,255,0.05);
}

.product-card {
  padding: 1.5rem;
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Cinema Styles */
.cinema-hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.cinema-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000 0%, transparent 50%, rgba(0,0,0,0.5) 100%);
}

.cinema-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 4rem;
}

.cinema-accent {
  color: var(--accent-cinema);
}

/* Infinite Edge-to-Edge Carousel */
.carousel-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 4rem 0;
  background: rgba(0,0,0,0.3);
  margin-top: 2rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.carousel-container {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 2rem 0;
  animation: scroll-infinite 40s linear infinite;
  will-change: transform;
}

.carousel-wrapper:hover .carousel-container {
  animation-play-state: paused;
}

@keyframes scroll-infinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.carousel-item {
  flex: 0 0 auto;
  width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 2/3;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.carousel-item:hover {
  transform: scale(1.05) translateY(-10px);
  z-index: 10;
  border-color: var(--accent-cinema);
  box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 30px rgba(229, 9, 20, 0.3);
}

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

.carousel-item:hover img {
  transform: scale(1.1);
}

.poster-grid {
  display: none; /* Replaced by Carousel */
}

.poster-card {
  aspect-ratio: 2/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.poster-card:hover img {
  transform: scale(1.1);
}

/* Footer (Expanded) */
.main-footer {
  padding: 6rem 0 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-light);
}

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

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-col ul a:hover {
  color: white;
  padding-left: 5px;
}

.newsletter-box {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-box input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  color: white;
  flex: 1;
  outline: none;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-icon:hover {
  background: var(--accent);
  color: #000;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Chat Agent - Floating Bubble */
.chat-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 2000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-bubble:hover {
  transform: scale(1.1);
}

.chat-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 350px;
  height: 500px;
  display: flex;
  flex-direction: column;
  z-index: 1999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.chat-window.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.chat-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
  display: none !important;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  color: white;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--bg-surface-light);
  border-color: var(--accent);
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  
  .nav-links.mobile-active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex !important;
    z-index: 1001;
  }

  .dropdown {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: all;
    padding: 0;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .nav-item.active .dropdown {
    max-height: 500px;
    margin-top: 1rem;
  }

  .dropdown li a {
    padding: 0.5rem 1rem;
    border: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}
/* AI Labs Generator Styles */
.glass-input, .glass-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: white;
  outline: none;
  transition: all 0.3s;
}

.glass-input:focus, .glass-textarea:focus {
  border-color: var(--accent-secondary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(3, 218, 198, 0.1);
}

.glass-textarea {
  width: 100%;
  height: 120px;
  padding: 1.5rem;
  border-radius: 15px;
  resize: none;
  font-size: 1rem;
}

.prompt-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.generate-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.generate-btn:hover {
  transform: scale(1.05) translateY(-2px);
  filter: brightness(1.1);
}

.credit-badge {
  background: rgba(3, 218, 198, 0.1);
  border: 1px solid var(--accent-secondary);
  color: var(--accent-secondary);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.credit-badge small {
  font-size: 0.6rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* Gallery Tabs */
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 1rem 0;
  position: relative;
  transition: color 0.3s;
}

.tab-btn.active {
  color: white;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-secondary);
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.gallery-overlay p {
  color: white;
  font-size: 0.8rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Loader */
.loader {
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* Pricing Page Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-secondary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pricing-card.popular {
  border-color: var(--accent-secondary);
  background: rgba(138, 43, 226, 0.05);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-secondary);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.credits-count {
  background: rgba(255,255,255,0.05);
  padding: 0.8rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  color: var(--accent-secondary);
  font-weight: 600;
  font-size: 1.1rem;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.features-list li svg {
  color: var(--accent-secondary);
  flex-shrink: 0;
}

.btn-buy {
  width: 100%;
  padding: 1.2rem;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
}

.pricing-card.popular .btn-buy {
  background: var(--accent-secondary);
  color: #000;
}

/* Header Auth Buttons */
/* Header Auth & Profile Navigation */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 1.5rem;
}

.login-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.login-link:hover {
  color: white;
}

.btn-signup {
  padding: 0.6rem 1.4rem;
  background: var(--accent-secondary);
  color: #000;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.user-profile-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.nav-account-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.user-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.user-email {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-header-logout {
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-header-logout:hover {
  background: rgba(255, 77, 77, 0.15);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .auth-buttons {
    display: none;
  }
  .user-profile-nav { 
    margin: 1.5rem 0; 
    width: 100%; 
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
  }
  .user-email { max-width: none; }
}
