/* ==========================================================================
   DESIGN SYSTEM - HORA DO FILME
   ========================================================================== */

/* Colors & Variables */
:root {
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Cinzel', serif;

  /* Premium Dark Theme Palette */
  --bg-darkest: #070708;       /* Pitch black backdrop */
  --bg-primary: #0C0C0E;       /* Deep slate grey */
  --bg-secondary: #131317;     /* Graphite gray cards */
  --bg-tertiary: #1C1C22;      /* Active state/borders */
  --bg-card: rgba(19, 19, 23, 0.75);
  
  --accent-red: #E50914;       /* Cinema Crimson */
  --accent-red-hover: #F6121D;
  --accent-red-glow: rgba(229, 9, 20, 0.4);
  --accent-gold: #D4AF37;      /* Collector's Gold */
  --accent-gold-hover: #E5C158;
  
  --text-primary: #F5F5F7;     /* Crisp white text */
  --text-secondary: #A0A0AA;   /* Cool muted gray */
  --text-muted: #6B6B76;       /* Dark placeholder gray */
  
  --glass-bg: rgba(12, 12, 14, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.5);
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

body {
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cinzel-font {
  font-family: var(--font-secondary);
}

.accent-red {
  color: var(--accent-red);
}
.accent-gold {
  color: var(--accent-gold);
}

/* Ambient glow in background */
.ambient-glow {
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* ==========================================================================
   LAYOUT: Header & Footer
   ========================================================================== */

.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px var(--glass-shadow);
  height: 72px;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon {
  color: var(--accent-red);
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px var(--accent-red-glow));
}

.logo-text {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.desktop-nav ul {
  display: flex;
  gap: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.nav-item i {
  width: 16px;
  height: 16px;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.nav-item.active {
  border-bottom: 2px solid var(--accent-red);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Global Search Input */
.search-box {
  position: relative;
  width: 280px;
}

.search-box input {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  padding: 10px 16px 10px 42px;
  border-radius: var(--border-radius-full);
  font-size: 13px;
  outline: none;
  transition: var(--transition-smooth);
}

.search-box input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
  width: 320px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  pointer-events: none;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  max-height: 400px;
  overflow-y: auto;
  z-index: 200;
  display: flex;
  flex-direction: column;
}

.search-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--bg-tertiary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-drop-item:hover {
  background: var(--bg-tertiary);
}

.search-drop-item img {
  width: 36px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.search-drop-item .item-info {
  display: flex;
  flex-direction: column;
}

.search-drop-item .item-title {
  font-weight: 600;
  font-size: 14px;
}

.search-drop-item .item-meta {
  font-size: 11px;
  color: var(--text-secondary);
}

.action-btn {
  background: var(--bg-tertiary);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.action-btn:hover {
  background: var(--accent-red);
  color: white;
}

.scan-btn {
  border: 1px solid rgba(229, 9, 20, 0.3);
}

/* Header Login / Profile Menu */
.login-btn-primary {
  background: var(--accent-red);
  padding: 8px 20px;
  border-radius: var(--border-radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.login-btn-primary:hover {
  background: var(--accent-red-hover);
  box-shadow: 0 0 12px var(--accent-red-glow);
}

.user-profile-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 12px 4px 4px;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-full);
  position: relative;
}

.user-avatar-header {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  border: 1px solid var(--accent-red);
}

.user-name-header {
  font-size: 13px;
  font-weight: 600;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* User Dropdown */
.profile-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
}

.profile-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.profile-drop-item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.profile-drop-item i {
  width: 16px;
  height: 16px;
}

.profile-drop-divider {
  height: 1px;
  background: var(--bg-tertiary);
}

/* Notifications Dropdown */
.notifications-wrapper {
  position: relative;
}

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  border-radius: var(--border-radius-full);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-darkest);
}

.notifications-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 200;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.notif-header {
  padding: 16px;
  border-bottom: 1px solid var(--bg-tertiary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notif-header h3 {
  font-size: 16px;
}

.notif-header button {
  font-size: 12px;
  color: var(--accent-red);
  cursor: pointer;
}

.notif-list {
  max-height: 320px;
  overflow-y: auto;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--bg-tertiary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.notif-item:hover {
  background: var(--bg-tertiary);
}

.notif-item.unread {
  background: rgba(229, 9, 20, 0.04);
  border-left: 3px solid var(--accent-red);
}

.notif-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
}

.notif-content p {
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.notif-content .notif-time {
  font-size: 10px;
  color: var(--text-secondary);
}

.no-notif {
  padding: 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Mobile Nav Styles */
.mobile-menu-btn {
  display: none;
  background: var(--bg-tertiary);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--bg-tertiary);
  z-index: 300;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.4s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--border-radius-md);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.mobile-nav-item.active {
  border-left: 4px solid var(--accent-red);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.drawer-divider {
  height: 1px;
  background: var(--bg-tertiary);
  margin: 12px 0;
}

/* Footer Styles */
.app-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-tertiary);
  padding: 60px 0 20px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  background: var(--bg-tertiary);
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-red);
  color: white;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-red);
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-tertiary);
}

.footer-bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   MODAL DIALOGS
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 32px;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-modal-btn:hover {
  background: var(--accent-red);
  color: white;
}

/* Auth Modal Styles */
.auth-card {
  max-width: 440px;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--bg-tertiary);
  margin-bottom: 24px;
}

.auth-tab-btn {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
}

.auth-tab-btn.active {
  color: var(--text-primary);
  border-color: var(--accent-red);
}

.auth-form h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.auth-subtitle {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 24px;
}

/* Forms */
.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
}

.input-wrapper input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  padding: 12px 16px 12px 42px;
  border-radius: var(--border-radius-md);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.input-wrapper input:focus, select:focus, textarea:focus {
  border-color: var(--accent-red);
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

select, textarea, input[type="text"], input[type="number"], input[type="password"] {
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  padding: 12px;
  border-radius: var(--border-radius-md);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
}

textarea {
  resize: vertical;
}

.submit-btn-red {
  width: 100%;
  background: var(--accent-red);
  padding: 14px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 10px;
}

.submit-btn-red:hover {
  background: var(--accent-red-hover);
  box-shadow: 0 0 12px var(--accent-red-glow);
}

.social-login-separator {
  text-align: center;
  position: relative;
  margin: 24px 0;
}

.social-login-separator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--bg-tertiary);
  z-index: 1;
}

.social-login-separator span {
  background: var(--bg-secondary);
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.social-login-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-login-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  padding: 10px;
  border-radius: var(--border-radius-md);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.social-login-item:hover {
  background: var(--bg-primary);
}

/* Add Media / Collector Form Modal Card */
.media-form-card {
  max-width: 680px;
}

.media-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
}

.flex-end {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.cancel-btn {
  background: var(--bg-tertiary);
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   VIEWPORT: Core Containers & Pages
   ========================================================================== */

#app-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 24px;
  min-height: 70vh;
}

/* ==========================================================================
   PAGE: Home
   ========================================================================== */

/* Rotating Hero Banner */
.hero-banner-section {
  margin-bottom: 48px;
}

.hero-banner-container {
  position: relative;
  height: 520px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: var(--bg-secondary);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: flex-end;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,7,8,1) 0%, rgba(7,7,8,0.7) 40%, rgba(0,0,0,0) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 48px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(20px);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-badge {
  background: var(--accent-red);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.hero-badge.gold {
  background: var(--accent-gold);
  color: var(--bg-darkest);
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-synopsis {
  color: var(--text-secondary);
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta-row {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-action-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition-fast);
}

.hero-btn-red {
  background: var(--accent-red);
  color: white;
}

.hero-btn-red:hover {
  background: var(--accent-red-hover);
  box-shadow: 0 0 12px var(--accent-red-glow);
}

.hero-btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-btn-glass:hover {
  background: rgba(255,255,255,0.2);
}

/* Indicators */
.hero-indicators {
  position: absolute;
  bottom: 24px;
  right: 48px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.indicator-dot {
  width: 24px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator-dot.active {
  background: var(--accent-red);
  width: 40px;
}

/* Section Header */
.section-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  margin-top: 48px;
  border-left: 4px solid var(--accent-red);
  padding-left: 16px;
}

.section-header-block h2 {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 700;
}

.section-header-block p {
  color: var(--text-secondary);
  font-size: 14px;
}

.see-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.see-all-link:hover {
  color: var(--accent-red-hover);
  gap: 8px;
}

/* Carousel/Grid layouts */
.media-grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
}

.news-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Movie Poster Card */
.movie-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 2 / 3;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.25);
  border: 1px solid rgba(229, 9, 20, 0.5);
}

.movie-card:hover img {
  transform: scale(1.05);
}

.movie-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.movie-card:hover .movie-card-overlay {
  opacity: 1;
}

.movie-card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.movie-card-meta {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

.movie-card-format-tag {
  background: var(--accent-red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

/* News Cards */
.news-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229,9,20,0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.news-card-img {
  height: 180px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-tag-row {
  display: flex;
  gap: 8px;
}

.news-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
}

.news-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.news-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--bg-tertiary);
  padding-top: 12px;
}

/* Home Section Layout Side-by-Side */
.home-split-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Reviews List */
.reviews-compact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-compact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  padding: 20px;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 20px;
  position: relative;
}

.review-compact-film-img {
  width: 70px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.review-compact-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-compact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-compact-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.review-compact-avatar {
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
}

.review-compact-user-name {
  font-weight: 600;
}

.review-stars-wrapper {
  color: var(--accent-gold);
  font-size: 12px;
}

.review-compact-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-compact-specs {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.review-compact-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Leaderboards / Rankings & Activity Column */
.sidebar-rankings {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ranking-card-widget {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 20px;
}

.ranking-widget-title {
  font-size: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--bg-tertiary);
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rank-position {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 900;
  width: 24px;
  text-align: center;
}

.rank-position.gold { color: var(--accent-gold); }
.rank-position.silver { color: #A0A0A0; }
.rank-position.bronze { color: #CD7F32; }

.rank-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
}

.rank-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rank-name {
  font-size: 13px;
  font-weight: 600;
}

.rank-count {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Trailer Embed Week Spotlight */
.spotlight-section {
  margin-top: 48px;
  margin-bottom: 48px;
}

.spotlight-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(229,9,20,0.05) 100%);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.spotlight-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spotlight-media-container {
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  position: relative;
  background: black;
}

.spotlight-media-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.spotlight-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-gold);
  color: var(--bg-darkest);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.spotlight-title {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 900;
}

.spotlight-desc {
  color: var(--text-secondary);
  font-size: 14.5px;
}

.spotlight-stats {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

.spotlight-stats-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Affiliate Promo Area */
.promos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-fast);
}

.promo-card:hover {
  border-color: var(--accent-gold);
}

.promo-store-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.promo-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
}

.promo-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.promo-price-orig {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.promo-price-sale {
  font-size: 16px;
  font-weight: 800;
  color: #2ECC71;
}

.promo-btn {
  width: 100%;
  background: var(--bg-tertiary);
  padding: 8px;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-fast);
}

.promo-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-darkest);
}

/* ==========================================================================
   PAGE: Perfil (Collector Profile)
   ========================================================================== */

.profile-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.profile-hero {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.profile-banner {
  height: 260px;
  width: 100%;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

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

.profile-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,14,1) 0%, rgba(0,0,0,0.4) 100%);
}

.profile-header-info {
  background: var(--bg-primary);
  padding: 0 32px 32px 32px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  position: relative;
  margin-top: -80px;
  z-index: 10;
  border-bottom: 1px solid var(--bg-tertiary);
}

.profile-avatar-wrapper {
  width: 140px;
  height: 140px;
  border-radius: var(--border-radius-full);
  border: 4px solid var(--bg-primary);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  overflow: hidden;
  background: var(--bg-secondary);
}

.profile-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-meta-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-name-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-display-name {
  font-size: 28px;
  font-weight: 800;
}

.profile-username {
  font-size: 15px;
  color: var(--text-secondary);
}

.profile-geo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.profile-socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.profile-socials a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.profile-socials a:hover {
  color: var(--accent-red);
}

.profile-actions-wrapper {
  display: flex;
  gap: 12px;
  align-self: center;
}

.follow-btn {
  background: var(--accent-red);
  padding: 10px 24px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.follow-btn:hover {
  background: var(--accent-red-hover);
  box-shadow: 0 0 10px var(--accent-red-glow);
}

.follow-btn.following {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
}

.follow-btn.following:hover {
  background: rgba(255,255,255,0.05);
  box-shadow: none;
}

/* Profile Grid split - Side Stats & Content Tab */
.profile-content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

/* Sidebar Dashboard Stats */
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 20px;
}

.widget-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-bio {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stats-circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.stats-donut-chart {
  width: 140px;
  height: 140px;
  border-radius: var(--border-radius-full);
  background: conic-gradient(
    var(--accent-red) 0% 40%,
    var(--accent-gold) 40% 65%,
    #3498db 65% 85%,
    #2ecc71 85% 95%,
    #9b59b6 95% 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-donut-chart::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: var(--border-radius-full);
  background: var(--bg-secondary);
}

.stats-donut-inner-val {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.stats-donut-total {
  font-size: 24px;
  font-weight: 800;
}

.stats-donut-lbl {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.stats-format-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.format-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.format-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
}

.format-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--border-radius-full);
}

.format-dot.uhd { background: var(--accent-red); }
.format-dot.bluray { background: var(--accent-gold); }
.format-dot.steel { background: #3498db; }
.format-dot.dvd { background: #2ecc71; }
.format-dot.vhs { background: #9b59b6; }

.format-val {
  font-weight: 700;
}

/* Badges showcase */
.badges-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  opacity: 0.3;
  transition: var(--transition-fast);
}

.badge-item.unlocked {
  opacity: 1;
}

.badge-icon-wrapper {
  background: var(--bg-tertiary);
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
}

.badge-item.unlocked .badge-icon-wrapper {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.badge-item p {
  font-size: 9px;
  font-weight: 700;
  max-width: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Follower stat line */
.follow-stat-box {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.follow-stat-item h3 {
  font-size: 18px;
}
.follow-stat-item p {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Profile Content Tabs */
.profile-tabs-header {
  display: flex;
  border-bottom: 1px solid var(--bg-tertiary);
  margin-bottom: 24px;
  gap: 8px;
  overflow-x: auto;
}

.profile-tab-trigger {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.profile-tab-trigger:hover, .profile-tab-trigger.active {
  color: var(--text-primary);
}

.profile-tab-trigger.active {
  border-color: var(--accent-red);
}

/* Estante Collection grid */
.shelf-filters-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.filter-pill {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
}

.shelf-search {
  position: relative;
  width: 240px;
}

.shelf-search input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  padding: 8px 12px 8px 36px;
  border-radius: var(--border-radius-full);
  font-size: 13px;
}

.shelf-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
}

.shelf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 32px 16px;
  background: linear-gradient(to bottom, transparent 255px, #583311 255px, #2f1704 265px, transparent 265px);
  background-size: 100% 297px;
  padding: 10px 10px 40px 10px;
}

.shelf-card {
  position: relative;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-tertiary);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.shelf-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red);
}

.shelf-poster-wrapper {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: relative;
}

.shelf-poster-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shelf-format-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--bg-darkest);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.shelf-card-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.shelf-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shelf-edition-lbl {
  font-size: 9px;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shelf-rating {
  margin-top: auto;
  color: var(--accent-gold);
  font-size: 9px;
}

.shelf-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--text-secondary);
}

/* Albums page styles */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.album-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.album-card:hover {
  border-color: var(--accent-red);
}

.album-preview-stack {
  height: 120px;
  display: flex;
  gap: 8px;
  background: var(--bg-primary);
  border-radius: 8px;
  padding: 8px;
  overflow: hidden;
}

.album-preview-stack img {
  width: 70px;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 4px 0 10px rgba(0,0,0,0.3);
}

.album-info-row h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.album-info-row p {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ==========================================================================
   PAGE: FilmeDetalhes (Movie Details Page)
   ========================================================================== */

.movie-det-header {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
}

.movie-det-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-det-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,12,14,1) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}

.movie-det-header-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  display: flex;
  gap: 32px;
  width: 100%;
}

.movie-det-poster {
  width: 180px;
  aspect-ratio: 2 / 3;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  margin-bottom: -80px;
}

.movie-det-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-det-main-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
}

.movie-det-title {
  font-family: var(--font-secondary);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
}

.movie-det-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.movie-det-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.movie-det-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.movie-section-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 24px;
}

.movie-section-card h2 {
  font-size: 18px;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent-red);
  padding-left: 12px;
}

.movie-synopsis-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.movie-cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cast-member-card {
  text-align: center;
}

.cast-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  margin: 0 auto 8px auto;
  background: var(--bg-primary);
}

.cast-name {
  font-size: 12px;
  font-weight: 700;
}

.cast-role {
  font-size: 10px;
  color: var(--text-secondary);
}

/* Custom review item details */
.rating-metric-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: var(--bg-primary);
  padding: 16px;
  border-radius: var(--border-radius-md);
}

.metric-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-lbl {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.metric-stars {
  color: var(--accent-gold);
  font-size: 11px;
}

/* Reviews List page detailed */
.review-detail-card {
  border-bottom: 1px solid var(--bg-tertiary);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.review-detail-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.review-detail-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Physical Editions Sub-Section */
.editions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.edition-row-item {
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.edition-row-info h4 {
  font-size: 14px;
  font-weight: 700;
}

.edition-row-info p {
  font-size: 11px;
  color: var(--text-secondary);
}

.edition-specs-chips {
  display: flex;
  gap: 6px;
}

.edition-chip {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
}

.edition-action-btn {
  background: var(--accent-red);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

/* Sidebar info box details */
.movie-det-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.movie-action-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avg-rating-circle-block {
  text-align: center;
  background: var(--bg-primary);
  padding: 16px;
  border-radius: var(--border-radius-md);
  margin-bottom: 12px;
}

.avg-rating-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-gold);
}

.avg-rating-label {
  font-size: 11px;
  color: var(--text-secondary);
}

.watch-providers-block h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.providers-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.provider-icon-mock {
  background: var(--bg-tertiary);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   PAGE: Fórum (Discussions Fórum)
   ========================================================================== */

.forum-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.forum-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forum-search-row {
  display: flex;
  gap: 12px;
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-tertiary);
}

.forum-search-row input {
  flex: 1;
  background: var(--bg-primary);
  padding: 10px 16px;
  border-radius: var(--border-radius-md);
  font-size: 14px;
}

.forum-categories-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.forum-category-group {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.forum-category-header {
  background: var(--bg-tertiary);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid var(--bg-tertiary);
}

.forum-threads-list {
  display: flex;
  flex-direction: column;
}

.forum-thread-item {
  display: grid;
  grid-template-columns: 1fr 120px 140px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--bg-primary);
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.forum-thread-item:hover {
  background: rgba(255,255,255,0.02);
}

.forum-thread-item:last-child {
  border-bottom: none;
}

.thread-main-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.thread-icon-wrapper {
  background: rgba(229,9,20,0.1);
  color: var(--accent-red);
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thread-title-desc h4 {
  font-size: 14.5px;
  font-weight: 700;
}

.thread-title-desc p {
  font-size: 12px;
  color: var(--text-secondary);
}

.thread-replies-stat {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.thread-last-activity {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   PAGE: Marketplace (Classificados)
   ========================================================================== */

.marketplace-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
}

.marketplace-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.marketplace-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.marketplace-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.market-img-wrapper {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

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

.market-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.market-type-badge.venda { background: #2ecc71; color: white; }
.market-type-badge.troca { background: #3498db; color: white; }
.market-type-badge.procuro { background: #e67e22; color: white; }

.market-price-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-gold);
}

.marketplace-card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.market-ad-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.market-ad-meta {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

.market-seller-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border-top: 1px solid var(--bg-tertiary);
  padding-top: 10px;
  font-size: 11px;
}

.market-seller-avatar {
  width: 20px;
  height: 20px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
}

/* ==========================================================================
   PAGE: Calendário (Lançamentos de Mídia Física)
   ========================================================================== */

.calendar-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calendar-month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-tertiary);
}

.calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calendar-day-block {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}

.cal-date-indicator {
  text-align: center;
  border-right: 1px solid var(--bg-tertiary);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cal-day-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-red);
}

.cal-day-name {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.cal-events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cal-event-item {
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.cal-event-title-format {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cal-format-chip {
  background: var(--accent-red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.cal-event-store {
  font-size: 12px;
  color: var(--accent-gold);
}

/* ==========================================================================
   PAGE: Admin Dashboard
   ========================================================================== */

.admin-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.admin-stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-stat-icon-wrapper {
  background: rgba(229,9,20,0.1);
  color: var(--accent-red);
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-stat-info h3 {
  font-size: 24px;
}
.admin-stat-info p {
  font-size: 12px;
  color: var(--text-secondary);
}

.admin-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.admin-table-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 20px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.admin-table th, .admin-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--bg-primary);
}

.admin-table th {
  font-weight: 700;
  color: var(--text-secondary);
}

/* ==========================================================================
   CAMERA & SCANNER SIMULATION GRAPHICS
   ========================================================================== */

.scanner-card {
  max-width: 500px;
}

.scanner-header {
  margin-bottom: 20px;
}

.scanner-toggle {
  display: flex;
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  padding: 4px;
  margin-top: 12px;
}

.scan-tab-btn {
  flex: 1;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.scan-tab-btn.active {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.camera-viewport-wrapper {
  background: black;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--bg-tertiary);
}

.camera-lens {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-fallback {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.fallback-icon {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
}

/* Lasers overlay scanning indicators */
.scanner-guide {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  border: 2px dashed rgba(229, 9, 20, 0.5);
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  transition: var(--transition-smooth);
}

.barcode-guide-box {
  width: 70%;
  height: 30%;
}

.spine-guide-line {
  width: 15%;
  height: 80%;
}

.laser-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  animation: laserScan 2s linear infinite;
}

.laser-line.vertical {
  width: 2px;
  height: 100%;
  animation: laserScanVert 2s linear infinite;
}

.scanner-sim-controls {
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  padding: 14px;
  border: 1px solid var(--bg-tertiary);
}

.sim-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sim-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  padding: 10px;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.sim-btn:hover {
  border-color: var(--accent-red);
  background: rgba(229,9,20,0.05);
}

.scanner-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  padding: 12px 16px;
  border-radius: var(--border-radius-md);
  font-size: 12px;
  color: var(--text-secondary);
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes laserScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

@keyframes laserScanVert {
  0% { left: 0%; }
  50% { left: 100%; }
  100% { left: 0%; }
}

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .news-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .promos-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-content-grid {
    grid-template-columns: 1fr;
  }
  .movie-det-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .search-box {
    display: none; /* Hide global search on mobile header to save space, will use main page searches */
  }
  .home-split-row {
    grid-template-columns: 1fr;
  }
  .profile-content-grid {
    grid-template-columns: 1fr;
  }
  .profile-header-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -60px;
    padding: 0 16px 20px 16px;
  }
  .profile-avatar-wrapper {
    width: 120px;
    height: 120px;
  }
  .profile-actions-wrapper {
    margin-top: 12px;
  }
  .marketplace-layout {
    grid-template-columns: 1fr;
  }
  .form-grid-3, .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .movie-det-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .movie-det-poster {
    width: 130px;
    margin-bottom: 0;
  }
  .movie-det-meta {
    justify-content: center;
  }
  .movie-cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .forum-thread-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .thread-replies-stat, .thread-last-activity {
    padding-left: 52px;
  }
  .calendar-day-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cal-date-indicator {
    border-right: none;
    border-bottom: 1px solid var(--bg-tertiary);
    padding-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 14px;
  }
  .hero-banner-container {
    height: 400px;
  }
  .hero-content {
    padding: 20px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-action-row {
    flex-direction: column;
    gap: 8px;
  }
  .hero-btn {
    justify-content: center;
  }
  .shelf-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
  .albums-grid {
    grid-template-columns: 1fr;
  }
  .promos-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FLOATING CHAT WIDGET STYLES
   ========================================================================== */
.floating-chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s;
}
.floating-chat-bubble:hover {
  transform: scale(1.1);
  background: #b5070e;
}
.floating-chat-bubble .bubble-icon {
  width: 26px;
  height: 26px;
}
.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-gold);
  color: #070708;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 6px;
  min-width: 10px;
  text-align: center;
  border: 2px solid var(--bg-primary);
}
.floating-chat-window {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 360px;
  height: 500px;
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.floating-chat-window.hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}
.floating-chat-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-tertiary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floating-header-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.floating-header-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
.floating-header-btn i {
  width: 16px;
  height: 16px;
}
.floating-chat-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   SANDBOX DEVELOPER DASHBOARD STYLES
   ========================================================================== */
.sandbox-bubble {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #1e1e24;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--accent-red);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.25);
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}
.sandbox-bubble:hover {
  transform: scale(1.05);
  background: #282830;
}
.sandbox-unread {
  background: var(--accent-gold);
  color: #070708;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1;
}
.sandbox-window {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 380px;
  background: #09090b;
  border-top: 2px solid var(--accent-red);
  z-index: 10002;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
  font-family: 'Consolas', 'Courier New', monospace;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.sandbox-window.hidden {
  transform: translateY(100%);
}
.sandbox-header {
  background: #121216;
  border-bottom: 1px solid var(--bg-tertiary);
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sandbox-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.sandbox-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.terminal-col {
  border-right: 1px solid var(--bg-tertiary);
}
.col-title {
  background: #0f0f13;
  padding: 6px 16px;
  font-size: 11px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bg-tertiary);
  text-transform: uppercase;
  font-weight: 700;
}
.terminal-screen {
  flex: 1;
  background: #050507;
  padding: 12px;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.5;
  color: #39ff14; /* Matrix green logs */
  text-align: left;
}
.inbox-list {
  flex: 1;
  background: #0c0c0e;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.inbox-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--bg-tertiary);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.inbox-item:hover {
  background: rgba(255,255,255,0.03);
}
.inbox-item.unread {
  border-left: 3px solid var(--accent-gold);
  background: rgba(212,175,55,0.02);
}
.inbox-item-subject {
  font-weight: bold;
  color: var(--text-primary);
  font-size: 12.5px;
  margin-bottom: 2px;
}
.inbox-item-date {
  font-size: 10.5px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .sandbox-body {
    grid-template-columns: 1fr;
  }
  .sandbox-window {
    height: 480px;
  }
}


