/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Movie Download Card */
.movie-download-card {
  background: #353535;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  border-left: 5px solid #3f51b5;
  position: relative;
  overflow: hidden;
}

.movie-download-card h2 {
  margin-top: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  border-bottom: 2px dashed #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.movie-title {
  color: #eb0c0c;
}

.language {
  color: #0083d3;
}

.quality-tag {
  color: #00bed3;
}

/* Genre Tags */
.genre-tags {
  align-items: center;
  margin-bottom: 15px;
}

.genre-tag {
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
}

.drama {
  background-color: #3f51b5;
}

.romance {
  background-color: #e91e63;
}

.thriller {
  background-color: #ff9800;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.telegram-button {
  background: linear-gradient(135deg, #2196F3 0%, #0d47a1 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

.telegram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.telegram-button i {
  margin-right: 8px;
  color: white;
}

/* Content Row */
.content-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}

/* Poster Section */
.poster {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  position: relative;
}

.poster-image {
  box-shadow: 0 0px 7px rgb(21 179 115);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.poster-image img {
  /*width: 100%;*/
  max-width: 300px;
  transition: transform 0.3s ease;
}

.poster-image:hover img {
  transform: scale(1.05);
}

.poster-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 15px;
  color: white;
  font-weight: bold;
  text-align: center;
}

/* Details Section */
.details {
  flex: 1;
  min-width: 250px;
  background-color: #353535;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.movie-title-header {
  color: #2d964b;
  margin-top: 0;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px dashed #e0e0e0;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.movie-title-header i {
  margin-right: 10px;
  color: #e74c3c;
}

.movie-info {
  margin-top: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.info-item i {
  margin-right: 10px;
  color: #3498db;
}

.info-label {
  color: #27ae60;
}

.info-value {
  color: #fff;
}

.availability-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
  text-align: center;
  border: 1px dashed #2e7d32;
}

.availability-text {
  margin: 0;
  color: #27ae60;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.availability-text i {
  margin-right: 8px;
  color: #27ae60;
}

.quality-options {
  margin: 8px 0 0 0;
  color: #27ae60;
  font-weight: bold;
}

/* Screenshots Section */
.screenshots-section {
  background: #353535;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.screenshots-section h3 {
  margin: 0 0 15px 0;
  color: #fff;
  justify-content: center;
  font-size: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.screenshots-section h3 i {
  margin-right: 10px;
  color: #fff;
}

.screenshots-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
}

/* Download Links Section */
.download-links-section {
  background: #353535;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.download-links-section h3 {
  margin: 0 0 20px 0;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-links-section h3 i {
  margin-right: 10px;
  color: #fff;
}

.download-info {
  margin: 10px 0;
  color: #fff;
}

.download-button {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.download-button__text {
  margin-right: 8px;
}

/* Important Notice */
.important-notice {
  background: #fff8e1;
  border-left: 4px solid #ffa000;
  padding: 15px;
  margin-top: 25px;
  border-radius: 4px;
  display: flex;
}
.lang {
  color: #2196f3; /* Blue */
}

.quality {
  color: #4caf50; /* Green */
}

.size {
  color: #f44336; /* Red */
}

.important-notice i {
  margin-right: 15px;
  color: #ffa000;
  font-size: 24px;
}

.important-notice h4 {
  margin: 0 0 5px 0;
  color: #ff6f00;
}

.important-notice p {
  margin: 0;
  color: #5d4037;
  font-size: 14px;
}
