/* Web styles for Screen Recorder Pro */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.web-container {
  display: flex;
  min-height: 100vh;
}

.ad-space {
  width: 160px;
  padding: 20px 10px;
  background-color: #f5f5f5;
}

.ad-placeholder {
  height: 600px;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  margin-bottom: 20px;
  font-size: 14px;
}

.web-content {
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

header h1 {
  color: #2c3e50;
  margin-bottom: 5px;
}

.tagline {
  color: #7f8c8d;
  font-size: 16px;
}

.recorder-container {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#recorder-frame {
  width: 100%;
  height: 750px;
  border: none;
}

.extension-download {
  background-color: #f5f7fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
}

.extension-download h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  color: white;
  width: 220px;
  height: 45px;
}

.download-btn img {
  margin-right: 8px;
}

.chrome-btn {
  background-color: #4285F4;
}

.chrome-btn:hover {
  background-color: #3367d6;
}

.edge-btn {
  background-color: #0078D7;
}

.edge-btn:hover {
  background-color: #006cc1;
}

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .web-container {
    flex-direction: column;
  }
  
  .ad-space {
    width: 100%;
    height: auto;
  }
  
  .ad-placeholder {
    height: 100px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}