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

body {
  background: #111;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

/* TOPBAR */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 30px;

  border-bottom: 1px solid #222;

  background: #181818;

  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-dot {
  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: #ff2b2b;

  box-shadow: 0 0 12px rgba(255,43,43,0.8);
}

.topbar h1 {
  font-size: 28px;
  letter-spacing: 1px;
}

.topbar p {
  color: #888;
  font-size: 13px;
  margin-top: 2px;
}

.last-update {
  color: #888;
  font-size: 13px;
}

/* MAIN */

main {
  padding: 25px;
}

/* GRID */

.events-grid {
  display: grid;

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

  gap: 18px;
}

/* 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;
}

/* BANNER */

.banner {
  height: 90px;

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

  display: flex;

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

  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 10px;
}
/* CONTENT */

.card-content {
  padding: 20px;

  display: flex;
  flex-direction: column;

  gap: 16px;
}

.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-name {
  font-size: 24px;
  line-height: 1.2;
}

.info-row {
  color: #aaa;
  font-size: 14px;
}

/* 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;
}

/* HERO LOGO */

.hero-logo {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
margin-bottom: 10px;	

  padding: 30px 20px 10px 20px;
}

.hero-logo img {
  width: auto;

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

  max-height: 120px;

  height: auto;

  object-fit: contain;

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

/* OFFICIAL RESULTS */

.official-results {
  padding: 20px 25px 40px 25px;
}

.official-results h2 {
  margin-bottom: 20px;

  font-size: 22px;
}

.official-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.official-link {
  display: block;

  background: #1b1b1b;

  border: 1px solid #222;

  border-radius: 12px;

  padding: 16px 18px;

  color: #f5f5f5;

  text-decoration: none;

  transition: 0.2s ease;
}

.official-link:hover {
  border-color: #444;

  background: #222;
}

/* MOBILE */

@media (max-width: 700px) {

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  main {
    padding: 15px;
  }

  .event-name {
    font-size: 20px;
  }
	
	.hero-logo {
    padding: 20px 10px 0 10px;
  }

  .hero-logo img {
    max-width: 85vw;
    max-height: 70px;
  }


}

