/* Steadily Demo Styles - Override any conflicting site styles */

#demo-root .steadily-demo-container {
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  box-sizing: border-box;
  min-height: 500px;
}

@media (min-width: 768px) {
  #demo-root .steadily-demo-container {
    padding: 3rem;
  }
}

/* Sitemap Manual Entry */
.sitemap-manual-entry {
  text-align: center;
  padding: 1rem;
}

.sitemap-manual-entry p {
  margin: 1rem 0;
  color: #666;
}

.sitemap-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 1rem auto;
}

.sitemap-input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.sitemap-input:focus {
  outline: none;
  border-color: #47b5ff;
}

.retry-button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #244364 0%, #47b5ff 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.retry-button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.retry-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.error-details {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  color: #c00;
  font-size: 0.9rem;
}

#demo-root .demo-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  min-height: 400px;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  #demo-root .demo-content {
    min-height: 500px;
    padding: 2rem 0;
  }
}

/* Special alignment for schedule slide only */
.demo-step.schedule-preview {
  align-self: flex-start;
  margin-top: 1rem;
  width: 100%;
}

/* Initial State */
#demo-root .demo-initial {
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.demo-initial h1 {
  font-size: 2.5rem;
  color: #244364;
  margin-bottom: 1rem;
}

.demo-initial p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.domain-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.domain-input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
  min-width: 0;
}

.domain-input:focus {
  border-color: #00A8E8;
}

.start-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #00A8E8 0%, #003D5B 100%);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.start-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 109, 133, 0.4);
}

/* What is Steadily Intro Slide */
#demo-root .what-is-steadily {
  text-align: center;
  animation: fadeIn 0.5s ease;
  max-width: 700px;
  margin: 0 auto;
}

.what-is-steadily h2 {
  font-size: 2.2rem;
  color: #244364;
  margin-bottom: 2rem;
}

.intro-hero {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-hero-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.intro-hero-image:hover {
  transform: translateY(-5px);
}

/* AI Agent Hero Image for Cost Comparison */
.ai-agent-hero {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-agent-image {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-agent-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.robot-avatar {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #244364 0%, #47b5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive adjustments */
/* Status Messages */
.status-messages {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #dee2e6;
}

.status-message {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
  font-family: 'Inter', monospace;
}

.status-message:last-child {
  border-bottom: none;
}

.status-details {
  margin-top: 1rem;
}

.status-details summary {
  cursor: pointer;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.status-details summary:hover {
  color: #495057;
}

@media (max-width: 768px) {
  .ai-agent-image {
    max-width: 280px;
    border-radius: 12px;
  }
  
  .robot-avatar {
    font-size: 2.5rem;
  }
  
  .status-messages {
    font-size: 0.8rem;
    padding: 0.75rem;
  }
  
  .status-message {
    padding: 0.4rem 0;
  }
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.intro-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.intro-point:hover {
  transform: translateY(-2px);
}

.intro-icon {
  font-size: 2rem;
  min-width: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #244364 0%, #47b5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text h3 {
  font-size: 1.3rem;
  color: #244364;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.intro-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.demo-domain-display {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  padding: 1rem;
  background: #f0f8ff;
  border-radius: 8px;
  border: 1px solid #e6f3ff;
}

.demo-domain-display strong {
  color: #244364;
  font-weight: 600;
}

@media (max-width: 768px) {
  .what-is-steadily h2 {
    font-size: 1.8rem;
  }
  
  .intro-hero-image {
    max-width: 300px;
    border-radius: 12px;
  }
  
  .intro-point {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .intro-icon {
    align-self: center;
  }
}

/* Demo Steps */
#demo-root .demo-step {
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;
}

.demo-step h2 {
  font-size: 1.8rem;
  color: #244364;
  margin-bottom: 1rem;
}

.step-explainer {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.steadily-loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.steadily-loader img {
  width: 80px;
  height: 80px;
  animation: steadily-pulse 1.5s ease-in-out infinite;
  margin-bottom: 1rem;
}

.steadily-loader p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

@keyframes steadily-pulse {
  0% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.6; transform: scale(0.95); }
}

.loading-spinner {
  padding: 2rem;
  font-size: 1.1rem;
  color: #666;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Sitemap Discovery */
.success-message {
  font-size: 1.2rem;
  color: #256d85;
  padding: 1.5rem;
  background: rgba(37, 109, 133, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(37, 109, 133, 0.3);
  animation: slideUpFade 0.5s ease;
}

.error-message {
  font-size: 1.2rem;
  color: #e9072b;
  padding: 1.5rem;
  background: rgba(233, 7, 43, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(233, 7, 43, 0.2);
}

/* Frequency Recommendation - New Clean Design */
.posting-strategy-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafb 0%, rgba(0, 61, 91, 0.02) 100%);
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 61, 91, 0.12);
  border: 1px solid rgba(0, 168, 232, 0.1);
}

.hero-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.frequency-number {
  font-size: 4rem;
  font-weight: 800;
  color: #244364;
  line-height: 1;
  letter-spacing: -0.02em;
}

.frequency-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.05em;
}

.content-breakdown {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  min-width: 120px;
}

.breakdown-item.promotional {
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.15) 0%, rgba(0, 168, 232, 0.25) 100%);
  border: 1px solid rgba(0, 168, 232, 0.3);
}

.breakdown-item.insights {
  background: linear-gradient(135deg, rgba(0, 61, 91, 0.08) 0%, rgba(0, 61, 91, 0.15) 100%);
  border: 1px solid rgba(0, 61, 91, 0.2);
}

.breakdown-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.breakdown-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  text-align: center;
}

.breakdown-separator {
  font-size: 1.5rem;
  font-weight: 600;
  color: #64748b;
}

.value-statement {
  font-size: 1.1rem;
  color: #475569;
  text-align: center;
  line-height: 1.5;
  max-width: 400px;
}

.cycle-highlight {
  color: #00A8E8;
  font-weight: 700;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .frequency-number {
    font-size: 3rem;
  }
  
  .content-breakdown {
    gap: 1rem;
  }
  
  .breakdown-item {
    min-width: 100px;
    padding: 0.75rem 1rem;
  }
  
  .breakdown-number {
    font-size: 1.5rem;
  }
}

/* Old Frequency Recommendation (keeping for fallback) */
.publishing-strategy-card {
  background: #f8f9fa;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideUpFade 0.5s ease;
  border: 2px solid #e0e0e0;
  overflow: hidden;
}

.strategy-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: white;
  border-bottom: 1px solid #e0e0e0;
}

.strategy-icon {
  font-size: 1.2rem;
}

.strategy-title {
  font-weight: 600;
  color: #003D5B;
  font-size: 1.1rem;
}

.articles-badge {
  background: rgba(37, 109, 133, 0.15);
  color: #256d85;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: auto;
}

.total-posts-badge {
  background: #256d85;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.strategy-content {
  padding: 2rem;
}

.recommendation-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lightbulb-icon {
  font-size: 1.1rem;
}

.section-title {
  font-weight: 600;
  color: #003D5B;
  font-size: 1rem;
}

.strategy-details {
  margin-bottom: 1.5rem;
}

.strategy-item {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.strategy-item strong {
  color: #666;
  font-weight: 600;
}

.strategy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(37, 109, 133, 0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #256d85;
  margin-bottom: 1rem;
}

.note-icon {
  font-size: 1rem;
  margin-top: 0.1rem;
}

.control-note {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #666;
}

.frequency-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideUpFade 0.5s ease;
}

.frequency-number {
  font-size: 4rem;
  font-weight: bold;
  color: #256d85;
  margin-bottom: 0.5rem;
}

.frequency-label {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.frequency-reason {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Article Selection */
.article-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  animation: slideUpFade 0.5s ease;
}

.article-card h3 {
  font-size: 1.4rem;
  color: #244364;
  margin-bottom: 1rem;
}

.article-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.publish-date {
  color: #999;
  font-size: 0.9rem;
}

.evergreen-badge {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Voice Profile */
.voice-profile-container {
  max-width: 600px;
  margin: 0 auto;
  max-height: calc(100vh - 300px);
  display: flex;
  flex-direction: column;
}

.voice-profile-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  animation: slideUpFade 0.5s ease;
  overflow-y: auto;
  flex: 1;
}

.profile-section {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
}

.profile-section:last-child {
  border-bottom: none;
}

.profile-label {
  font-weight: 600;
  color: #003D5B;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.profile-content {
  color: #333;
  line-height: 1.4;
  font-size: 0.9rem;
}

.profile-content.examples {
  font-style: italic;
  color: #666;
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  max-height: 100px;
  overflow-y: auto;
}

.profile-item {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.profile-item strong {
  color: #256d85;
  margin-right: 0.5rem;
}

.voice-characteristics {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.characteristic {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.characteristic strong {
  color: #256d85;
  display: block;
  margin-bottom: 0.5rem;
}

.fade-in-1 { animation-delay: 0.2s; }
.fade-in-2 { animation-delay: 0.6s; }
.fade-in-3 { animation-delay: 1s; }

/* Promo Post - matching main app styling */
.draft-content-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  animation: slideUpFade 0.5s ease;
}

.tweet-thread {
  margin-bottom: 1rem;
}

.tweet-item {
  margin-bottom: 0.75rem;
}

.tweet-text {
  color: #333;
  line-height: 1.4;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.tweet-meta {
  font-size: 0.75rem;
  color: var(--medium-gray);
  margin-top: 0.25rem;
}

.thread-section {
  margin-top: 0.5rem;
}

.thread-connector {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
  padding-left: 20px;
}

.thread-line {
  width: 2px;
  height: 20px;
  background: #e1e8ed;
  margin-right: 10px;
}

.thread-icon {
  font-size: 0.8rem;
  color: #666;
}

.social-post-mockup {
  background: white;
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.reply-tweet {
  margin-left: 2rem;
  border-left: 2px solid #e1e8ed;
  padding-left: 1rem;
}

.post-header {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

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

.profile-avatar {
  width: 40px;
  height: 40px;
  background: var(--brand-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.profile-details {
  display: flex;
  flex-direction: column;
}

.profile-name {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.post-time {
  color: #666;
  font-size: 0.85rem;
}

.post-content {
  padding: 1rem;
}

.draft-media-section {
  margin-top: 1rem;
}

.post-media {
  text-align: center;
}

.featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.tweet-card.thread-reply {
  margin-left: 2rem;
  border-top: 2px solid #e1e8ed;
  border-radius: 0 0 16px 16px;
  margin-top: -0.5rem;
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 0.5rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00A8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.tweet-info {
  display: flex;
  flex-direction: column;
}

.username {
  font-weight: 600;
  color: #0f1419;
  font-size: 0.95rem;
}

.handle {
  color: #536471;
  font-size: 0.9rem;
}

.tweet-content {
  padding: 0 1rem;
}

.tweet-content p {
  margin: 0 0 1rem 0;
  color: #0f1419;
  font-size: 1rem;
  line-height: 1.5;
}

.tweet-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
  margin: 1rem 0;
  border-radius: 12px;
}

.social-media-post {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  animation: slideUpFade 0.5s ease;
  max-width: 500px;
  margin: 0 auto;
}

.post-image {
  width: calc(100% - 1rem);
  margin: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: cover;
  display: block;
}

.promo-post-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  animation: slideUpFade 0.5s ease;
}

.social-post-card {
  background: white;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  animation: slideUpFade 0.5s ease;
  max-width: 500px;
  margin: 0 auto;
  max-height: calc(100vh - 400px);
  overflow: hidden;
}

.post-content {
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  margin-bottom: 0.5rem;
  padding: 0.75rem;
}

.post-hashtags {
  color: #256d85;
  font-size: 0.95rem;
  padding: 0 1.5rem 1.5rem;
}

/* Content slides - force containment */
.demo-step.promo-post,
.demo-step.favorite-insight {
  overflow: hidden;
  max-height: calc(100vh - 200px);
}

/* Allow quote cards and memes to show full size */
.demo-step.quote-card,
.demo-step.meme-generation {
  overflow: visible;
}

/* Visual content sizing */
.demo-step img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Specific fixes for content overflow */
.demo-step.promo-post {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

/* Quote cards and memes */
.visual-content-container {
  max-width: 500px;
  max-height: calc(100vh - 350px);
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twitter-thread-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: calc(100vh - 400px);
  overflow-y: auto;
  padding: 0 0.5rem;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.twitter-post-preview {
  background: white;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  animation: slideUpFade 0.5s ease;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
}

.profile-avatar {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.avatar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1d9bf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.profile-name {
  font-weight: 700;
  color: #0f1419;
  font-size: 15px;
}

.profile-handle {
  color: #536471;
  font-size: 15px;
}

.post-time {
  color: #536471;
  font-size: 15px;
}

.twitter-post-preview .post-content {
  font-size: 14px;
  line-height: 1.4;
  color: #0f1419;
  margin-bottom: 8px;
  padding: 0;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.twitter-post-preview .post-hashtags {
  color: #1d9bf0;
  font-size: 15px;
  margin-bottom: 12px;
  padding: 0 0.5rem;
  text-align: left;
}

.post-stats {
  color: #536471;
  font-size: 13px;
  margin-bottom: 12px;
  padding-top: 8px;
  border-top: 1px solid #eff3f4;
}

.post-actions {
  display: flex;
  justify-content: space-between;
  padding: 12px 0.5rem 8px 0.5rem;
  border-top: 1px solid #eff3f4;
  margin-top: 16px;
  clear: both;
  background: white;
  position: relative;
  z-index: 10;
}

.thread-indicator {
  padding: 8px 0.5rem;
  margin-top: 8px;
  background: white;
  clear: both;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #536471;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 20px;
  transition: background-color 0.2s;
}

.action-btn:hover {
  background-color: rgba(15, 20, 25, 0.1);
}

.action-icon {
  font-size: 16px;
}

.action-count {
  font-size: 13px;
}

.tweet2-delayed {
  animation: delayedSlideUp 0.5s ease forwards;
  animation-delay: 1.5s;
  opacity: 0;
  transform: translateY(20px);
}

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

.generation-progress {
  text-align: center;
  padding: 2rem;
}

.generation-progress .steadily-loader {
  padding: 1rem;
  margin-bottom: 2rem;
}

.progress-steps {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.progress-steps p {
  margin: 0.8rem 0;
  font-size: 0.95rem;
  color: #666;
  transition: opacity 0.3s ease;
}

.step-completed {
  color: #256d85 !important;
  font-weight: 500;
}

.step-pending {
  opacity: 0.5;
}

/* Favorite Insight */
.insight-card.featured {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 4px solid #00A8E8;
  animation: slideUpFade 0.5s ease;
}

.insight-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  text-align: left;
  animation: slideUpFade 0.5s ease;
}

.insight-text {
  font-size: 1.3rem;
  color: #244364;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.insight-text p {
  margin: 0;
}

.insight-value {
  margin-top: 1rem;
}

.value-label {
  color: #256d85;
  font-weight: 500;
}

.insight-indicator {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 168, 232, 0.1);
  border-radius: 20px;
  color: #256d85;
  font-size: 0.9rem;
  font-weight: 500;
}

.tweet-indicator {
  text-align: center;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 168, 232, 0.1);
  border-radius: 20px;
  color: #256d85;
  font-size: 0.9rem;
  font-weight: 500;
}

.insight-explanation {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

.insight-highlight {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 4px solid #00A8E8;
  animation: slideUpFade 0.5s ease;
}

/* Rapid Insights */
.insights-carousel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.insight-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: rapidInsight 0.8s ease forwards;
}

@keyframes rapidInsight {
  0% { 
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  50% { 
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% { 
    opacity: 0;
    transform: translate(-50%, -60%);
  }
}

/* Quote Card */
.quote-card-display {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(100vh - 400px);
  overflow: hidden;
}

.quote-card-display blockquote {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.quote-card-display cite {
  font-size: 1rem;
  opacity: 0.9;
}

.quote-card-image {
  max-width: 100%;
  max-height: calc(100vh - 400px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.quote-card-preview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  animation: slideUpFade 0.5s ease;
}

.quote-card-preview blockquote {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.quote-card-preview cite {
  font-size: 1rem;
  opacity: 0.9;
}

/* Meme Generation */
.meme-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: slideUpFade 0.5s ease;
}

.meme-image {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.meme-caption {
  font-size: 1.1rem;
  color: #666;
  margin-top: 1rem;
}

.meme-preview {
  animation: slideUpFade 0.5s ease;
}

.meme-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

/* Complete State */
.demo-complete {
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.feature-highlights {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.feature {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.primary-cta {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #00A8E8 0%, #0099CC 100%);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
}

.secondary-cta {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: white;
  color: #256d85;
  border: 2px solid #00A8E8;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.secondary-cta:hover {
  background: #00A8E8;
  color: white;
}

/* Demo Controls */
.demo-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 1rem;
}

.play-pause-btn {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.play-pause-btn:hover {
  border-color: #00A8E8;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00A8E8 0%, #0099CC 100%);
  transition: width 0.3s ease;
}

.skip-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.skip-btn:hover {
  color: #256d85;
}

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

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

.animate-in {
  animation: slideUpFade 0.5s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .steadily-demo-container {
    padding: 0.5rem;
  }
  
  .demo-step {
    padding: 0 0.5rem;
  }
  
  .demo-initial h1 {
    font-size: 2rem;
  }
  
  .domain-form {
    flex-direction: column;
    padding: 0 1rem;
  }
  
  .domain-input,
  .start-button {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  
  .domain-input {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .feature-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .frequency-number {
    font-size: 3rem;
  }
  
  .twitter-thread-preview {
    max-width: 100%;
    padding: 0 0.25rem;
  }
  
  .twitter-post-preview {
    padding: 0.5rem;
  }
  
  .twitter-post-preview .post-content {
    font-size: 13px;
  }
}

/* Draft content card styling - matching main app and screenshot */
.draft-media-section {
  padding: 0;
  margin: 0;
}

.draft-media-section img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
}

.draft-content-card .post-content {
  padding: 1.5rem;
}

.draft-content-card .tweet-text {
  color: #333;
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
}

.tweet2 {
  color: #666;
  font-size: 0.95rem;
}

.draft-content-card .post-hashtags {
  color: #256d85;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 500;
  padding: 0;
}

/* Content Strategy Slide */
.strategy-explanation {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  animation: slideUpFade 0.5s ease;
  max-width: 800px;
  margin: 0 auto;
}

.strategy-intro {
  margin-bottom: 2rem;
  text-align: center;
}

.strategy-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
}

.strategy-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.strategy-type {
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

.strategy-type.promotional {
  border-color: #00A8E8;
  background: rgba(0, 168, 232, 0.05);
}

.strategy-type.insights {
  border-color: #256d85;
  background: rgba(37, 109, 133, 0.05);
}

.type-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.strategy-type h3 {
  color: #003D5B;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.strategy-type p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.strategy-type ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style: none;
}

.strategy-type li {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.strategy-type li::before {
  content: '✓';
  color: #256d85;
  font-weight: bold;
  position: absolute;
  left: -1.2rem;
}

.strategy-balance {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.balance-visual {
  margin-bottom: 1rem;
}

.balance-bar {
  display: flex;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.insights-portion {
  background: linear-gradient(135deg, #256d85 0%, #00A8E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.promotional-portion {
  background: linear-gradient(135deg, #00A8E8 0%, #0099CC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.balance-explanation {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Mobile responsive for strategy */
@media (max-width: 768px) {
  .strategy-types {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .balance-bar {
    height: 50px;
  }
  
  .insights-portion,
  .promotional-portion {
    font-size: 0.8rem;
  }
}

/* Smart Scheduling Design */
.smart-schedule-container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: calc(100vh - 200px);
}

.schedule-intelligence-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.08) 0%, rgba(0, 61, 91, 0.05) 100%);
  border-radius: 6px;
  border: 1px solid rgba(0, 168, 232, 0.2);
  font-size: 0.75rem;
  color: #475569;
  justify-content: center;
  text-align: center;
}

.intelligence-badge {
  font-size: 0.9rem;
  padding: 0.15rem 0.3rem;
  background: rgba(0, 168, 232, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(0, 168, 232, 0.2);
}

.schedule-week-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  animation: fadeInUp 0.6s ease;
}

.smart-schedule-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: white;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 61, 91, 0.04);
  opacity: 0;
  animation: fadeInItem 0.5s ease forwards;
  position: relative;
  overflow: hidden;
  min-height: 40px;
}

.smart-schedule-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #00A8E8 0%, #244364 100%);
}

.smart-schedule-item.promotional::before {
  background: linear-gradient(135deg, #00A8E8 0%, #0891b2 100%);
}

.smart-schedule-item.insight::before {
  background: linear-gradient(135deg, #244364 0%, #334155 100%);
}

.schedule-day-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schedule-day-info .day-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.75rem;
}

.schedule-time-highlight {
  font-size: 0.95rem;
  font-weight: 700;
  color: #00A8E8;
  letter-spacing: -0.01em;
}

.post-type-indicator {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  background: rgba(0, 61, 91, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(0, 61, 91, 0.1);
}

.type-label-compact {
  font-size: 0.7rem;
  font-weight: 500;
  color: #475569;
}

.natural-timing-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  color: #059669;
  border-radius: 50px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-weight: 600;
  white-space: nowrap;
}

.scheduling-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 61, 91, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(0, 168, 232, 0.1);
  font-size: 0.85rem;
  color: #475569;
}

.benefit-icon {
  font-size: 1rem;
}

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

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

@media (max-width: 768px) {
  .smart-schedule-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }
  
  .scheduling-benefits {
    grid-template-columns: 1fr;
  }
  
  .schedule-intelligence-note {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Old Schedule Preview (keeping for fallback) */
.schedule-container {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideUpFade 0.5s ease;
  max-width: 700px;
  margin: 0 auto;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}

.schedule-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003D5B;
}

.schedule-count {
  background: #00A8E8;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.schedule-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  background: white;
  animation: slideUpFade 0.5s ease;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.schedule-item.promotional {
  border-color: #00A8E8;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(0, 168, 232, 0.02) 100%);
}

.schedule-item.insight {
  border-color: #256d85;
  background: linear-gradient(135deg, rgba(37, 109, 133, 0.05) 0%, rgba(37, 109, 133, 0.02) 100%);
}

.schedule-date {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.day-name {
  font-weight: 600;
  color: #003D5B;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.date-display {
  color: #666;
  font-size: 0.9rem;
}

.schedule-time {
  text-align: center;
  font-weight: 600;
  color: #256d85;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.schedule-type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.schedule-item .type-icon {
  font-size: 1.3rem;
}

.schedule-item .type-label {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

/* Mobile responsive for schedule */
@media (max-width: 768px) {
  .schedule-list {
    grid-template-columns: 1fr;
  }
  
  .schedule-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* No content message */
.no-content-message {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #e0e0e0;
}

.no-content-message p {
  color: #666;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}

/* Posting Options */
.posting-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin: 1.5rem 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.option-section {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
  transition: border-color 0.2s ease;
}

.option-section:hover {
  border-color: #256d85;
}

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

.option-header h3 {
  color: #244364;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.option-label {
  background: #f0f0f0;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.option-label.recommended {
  background: linear-gradient(135deg, #256d85 0%, #244364 100%);
  color: white;
}

.option-section p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.platform-support {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  text-align: center;
}

.platform-support h4 {
  color: #244364;
  margin: 0 0 1rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.platforms {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.platform {
  color: #256d85;
  font-weight: 500;
  font-size: 1rem;
}

/* Approval Process */
.approval-content {
  max-width: 700px;
  margin: 0 auto;
}

.approval-intro {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.approval-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .approval-actions {
    grid-template-columns: 1fr;
  }
}

.action-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: border-color 0.2s ease;
}

.action-item:hover {
  border-color: #256d85;
}

.action-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-icon.approve {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.action-icon.edit {
  background: linear-gradient(135deg, #256d85 0%, #244364 100%);
}

.action-icon.reject {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.action-icon.skip {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.action-text h4 {
  color: #244364;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.action-text p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Clean meme display */
.meme-display {
  display: flex;
  justify-content: center;
  animation: slideUpFade 0.5s ease;
}

.meme-image-clean {
  max-width: 500px;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* What is Steadily */
.centered-message {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  min-height: 400px;
}

.headline-text {
  font-size: 2.5rem;
  line-height: 1.4;
  color: #244364;
  font-weight: 700;
  max-width: 800px;
  margin: 0;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .headline-text {
    font-size: 1.8rem;
  }
}
.steadily-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.intro-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.feature-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
}

.feature-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #256d85 0%, #244364 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item span {
  color: #244364;
  font-weight: 500;
  line-height: 1.4;
}

.demo-intro-text {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.demo-intro-text p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.demo-transition {
  font-size: 1.1rem;
  color: #256d85;
  font-weight: 600;
  margin: 0;
}

/* Tour Intro Slide */
.demo-tour-intro .tour-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.tour-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tour-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.tour-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #256d85;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.tour-step span {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.demo-transition {
  font-size: 1.1rem;
  color: #256d85;
  font-weight: 600;
  margin: 2rem 0 0 0;
}

@media (max-width: 768px) {
  .feature-highlights {
    grid-template-columns: 1fr;
  }
  
  .tour-preview {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tour-step {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

/* Beta Invitation Slide */
.demo-complete {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.beta-invitation {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 1.5rem 0 2rem 0;
}

.promo-code-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.promo-text {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 0.5rem 0;
}

.promo-code {
  font-size: 1.5rem;
  font-weight: 700;
  color: #256d85;
  letter-spacing: 2px;
  margin: 0.5rem 0;
}

.promo-benefit {
  font-size: 0.9rem;
  color: #666;
  margin: 0.5rem 0 0 0;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.primary-cta {
  background: linear-gradient(135deg, #256d85 0%, #003D5B 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
}

.secondary-cta {
  background: transparent;
  color: #256d85;
  border: 2px solid #256d85;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}

/* Demo Disclaimer */
.demo-disclaimer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e0e0e0;
}

.demo-disclaimer p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  font-style: italic;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .primary-cta, .secondary-cta {
    width: 100%;
    max-width: 250px;
  }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #062A3D 0%, #244364 100%);
    color: #ffffff;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(6, 40, 61, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
    max-width: 120px;
}

.footer-logo-text {
    display: inline-block;
}

/* Hide footer logo image if it fails to load - fallback to text */
.footer-logo-image:not([src]), 
.footer-logo-image[src=""] {
    display: none;
}

/* Hide text by default when logo image is present */
.footer-logo-image + .footer-logo-text {
    display: none;
}

/* Show text when logo is explicitly hidden or fails */
.footer-logo-image.logo-hidden + .footer-logo-text,
.footer-logo-image.logo-error + .footer-logo-text {
    display: inline-block !important;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    text-align: right;
}

/* Footer responsive design */
@media (max-width: 768px) {
    .footer-container {
        padding: 1.5rem 1rem;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        gap: 1.5rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

/* Ensure footer stays at bottom for demo page */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Promo Slide Styles */
.promo-slide {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.promo-slide h2 {
  font-size: 2rem;
  color: #244364;
  margin-bottom: 1rem;
  font-weight: 700;
}

.slide-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

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

.promo-slide .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(71, 181, 255, 0.08) 0%, rgba(36, 67, 100, 0.05) 100%);
  border-radius: 12px;
  border: 2px solid rgba(71, 181, 255, 0.15);
  transition: all 0.3s ease;
}

.promo-slide .feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(71, 181, 255, 0.15);
}

.promo-slide .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.promo-slide .feature-text {
  color: #244364;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
}

.generation-note {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
}

.generation-note span {
  color: #059669;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .promo-slide h2 {
    font-size: 1.6rem;
  }
  
  .slide-subtitle {
    font-size: 1.1rem;
  }
}

/* Prominent disclaimer styling */
.demo-disclaimer.prominent {
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  text-align: center;
}

.demo-disclaimer.prominent p {
  color: #856404;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

/* Voice Settings Styles */
.voice-settings {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.voice-settings h2 {
  font-size: 1.8rem;
  color: #244364;
  margin-bottom: 1rem;
  font-weight: 700;
}

.settings-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

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

.setting-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(36, 67, 100, 0.05) 0%, rgba(71, 181, 255, 0.03) 100%);
  border: 2px solid rgba(36, 67, 100, 0.1);
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.setting-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(36, 67, 100, 0.1);
  border-color: rgba(71, 181, 255, 0.2);
}

.setting-icon {
  font-size: 2rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.setting-details h4 {
  color: #244364;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.setting-details p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.settings-preview {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.preview-panel {
  background: linear-gradient(135deg, rgba(36, 67, 100, 0.05) 0%, rgba(71, 181, 255, 0.03) 100%);
  border: 2px solid rgba(36, 67, 100, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  max-width: 500px;
  width: 100%;
  text-align: left;
}

.preview-panel h4 {
  color: #244364;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.controls-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.controls-list li {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  border-left: 3px solid #47b5ff;
}

.analysis-note {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #059669;
}

.loading-indicator {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .settings-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .voice-settings h2 {
    font-size: 1.5rem;
  }
  
  .settings-subtitle {
    font-size: 1rem;
  }
}

/* Auto-posting image styles */
.auto-posting-visual {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.auto-posting-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(36, 67, 100, 0.15);
  transition: transform 0.3s ease;
}

.auto-posting-image:hover {
  transform: scale(1.02);
}

.auto-posting-image.compact {
  width: auto;
  max-width: 665px;
  max-height: 532px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(36, 67, 100, 0.15);
  display: block;
}

/* Settings grid layout */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.setting-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(71, 181, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(71, 181, 255, 0.1);
}

.setting-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.setting-details h4 {
  margin: 0 0 0.5rem 0;
  color: #244364;
  font-size: 1.1rem;
  font-weight: 600;
}

.setting-details p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Branded spinner styles */
.steadily-loader img {
  width: 40px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  animation: pulse 2s ease-in-out infinite;
}

.loading-indicator {
  font-size: 1.2rem;
  animation: pulse 1.5s ease-in-out infinite;
  margin-right: 0.5rem;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Clean loading state - no ugly boxes */
.clean-loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  gap: 1rem;
}

.loading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: pulse 2s ease-in-out infinite;
}

.loading-text {
  color: #256d85;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/* Draft review workflow styles */
.draft-review .draft-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}

.draft-workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.draft-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(71, 181, 255, 0.05) 0%, rgba(36, 67, 100, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(71, 181, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.draft-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(36, 67, 100, 0.15);
}

.draft-step.highlighted {
  background: linear-gradient(135deg, rgba(37, 109, 133, 0.1) 0%, rgba(36, 67, 100, 0.1) 100%);
  border-color: #256d85;
  box-shadow: 0 4px 15px rgba(37, 109, 133, 0.2);
}

.draft-step .step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.draft-step h4 {
  color: #244364;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.draft-step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.approval-note {
  background: linear-gradient(135deg, rgba(37, 109, 133, 0.05) 0%, rgba(162, 229, 228, 0.05) 100%);
  border: 1px solid rgba(37, 109, 133, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.approval-note p {
  margin: 0;
  color: #256d85;
  font-weight: 500;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .auto-posting-image {
    max-width: 300px;
  }
  
  .settings-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .setting-item {
    padding: 1rem;
  }
  
  .draft-workflow {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
  
  .draft-step {
    padding: 1.5rem 1rem;
  }
  
  .draft-step .step-icon {
    font-size: 2rem;
  }
}
