* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #111;
  color: #f5f5f5;

  font-family: Arial, Helvetica, sans-serif;

  line-height: 1.6;

  min-height: 100vh;
}

/* LINKS */

a {
  transition: 0.2s ease;
}

/* HERO */

.hero {
  padding: 70px 20px 60px 20px;

  background:
    linear-gradient(
      180deg,
      #181818 0%,
      #111 100%
    );

  border-bottom: 1px solid #222;
}

.hero-content {
  max-width: 1100px;

  margin: 0 auto;

  text-align: center;
}

.hero-logo {
  width: auto;

  max-width: min(700px, 90vw);

  max-height: 140px;

  height: auto;

  object-fit: contain;

  margin-bottom: 30px;

  filter:
    drop-shadow(
      0 0 20px rgba(255,255,255,0.08)
    );
}

.hero h1 {
  font-size: 46px;

  margin-bottom: 20px;

  line-height: 1.2;
}

.hero p {
  font-size: 20px;

  color: #aaa;

  max-width: 760px;

  margin: 0 auto;
}

/* GENERAL SECTIONS */

section {
  max-width: 1200px;

  margin: 0 auto;

  padding: 60px 20px;
}

section h2 {
  font-size: 34px;

  margin-bottom: 30px;

  letter-spacing: 0.5px;
}

/* SECTION HEADER */

.section-header {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  flex-wrap: wrap;

  margin-bottom: 30px;
}

/* LIVE LINK BUTTON */

.live-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 18px;

  border-radius: 10px;

  background: #ff2b2b;

  color: white;

  text-decoration: none;

  font-weight: bold;

  transition: 0.2s ease;
}

.live-link:hover {
  background: #ff4444;
}

/* EVENTS GRID */

.events-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 18px;
}

/* EVENT CARD */

.event-card {
  background: #1b1b1b;

  border: 1px solid #222;

  border-radius: 16px;

  overflow: hidden;

  transition: 0.2s ease;

  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-3px);

  border-color: #444;
}

/* CARD BANNER */

.banner {
  height: 120px;

  background:
    linear-gradient(
      135deg,
      #1a1a1a,
      #222
    );
}

/* CARD CONTENT */

.card-content {
  padding: 20px;

  display: flex;
  flex-direction: column;

  gap: 16px;
}

/* STATUS */

.status-row {
  display: flex;

  align-items: center;

  gap: 10px;
}

.status-dot {
  width: 12px;
  height: 12px;

  border-radius: 50%;
}

.status-live {
  background: #00c853;

  box-shadow:
    0 0 12px rgba(0,200,83,0.8);
}

.status-anslaget {
  background: #ff9800;
}

.status-slutligt {
  background: #2196f3;
}

.status-offline {
  background: #f44336;
}

.status-text {
  font-size: 13px;

  font-weight: bold;

  letter-spacing: 0.5px;
}

/* EVENT TEXT */

.event-name {
  font-size: 24px;

  line-height: 1.2;
}

.info-row {
  color: #aaa;

  font-size: 14px;
}

/* OPEN BUTTON */

.open-btn {
  margin-top: 10px;

  display: inline-flex;

  justify-content: center;
  align-items: center;

  height: 46px;

  border-radius: 10px;

  background: #ff2b2b;

  color: white;

  text-decoration: none;

  font-weight: bold;

  transition: 0.2s ease;
}

.open-btn:hover {
  background: #ff4444;
}

/* SERVICES */

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 20px;
}

.service-card {
  background: #1b1b1b;

  border: 1px solid #222;

  border-radius: 16px;

  padding: 25px;
}

.service-card h3 {
  font-size: 24px;

  margin-bottom: 14px;
}

.service-card p {
  color: #bbb;
}

/* RESULTS */

.results-section {
  color: #ddd;
}

.results-section p {
  margin-bottom: 18px;
}

.results-section strong {
  color: #fff;
}

.results-section a {
  color: #ff2b2b;

  text-decoration: none;
}

.results-section a:hover {
  text-decoration: underline;
}

/* CONTACT */

.contact-box {
  background: #1b1b1b;

  border: 1px solid #222;

  border-radius: 16px;

  padding: 24px;

  max-width: 500px;
}

.contact-box p {
  margin-bottom: 12px;
}

.contact-box a {
  color: #ff2b2b;

  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* FOOTER */

.footer {
  border-top: 1px solid #222;

  padding: 25px 20px;

  text-align: center;

  color: #777;

  font-size: 14px;
}

/* MOBILE */

@media (max-width: 700px) {

  .hero {
    padding: 50px 15px 40px 15px;
  }

  .hero-logo {
    max-width: 85vw;

    max-height: 80px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 17px;
  }

  section {
    padding: 40px 15px;
  }

  section h2 {
    font-size: 26px;
  }

  .event-name {
    font-size: 20px;
  }

  .section-header {
    flex-direction: column;

    align-items: flex-start;
  }

}