/* Download Terminals page */

.dt-shell{
  border-radius: 18px;
  border: 1px solid rgba(219,233,255,0.12);
  background: #07000E;
  box-shadow: 0 18px 28px rgba(0,0,0,0.25);
  overflow: hidden;
}

.dt-topbar{
  background: #d1d1d1;
  padding: 12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.dt-topbar-left{ display:flex; align-items:center; gap: 10px; }
.dt-topbar-title{ font-weight: 800; color:#101010; font-size: 0.95rem; }
.dt-pill{
  background: #8BE59F;
  color: #08210f;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 6px 10px;
  border-radius: 999px;
}
.dt-topbar-dot{ width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.55); }

.dt-grid{
  padding: 26px 24px 30px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.dt-card{
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 26px rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.04);
}
.dt-card-img{
  height: 150px;
  border-radius: 18px 18px 0 0;
  background: #101010;
  overflow: hidden;
}
.dt-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Clean crops per MT5 image */
.dt-img-web img{ object-position: 50% 45%; }
.dt-img-win img{ object-position: 55% 30%; }
.dt-img-ios img{ object-position: 50% 45%; }
.dt-img-and img{ object-position: 55% 45%; }

.dt-card-body{
  padding: 14px 16px 16px;
  text-align: center;
}
.dt-card-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  font-weight: 800;
  color: #111;
  margin-top: 6px;
}
.dt-card-head i{ font-size: 1.05rem; }
.dt-card-sub{
  margin: 10px auto 12px;
  max-width: 420px;
  color: rgba(0,0,0,0.55);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.35;
}
.dt-btn{
  background: #0A5BE2;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  min-width: 190px;
}
.dt-btn:hover{ background:#094fca; color:#fff; }

@media (max-width: 991.98px){
  .dt-grid{ grid-template-columns: 1fr; gap: 22px; padding: 22px 18px 26px; }
  .dt-card-img{ height: 170px; }
}

