body {
  background: linear-gradient(180deg, #fff0f7, #f3e8ff);
  font-family: "Segoe UI", sans-serif;
  color: #3a2a40;
  display: flex;
}

.hero {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 60px;
  color: #D58BE8;
  text-shadow: 0 0 15px rgba(213, 139, 232, 0.6);
  margin-bottom: 10px;
}

.hero p {
  font-size: 22px;
  color: #7A4BAB;
  font-style: italic;
  letter-spacing: 1px;
  opacity: 0.9;
}

.sidebar {
  width: 230px;
  min-height: 100vh;
  background-color: #F2E6FA;
  padding: 30px;
  box-sizing: border-box;
  border-right: 2px solid #D58BE8;
}

.sidebar h2 {
  color: #7A4BA8;
  text-align: center;
  margin-bottom: 35px;
}

.sidebar a {
  display: block;
  margin: 18px 0;
  color: #7A4BA8;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #D58BE8;
  transform: translateX(8px);
  transition: .3s;
}

.main-content {
  flex: 1;
  padding: 50px;
}

.drama {
   display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.6);
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  gap: 20px;
}

.drama-text {
  flex: 1;
}

.drama-img {
  width: 140px;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid #D58BE8;
  box-shadow: 0 0 15px rgba(213, 139, 232, 0.5);
}

.drama-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


ul li {
  display: inline-block;
  background: #e8d5ff;
  padding: 8px 12px;
  margin: 5px;
  border-radius: 20px;
}

ul li a {
  text-decoration: none;
  color: #7A4BAB;
  font-weight: bold;
  transition: 0.3s;
}

ul li a:hover {
  color: #D58BE8;
}

.quiz {
 text-align: center;
padding: 30px;
background: white;
 border-radius: 25px;
 box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}