
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#0f172a;
  color:white;
  line-height:1.5;
}

a{
  text-decoration:none;
  color:inherit;
}

.hero{
  position:relative;
  height:80vh;
  background:
    linear-gradient(rgba(15,23,42,.7), rgba(15,23,42,.7)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:20px;
}

.hero h1{
  font-size:64px;
  margin-bottom:20px;
}

.hero p{
  font-size:22px;
  margin-bottom:30px;
  color:#dbeafe;
}

.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:12px;
  background:#3b82f6;
  transition:.3s;
  font-weight:bold;
}

.btn:hover{
  background:#2563eb;
  transform:translateY(-2px);
}

.container{
  width:min(1200px, 92%);
  margin:60px auto;
}

section{
  margin-bottom:60px;
}

section h2{
  font-size:34px;
  margin-bottom:24px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.card{
  background:#1e293b;
  border-radius:18px;
  overflow:hidden;
  transition:.3s;
  border:1px solid rgba(255,255,255,.08);
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.thumb{
  height:200px;
  background-size:cover;
  background-position:center;
}

.apartment{
  background-image:url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1200&auto=format&fit=crop');
}

.apartment2{
  background-image:url('https://images.unsplash.com/photo-1484154218962-a197022b5858?q=80&w=1200&auto=format&fit=crop');
}

.house{
  background-image:url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?q=80&w=1200&auto=format&fit=crop');
}

.villa{
  background-image:url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1200&auto=format&fit=crop');
}

.garage{
  background-image:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1200&auto=format&fit=crop');
}

.parking{
  background-image:url('https://images.unsplash.com/photo-1502877338535-766e1452684a?q=80&w=1200&auto=format&fit=crop');
}

.card-content{
  padding:20px;
}

.card-content h3{
  margin-bottom:10px;
  font-size:22px;
}

.card-content p{
  color:#cbd5e1;
}

footer{
  text-align:center;
  padding:30px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#94a3b8;
}

.topbar{
  padding:20px;
}

.back-btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:10px;
  background:#1e293b;
}

.player-wrapper{
  width:min(1200px, 92%);
  margin:40px auto;
}

.player-placeholder{
  height:70vh;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(rgba(15,23,42,.6), rgba(15,23,42,.6)),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  border:2px dashed rgba(255,255,255,.25);
}

.player-text h1{
  font-size:72px;
  margin-bottom:16px;
}

.player-text p{
  font-size:20px;
  color:#dbeafe;
  max-width:700px;
  margin:auto;
}

@media(max-width:768px){
  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

  .player-text h1{
    font-size:48px;
  }
}
