:root {
  --bg: #0d0d0d;
  --text: #ffffff;
  --primary: #f0a500;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: all 0.3s ease;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 100vh;
  box-sizing: border-box;
}

.main-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}

.left-panel {
  flex: 1;
  text-align: center;
}

.left-panel img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.right-panel {
  flex: 1;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.date {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.overview {
  font-size: 1rem;
  margin-bottom: 20px;
}

h2 {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--primary);
}

.action-buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ffbb33;
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    text-align: center;
  }

  .right-panel {
    margin-top: 30px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
