/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Global Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Images */
.main-image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.responsive-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
}

/* Video Section */
.video-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Banner Section */
.banner-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.banner-container {
  background-color: yellow;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.app-link {
  display: block;
  transition: transform 0.3s ease;
}

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

.app-icon {
  width: 225px;
  height: auto;
  max-width: 100%;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .app-icon {
    width: 180px;
  }
  
  .banner-container {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .app-icon {
    width: 150px;
  }
  
  .banner-container {
    padding: 15px 10px;
  }
}

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

.stream-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.error-message {
  background-color: #ffebee;
  border: 1px solid #e57373;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.error-message p {
  color: #c62828;
  margin-bottom: 10px;
}

.error-message button {
  background-color: #1976d2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.error-message button:hover {
  background-color: #1565c0;
}

.video-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.video-frame {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #f9f9f9;
  position: relative;
}

.video-frame h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.video-element {
  width: 100%;
  height: 400px;
  background-color: #000;
  border-radius: 4px;
  object-fit: cover;
}

.processed-video {
  position: relative;
}

.placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 18px;
  text-align: center;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 4px;
}

.model-info {
  margin-top: 15px;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 4px;
  border-left: 4px solid #2196f3;
  font-size: 12px;
}

.model-details h4 {
  margin: 10px 0 5px 0;
  color: #333;
  font-size: 14px;
}

.input-spec, .output-spec {
  margin-bottom: 10px;
  padding: 8px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #ddd;
}

.input-spec strong, .output-spec strong {
  color: #1976d2;
  display: block;
  margin-bottom: 5px;
}

.input-spec ul, .output-spec ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.input-spec li, .output-spec li {
  margin: 2px 0;
  color: #555;
}

.file-info {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #e8f5e8;
  border-radius: 3px;
  border: 1px solid #c8e6c9;
}

.file-info ul {
  margin: 0;
  padding-left: 20px;
}

.file-info li {
  margin: 5px 0;
  color: #2e7d32;
}

.note {
  margin-top: 15px;
  padding: 10px;
  background-color: #fff3e0;
  border-radius: 3px;
  border-left: 4px solid #ff9800;
}

.note p {
  margin: 5px 0;
  color: #e65100;
  font-size: 11px;
}


.processed-video {
  border: 2px solid #2196f3;
  border-radius: 4px;
}

.results-info {
  margin-top: 10px;
  padding: 8px;
  background-color: #f0f8f0;
  border-radius: 3px;
  border-left: 3px solid #4caf50;
}

.results-info p {
  margin: 2px 0;
  color: #2e7d32;
  font-size: 11px;
}

/* Args Control Section */
.args-control-section {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  text-align: center;
}

.args-control-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
}

.args-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.args-button {
  padding: 12px 24px;
  border: 2px solid #007bff;
  background-color: white;
  color: #007bff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 100px;
}

.args-button:hover {
  background-color: #e7f3ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.args-button.active {
  background-color: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.args-button:active {
  transform: translateY(0);
}

.args-status {
  margin: 0;
  color: #495057;
  font-size: 14px;
}

.args-status strong {
  color: #007bff;
  font-size: 16px;
}

@media (max-width: 768px) {
  .args-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .args-button {
    width: 120px;
  }
}

@media (min-width: 768px) {
  .video-container {
    flex-direction: row;
  }
  
  .video-frame {
    flex: 1 1;
  }
}
.privacy-page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333;
}

/* Component 1: Top Image */
.privacy-image-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.privacy-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

/* Component 2: Privacy Policy Text Content */
.privacy-content {
  padding: 20px 30px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 80px; /* Same as Terms of Service page */
  text-align: left;
}

.privacy-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: left;
}

.privacy-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 25px 0 10px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  text-align: left;
}

.privacy-content p {
  margin: 15px 0;
  font-size: 1rem;
  text-align: left;
}

.privacy-content .effective-date {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: left;
}

.privacy-content ul {
  margin: 15px 0;
  padding-left: 30px;
  text-align: left;
}

.privacy-content li {
  margin-bottom: 10px;
  text-align: left;
}

.privacy-content strong {
  font-weight: 600;
}

.privacy-content a {
  color: #3498db;
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.privacy-content .thank-you {
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: left;
}

/* Responsive design */
@media (max-width: 768px) {
  .privacy-content {
    padding: 15px 20px;
  }
  
  .privacy-content h1 {
    font-size: 1.8rem;
  }
  
  .privacy-content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 10px 15px;
  }
  
  .privacy-content h1 {
    font-size: 1.5rem;
  }
  
  .privacy-content h2 {
    font-size: 1.1rem;
  }
} 
.terms-page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333;
}

/* Component 1: Top Image */
.terms-image-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.terms-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

/* Component 2: Terms of Service Text Content */
.terms-content {
  padding: 20px 30px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 80px;
  text-align: left;
}

.terms-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: left;
}

.terms-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 25px 0 10px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  text-align: left;
}

.terms-content p {
  margin: 15px 0;
  font-size: 1rem;
  text-align: left;
}

.terms-content .effective-date {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: left;
}

.terms-content ul {
  margin: 15px 0;
  padding-left: 30px;
  text-align: left;
}

.terms-content li {
  margin-bottom: 10px;
  text-align: left;
}

.terms-content strong {
  font-weight: 600;
}

.terms-content a {
  color: #3498db;
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}

.terms-content .thank-you {
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: left;
}

/* Responsive design */
@media (max-width: 768px) {
  .terms-content {
    padding: 15px 20px;
  }
  
  .terms-content h1 {
    font-size: 1.8rem;
  }
  
  .terms-content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .terms-content {
    padding: 10px 15px;
  }
  
  .terms-content h1 {
    font-size: 1.5rem;
  }
  
  .terms-content h2 {
    font-size: 1.1rem;
  }
} 
.eula-page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333;
}

/* Component 1: Top Image */
.eula-image-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.eula-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

/* Component 2: EULA Text Content */
.eula-content {
  padding: 20px 30px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 80px; /* Same as Terms of Service page */
  text-align: left;
}

.eula-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: left;
}

.eula-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 25px 0 10px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  text-align: left;
}

.eula-content p {
  margin: 15px 0;
  font-size: 1rem;
  text-align: left;
}

.eula-content .effective-date {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: left;
}

.eula-content ul {
  margin: 15px 0;
  padding-left: 30px;
  text-align: left;
}

.eula-content li {
  margin-bottom: 10px;
  text-align: left;
}

.eula-content strong {
  font-weight: 600;
}

.eula-content a {
  color: #3498db;
  text-decoration: none;
}

.eula-content a:hover {
  text-decoration: underline;
}

.eula-content .thank-you {
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: left;
}

/* Responsive design */
@media (max-width: 768px) {
  .eula-content {
    padding: 15px 20px;
  }
  
  .eula-content h1 {
    font-size: 1.8rem;
  }
  
  .eula-content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .eula-content {
    padding: 10px 15px;
  }
  
  .eula-content h1 {
    font-size: 1.5rem;
  }
  
  .eula-content h2 {
    font-size: 1.1rem;
  }
} 
