/* WhatDidISign Website Styles */

:root {
  --primary-color: #ff6b35;
  --primary-hover: #e55a2b;
  --background: #000000;
  --surface: #111111;
  --surface-light: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #666666;
  --border-color: #333333;
  --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  --shadow-hover: 0 8px 30px rgba(255, 107, 53, 0.2);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.header:hover {
  background: rgba(0, 0, 0, 0.98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 32px;
  height: 32px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.install-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.install-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.star-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.star-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-1px);
}

.star-btn svg {
  transition: fill 0.2s ease;
}

.star-btn:hover svg {
  fill: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.demo-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.demo-button:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.hero-visual {
  position: relative;
}

.extension-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.demo-image,
.demo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.demo-video {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.dot-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.dot-2 {
  top: 60%;
  right: 25%;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

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

/* Demo Section */
.demo {
  padding: 100px 0;
  background: var(--background);
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* Custom Video Player Styles */
.custom-video-player {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-video-player:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.main-demo-video,
.install-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.custom-video-player.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.custom-video-player:hover .video-overlay {
  opacity: 1;
  pointer-events: all;
}

.play-pause-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  pointer-events: all;
}

.install-player .play-pause-btn {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
}

.play-pause-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

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

.video-info {
  text-align: center;
  pointer-events: none;
}

.video-info h3 {
  margin: 0 0 5px 0;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-info p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.install-player .video-info {
  display: none;
}

/* Hide video info when playing */
.custom-video-player.playing .video-info {
  opacity: 0;
}

/* Demo video container styles */
.demo-video {
  position: relative;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  min-height: 300px;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button svg {
  color: white;
  margin-left: 4px;
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.demo-feature:hover {
  border-color: var(--primary-color);
  transform: translateX(8px);
}

.demo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  flex-shrink: 0;
}

.orange-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.demo-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.demo-text p {
  color: var(--text-secondary);
  line-height: 1.5;
}

.demo-screenshots {
  margin-top: 80px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.screenshot-item {
  text-align: center;
}

.screenshot-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.screenshot-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.screenshot-item p {
  color: var(--text-secondary);
}

/* Enhanced Installation Section */
.install {
  padding: 100px 0;
  background: var(--surface);
}

.install-header {
  text-align: center;
  margin-bottom: 60px;
}

.install-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

.install-description {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.install-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--surface-light);
  padding: 8px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tab-button.active {
  background: var(--primary-color);
  color: white;
}

.tab-button:hover:not(.active) {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Quick Install */
.quick-install {
  max-width: 1000px;
  margin: 0 auto;
}

.install-steps-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.install-step-card {
  background: var(--background);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.install-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--accent-gradient);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: white;
}

.install-step-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.install-step-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.code-snippet {
  background: var(--surface-light);
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.code-snippet code {
  color: var(--primary-color);
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

.help-btn {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.help-btn:hover {
  background: var(--primary-color);
  color: white;
}

.install-cta-section {
  text-align: center;
  padding: 40px;
  background: var(--background);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.install-cta-section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.install-demo-video {
  margin-bottom: 40px;
  text-align: center;
}

.install-demo-video h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.install-video {
  width: auto;
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  display: block;
  margin: 0 auto;
}

.install-player {
  display: inline-block;
  width: auto;
  max-width: 600px;
  margin: 0 auto;
}

.install-player .play-pause-btn {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
}

.install-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-gradient);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.install-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Detailed Install */
.detailed-install {
  max-width: 800px;
  margin: 0 auto;
}

.step-by-step {
  margin-bottom: 60px;
}

.detailed-step {
  background: var(--background);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  margin-bottom: 32px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.detailed-step:hover {
  border-color: var(--primary-color);
}

.detailed-step.success {
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border-color);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
}

.detailed-step.success .step-number {
  background: #10b981;
}

.step-header h3 {
  font-size: 24px;
  font-weight: 600;
}

.step-content {
  padding: 32px;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.download-button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.step-note {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 16px;
  border-radius: 8px;
  color: var(--text-secondary);
}

.step-note strong {
  color: var(--primary-color);
}

.step-note code {
  background: rgba(255, 107, 53, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: var(--primary-color);
}

.os-instructions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.os-tab {
  background: var(--surface);
  padding: 12px 16px;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
}

.chrome-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.method {
  background: var(--surface);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.url-code {
  background: var(--surface-light);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.developer-mode-visual {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.toggle-demo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--border-color);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary-color);
}

.toggle-switch::after {
  content: '';
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(20px);
}

.load-instructions {
  background: var(--surface);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.load-instructions ol {
  margin-left: 20px;
}

.load-instructions li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.success-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.check-item svg {
  color: #10b981;
}

/* Troubleshooting */
.troubleshooting {
  background: var(--background);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.troubleshooting h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: var(--primary-color);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-light);
  border: none;
  padding: 16px 20px;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 107, 53, 0.1);
}

.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 16px 20px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--surface-light);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.feature-icon {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
}

.steps {
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Installation Section */
.install {
  padding: 100px 0;
  background: var(--surface);
}

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

.install-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

.install-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.install-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.install-step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
}

.install-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.install-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.install-note {
  color: var(--text-muted);
  font-size: 14px;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.footer-copyright {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .star-btn,
  .install-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .demo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .demo-features {
    order: -1;
  }
  
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
  
  .install-steps-visual {
    grid-template-columns: 1fr;
  }
  
  .install-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  .tab-button {
    justify-content: center;
  }
  
  .step-header {
    padding: 20px;
  }
  
  .step-content {
    padding: 20px;
  }
  
  .os-instructions {
    gap: 8px;
  }
  
  .chrome-methods {
    gap: 8px;
  }
  
  .troubleshooting {
    padding: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .privacy-content {
    padding: 0 20px;
  }
  
  .dont-collect-list {
    grid-template-columns: 1fr;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .security-features {
    gap: 20px;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
button:focus,
.install-btn:focus,
.cta-button:focus,
.nav-link:focus,
.tab-button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.floating-dot {
  animation: float 3s ease-in-out infinite;
}

/* Enhanced hover effects */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.install-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Smooth transitions for all interactive elements */
.feature-card,
.install-step-card,
.step,
.faq-item,
.permission-item,
.service-card,
.right-item,
.security-item {
  transition: all 0.3s ease;
}

/* Enhanced button hover states */
.install-btn:hover,
.cta-button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Print styles */
@media print {
  .header,
  .footer,
  .install-btn,
  .cta-button {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .privacy-page {
    padding-top: 0;
  }
}

/* Privacy Page Styles */
.privacy-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.privacy-subtitle {
  font-size: 18px;
  color: #888888;
  margin-bottom: 40px;
}

.privacy-tldr {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  text-align: left;
}

.tldr-icon {
  color: #ff6b35;
  flex-shrink: 0;
  margin-top: 4px;
}

.tldr-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.tldr-content p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 60px;
}

.privacy-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  border-bottom: 2px solid #ff6b35;
  padding-bottom: 12px;
}

.privacy-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.privacy-section p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy-section ul {
  color: #cccccc;
  line-height: 1.7;
  margin: 16px 0;
  padding-left: 20px;
}

.privacy-section li {
  margin-bottom: 8px;
}

/* Don't Collect List */
.dont-collect-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.dont-collect-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.dont-collect-item svg {
  color: #ff6b35;
  flex-shrink: 0;
  margin-top: 4px;
}

.dont-collect-item h4 {
  margin-bottom: 4px;
}

.dont-collect-item p {
  margin: 0;
  font-size: 14px;
}

/* Technical Explanation */
.technical-explanation {
  margin-top: 32px;
}

.tech-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.step-number {
  background: #ff6b35;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 8px;
}

.step-content p {
  margin: 0;
  font-size: 15px;
}

/* Third-Party Services */
.third-party-info {
  margin-top: 32px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.service-header h4 {
  margin: 0;
  font-size: 20px;
}

.service-tag {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details p {
  margin-bottom: 12px;
  font-size: 15px;
}

.service-details a {
  color: #ff6b35;
  text-decoration: none;
}

.service-details a:hover {
  text-decoration: underline;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.right-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.right-item h4 {
  color: #ff6b35;
  margin-bottom: 12px;
}

.right-item p {
  margin: 0;
  font-size: 14px;
}

/* Security Features */
.security-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.security-item svg {
  color: #ff6b35;
  flex-shrink: 0;
  margin-top: 4px;
}

.security-item h4 {
  margin-bottom: 4px;
}

.security-item p {
  margin: 0;
  font-size: 14px;
}

/* Permissions List */
.permissions-list {
  margin-top: 32px;
}

.permission-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.permission-item code {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

.permission-item p {
  margin: 0;
  font-size: 14px;
  color: #cccccc;
}

/* Contact Options */
.contact-options {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff6b35;
  color: #000000;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  width: fit-content;
}

.contact-link:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.contact-note {
  font-size: 14px;
  color: #888888;
  margin: 0;
}
