
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}
header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.banner {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px;
  margin: 0;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  color: #663399;
  font-weight: bold;
}
#studio, #assets, #contact {
  padding: 40px 20px;
  text-align: center;
}
.logo {
  width: 100px;
  border-radius: 50%;
}
.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.asset-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.asset-card img {
  width: 100%;
  display: block;
}
.asset-cover {
  width: 500px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.asset-card p {
  padding: 10px;
  margin: 0;
  background-color: #f9f9f9;
}
