/* Live Stream Tally App Styles - Modern Dark Theme */
:root {
  --primary: #ff3b30;
  --secondary: #0a84ff;
  --dark-bg: #121212;
  --card-bg: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --border-color: #333333;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.dark-theme {
  background-color: var(--dark-bg);
  color: var(--text-primary);
}

.app-page {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: 100vh;
  background-color: var(--dark-bg);
}

.app-container {
  max-width: 1000px;
  width: 100%;
  background-color: var(--dark-bg);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 2rem;
}

.app-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.app-logo {
  margin-bottom: 1rem;
}

.app-logo a {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

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

.app-logo a:active {
  transform: scale(0.98);
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 22px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.app-header h1 {
  margin-top: 0;
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.github-link {
  margin-top: 1rem;
  display: inline-block;
}

.github-link a {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.github-link a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.github-link svg {
  margin-right: 8px;
  fill: var(--text-secondary);
}

.github-link a:hover svg {
  fill: var(--text-primary);
}

/* NDI Attribution */
.ndi-attribution {
  text-align: center;
  margin: 2.5rem 0 0.5rem;
  padding: 1rem;
  background-color: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.ndi-attribution p {
  font-size: 1rem;
  margin: 0;
  color: var(--text-secondary);
}

.ndi-attribution sup {
  font-size: 0.7rem;
  vertical-align: super;
}

.ndi-attribution a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ndi-attribution a:hover {
  color: #39a5ff;
  text-decoration: underline;
}

/* Section Divider */
.section-divider {
  position: relative;
  text-align: center;
  margin: 5rem 0 3rem;
  height: 1px;
  background: linear-gradient(to right, rgba(51, 51, 51, 0), rgba(51, 51, 51, 1) 50%, rgba(51, 51, 51, 0));
}

.divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--dark-bg);
  border-radius: 50%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-icon svg {
  color: var(--secondary);
  opacity: 0.8;
}

.screenshots-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.screenshots-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.screenshots-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* App Showcase Section */
.app-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}

.showcase-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.ndi-monitor {
  width: 100%;
  margin-top: 1rem;
  max-width: 800px;
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border-color);
  max-width: 100%;
}

.showcase-caption {
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
}

.app-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.app-content h1 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

.app-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.app-content ul {
  padding-left: 1.5rem;
}

.app-content a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.app-content a:hover {
  color: #39a5ff;
  text-decoration: underline;
}

.app-footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
}

.app-footer a {
  color: var(--secondary);
  text-decoration: none;
  margin: 0 0.8rem;
  transition: color 0.2s ease;
}

.app-footer a:hover {
  color: #39a5ff;
  text-decoration: underline;
}

.footer-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-note a {
  margin: 0;
}

.ndi-trademark {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.ndi-trademark sup {
  font-size: 0.6rem;
  position: relative;
  top: -0.25em;
}

.ndi-trademark a {
  color: var(--secondary);
  text-decoration: none;
}

.ndi-trademark a:hover {
  text-decoration: underline;
}

.status-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.status-on {
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.status-off {
  background-color: #777;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #ff5146;
  transform: translateY(-2px);
  text-decoration: none;
}

.help-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  margin: 0.5rem 0;
}

.help-link:before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--secondary);
  border-radius: 50%;
  color: white;
  margin-right: 8px;
  font-size: 14px;
  font-weight: bold;
}

/* Wirecast Integration Section */
.integration-section {
  margin: 5rem 0 3rem;
  text-align: center;
}

.integration-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.integration-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.wirecast-examples {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.wirecast-example {
  width: 100%;
  max-width: 900px;
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wirecast-example:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.wirecast-image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border-color);
}

.wirecast-caption {
  padding: 1.2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .wirecast-examples {
    gap: 1.5rem;
  }
  
  .wirecast-example {
    max-width: 100%;
  }
  
  .wirecast-caption {
    padding: 1rem;
    font-size: 1rem;
  }
} 