* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0f172a;
  color: #f8fafc;
  font-family: Arial, sans-serif;
}

.container {
  width: min(1000px, 92%);
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  padding: 48px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
}

.hero p {
  margin: 12px 0 0;
  font-size: 18px;
  opacity: 0.85;
}

.panel {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.album-form {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: bold;
  color: #cbd5e1;
}

input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #475569;
  border-radius: 14px;
  background: #0f172a;
  color: white;
  font-size: 16px;
}

input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.25);
}

button {
  border: none;
  border-radius: 14px;
  padding: 15px 20px;
  background: #8b5cf6;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #7c3aed;
}

h2 {
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #334155;
}

th {
  color: #cbd5e1;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cover {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #334155;
}