/* Keep-It-Simple Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0f12; /* Mörkgrå/blå metal-vibe */
  color: #e0e4eb;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding: 2rem;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  color: #8a99ad;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsiv layout optimerad för desktop */
.container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}

/* Video-sektionen */
.featured {
  background: #14191f;
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid #222d3a;
}

.featured h2 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #ff9d00; /* Eldig accentfärg */
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Format */
  height: 0;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Länk-sektionen */
.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.btn {
  display: block;
  background: #1c232c;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #2d3947;
  font-weight: bold;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #ff9d00;
  color: #0d0f12;
  border-color: #ff9d00;
}

footer {
  text-align: center;
  margin-top: 4rem;
  color: #576575;
  font-size: 0.9rem;
}
