/* ==========================================================================
   JUSTICIA Y TRANSPARENCIA: CASO JORGE SOSA - DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #090b10;
  --bg-card: rgba(18, 22, 33, 0.75);
  --bg-card-hover: rgba(28, 35, 52, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-glow: rgba(230, 175, 46, 0.15);
  
  --primary-gold: #e6af2e;
  --primary-gold-hover: #f3be42;
  --accent-crimson: #d9383a;
  --accent-crimson-hover: #ef4444;
  --accent-blue: #3b82f6;
  --accent-whatsapp: #25d366;
  --accent-facebook: #1877f2;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-heading: #ffffff;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(230, 175, 46, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(217, 56, 58, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(230, 175, 46, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.9) 0%, #090b10 100%);
  background-attachment: fixed;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.highlight-gold {
  color: var(--primary-gold);
  background: linear-gradient(135deg, #fef08a 0%, #e6af2e 60%, #b48113 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-crimson {
  color: var(--accent-crimson);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-normal);
  background: rgba(9, 11, 16, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 0 12px rgba(230, 175, 46, 0.3);
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--text-heading);
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #fbbf24 0%, #e6af2e 100%);
}

.btn-facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5bb5 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.35);
}

.btn-facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.55);
  background: linear-gradient(135deg, #2583ff 0%, #1877f2 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, #34e075 0%, #25d366 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-heading);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: brightness(0.7) contrast(1.2);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(9, 11, 16, 0.5) 0%, var(--bg-dark) 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(217, 56, 58, 0.15);
  border: 1px solid rgba(217, 56, 58, 0.3);
  color: #fca5a5;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-crimson);
  box-shadow: 0 0 10px var(--accent-crimson);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-quote-box {
  background: rgba(18, 22, 33, 0.6);
  backdrop-filter: blur(12px);
  border-left: 4px solid var(--primary-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.hero-quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.hero-quote-author {
  font-weight: 700;
  color: var(--primary-gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* HERO SIDE CARD */
.hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glass-glow) 0%, transparent 60%);
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(230, 175, 46, 0.15);
  border: 1px solid rgba(230, 175, 46, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.5rem;
}

.hero-card-title {
  font-size: 1.25rem;
  font-family: var(--font-display);
}

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

.counter-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  display: block;
}

.counter-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fb-hero-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.3);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  color: #fff;
  text-decoration: none;
  transition: var(--transition-fast);
}

.fb-hero-link:hover {
  background: rgba(24, 119, 242, 0.22);
  border-color: rgba(24, 119, 242, 0.6);
}

.fb-hero-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.fb-icon-lg {
  font-size: 1.8rem;
  color: #1877f2;
}

/* STATEMENT SECTION */
.statement-section {
  padding: 6rem 0;
  position: relative;
}

.statement-card {
  background: linear-gradient(145deg, rgba(20, 26, 40, 0.9) 0%, rgba(12, 16, 26, 0.95) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.statement-badge {
  display: inline-block;
  color: var(--primary-gold);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.statement-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.statement-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-normal);
}

.statement-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(230, 175, 46, 0.3);
}

.statement-icon {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.statement-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.statement-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* FACEBOOK CASE SECTION */
.fb-section {
  padding: 5rem 0;
  position: relative;
}

.fb-box {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(13, 27, 42, 0.6) 100%);
  border: 1px solid rgba(24, 119, 242, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(24, 119, 242, 0.2);
  color: #60a5fa;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.fb-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.fb-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.fb-card-preview {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.fb-profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.fb-profile-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--accent-facebook);
  object-fit: cover;
}

.fb-profile-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.fb-profile-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fb-preview-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-facebook);
}

/* COMMENTS & WHATSAPP SECTION */
.comments-section {
  padding: 6rem 0;
  background: rgba(12, 15, 23, 0.5);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--primary-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.comments-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

/* Comment Form */
.comment-form-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(9, 11, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 12px rgba(230, 175, 46, 0.25);
  background: rgba(15, 20, 30, 0.8);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tag-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tag-btn:hover {
  background: rgba(230, 175, 46, 0.15);
  color: var(--primary-gold);
  border-color: rgba(230, 175, 46, 0.4);
}

.form-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--accent-whatsapp);
  margin-top: 1rem;
  background: rgba(37, 211, 102, 0.1);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

/* Comments Wall Feed */
.comments-feed-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.comments-feed-container::-webkit-scrollbar {
  width: 6px;
}

.comments-feed-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.comments-feed-container::-webkit-scrollbar-thumb {
  background: rgba(230, 175, 46, 0.3);
  border-radius: 10px;
}

.comment-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-fast);
  animation: fadeIn 0.4s ease;
}

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

.comment-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.comment-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-crimson) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1rem;
}

.comment-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
}

.comment-location {
  font-size: 0.78rem;
  color: var(--primary-gold);
}

.comment-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.comment-text {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.comment-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--accent-whatsapp);
  text-decoration: none;
  font-weight: 600;
  background: rgba(37, 211, 102, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  transition: var(--transition-fast);
}

.comment-wa-btn:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #fff;
}

/* SHARE SECTION */
.share-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.share-card {
  background: radial-gradient(circle at center, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.btn-share {
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
}

.btn-share-wa {
  background: #25d366;
}

.btn-share-wa:hover {
  background: #1eb956;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-share-fb {
  background: #1877f2;
}

.btn-share-fb:hover {
  background: #1464cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}

.btn-share-x {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-share-x:hover {
  background: #111;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-copy-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-copy-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* FOOTER */
.footer {
  background: #05070a;
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 7rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-desc {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* STICKY BOTTOM ACTION BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(9, 11, 16, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(230, 175, 46, 0.3);
  padding: 0.9rem 1rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1rem;
}

.sticky-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: rgba(18, 22, 33, 0.95);
  border: 1px solid var(--primary-gold);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .comments-grid {
    grid-template-columns: 1fr;
  }
  
  .fb-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-container {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .sticky-text {
    display: none;
  }
  
  .sticky-bar-content {
    justify-content: center;
  }
}
