* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  padding: 40px 0;
}

.page {
  width: 850px;
  margin: 0 auto;
  background: #f2f2f2;
}

/* Top bar */
.topbar {
  background: #221c8f;
  color: white;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: bold;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #0d0b5e, #120f6d);
  color: white;
  padding: 55px 25px 45px 25px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 12px;
}

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

.btn {
  border: none;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.pink {
  background: #ff0a78;
  color: white;
}

.full {
  width: 100%;
}

.content {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: #efefef;
}

/* Left side */
.left {
  flex: 2.2;
}

.left h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.left hr {
  border: none;
  border-top: 1px solid #d8d8d8;
  margin-bottom: 18px;
}

.left p {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 18px;
}

.video-box {
  background: #ddd;
  border: 1px solid #cfcfcf;
  margin-bottom: 20px;
}

.video-box iframe {
  display: block;
}

.alert-box {
  background: #b8b8cc;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: bold;
}

/* Right side */
.right {
  flex: 1;
}

.message-title {
  background: #ff0a78;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 14px;
}

.badge {
  display: inline-block;
  background: #3568d4;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  padding: 3px 6px;
  margin-left: 4px;
}

.message-card {
  border: 1px solid #d7d7d7;
  background: white;
  margin-bottom: 18px;
}

.message-head {
  background: #b8b8cc;
  color: white;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
}

.message-body {
  background: #17146d;
  color: white;
  padding: 14px 12px;
}

.message-body p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.message-body input {
  width: 100%;
  padding: 8px;
  border: 1px solid #999;
  margin-bottom: 12px;
  font-size: 12px;
}

.message-foot {
  background: #352ea3;
  color: white;
  text-align: center;
  font-size: 10px;
  padding: 8px;
}

.vote-box {
  border: 1px solid #d7d7d7;
  background: white;
  padding: 14px 12px;
}

.vote-box p {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 14px;
}

.progress {
  display: flex;
  height: 8px;
  margin-bottom: 14px;
  background: #eee;
}

.progress-left {
  width: 68%;
  background: #ff0a78;
}

.progress-right {
  width: 32%;
  background: #2ecc71;
}

.vote-buttons {
  display: flex;
  gap: 10px;
}

.vote-btn {
  flex: 1;
}

.green-outline {
  background: white;
  border: 2px solid #2ecc71;
  color: #2ecc71;
  font-weight: bold;
}

/* Footer */
.footer {
  background: #181470;
  color: white;
  font-size: 12px;
  padding: 14px 24px;
}
