@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 16px;
  text-align: center;
}

h2 {
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
}

h4 {
  margin-top: 0;
  color: #666;
}

#timers {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: right;
}

.timer {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
}

.controls button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.controls button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.download-link {
  margin-top: 30px;
  display: inline-block;
  font-size: 16px;
  color: green;
  text-decoration: none;
}

.download-link:hover {
  text-decoration: underline;
}

video {
  margin-top: 15px;
  border: 2px solid #333;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/* Popup genel görünüm */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.popup-content h2 {
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 15px;
}

/* Çarpı kapatma ikonu */
.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #000;
}


