@media (max-width: 700px) {
  #download_video_desktop { display: none !important; }
  #download_video_mobile  { display: block !important; }
}

#download {
  position: relative;
  min-height: 100vh;
  background: transparent;
  color: #e0d6c3;
  font-family: 'Rajdhani', sans-serif;
}

#download_video_desktop,
#download_video_mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
  background: #0a060f;
  pointer-events: none;
}

.dl-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 100%, #3d0a0a22 0%, transparent 65%),
    radial-gradient(ellipse at 50% 50%, rgba(10,6,15,0.00) 0%, #0a060f 100%),
    linear-gradient(180deg, #0a060f 0%, rgba(10,6,15,0.00) 30%);
  pointer-events: none;
}

.dl-wrap {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 24px 60px;
}

.dl-header {
  text-align: center;
  margin-bottom: 36px;
}

.dl-title {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  color: #e8d4a0;
  margin: 12px 0 10px;
  text-shadow: 0 2px 20px rgba(139,69,0,0.4);
}

.dl-sub {
  color: #7a6a50;
  font-size: 15px;
}

.dl-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.dl-btn-main,
.dl-btn-patch {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 240px;
}

.dl-btn-main {
  background: linear-gradient(135deg, #c8860a, #8b4a00);
  border: 1px solid #ffd70033;
  color: #fff8e0;
}
.dl-btn-main:hover {
  background: linear-gradient(135deg, #e09a10, #a05500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,134,10,0.3);
}

.dl-btn-patch {
  background: rgba(15, 12, 25, 0.9);
  border: 1px solid #3a2a14;
  color: #c8a050;
}
.dl-btn-patch:hover {
  border-color: #c8860a;
  background: rgba(30, 20, 40, 0.95);
  transform: translateY(-2px);
}

.dl-btn-icon { font-size: 26px; flex-shrink: 0; }

.dl-btn-label {
  display: block;
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.dl-btn-desc {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  margin-top: 2px;
}

.dl-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dl-req-card {
  background: rgba(15, 12, 25, 0.92);
  border: 1px solid #1a1520;
  border-radius: 6px;
  padding: 20px;
}

.home-sidebar-card-title {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #6a5a40;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.dl-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
}

.dl-req-table th,
.dl-req-table td {
  padding: 7px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: left;
}
.dl-req-table tr:last-child th,
.dl-req-table tr:last-child td { border-bottom: none; }

.dl-req-table th {
  color: #c8a878;
  font-weight: 600;
  width: 38%;
  white-space: nowrap;
}

.dl-req-table td { color: #c8a050; }

.home-hero-tag {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #c8860a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.home-hero-tag::before,
.home-hero-tag::after {
  content: '';
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, #c8860a);
}
.home-hero-tag::after { background: linear-gradient(90deg, #c8860a, transparent); }

@media (max-width: 700px) {
  .dl-req-grid { grid-template-columns: 1fr; }
  .dl-buttons { flex-direction: column; align-items: stretch; }
  .dl-btn-main, .dl-btn-patch { min-width: unset; justify-content: center; }
  .dl-title { font-size: 20px; }
  .dl-wrap { padding: 30px 16px 40px; }
}

@media (max-width: 400px) {
  .dl-wrap { padding: 20px 10px 30px; }
}