body {
margin: 0;
font-family: 'Open Sans', sans-serif;
background: #111;
color: #ddd;
}


header {
width: 100%;
padding: 20px 0 10px;
text-align: center;
}


h1 {
margin: 0 0 10px 0;
font-weight: 300;
letter-spacing: 3px;
}


.top-nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 15px;
}


.top-nav a {
text-decoration: none;
color: #aaa;
font-size: 14px;
}


.top-nav a:hover {
color: #fff;
}


.page-container {
max-width: 1100px;
margin: 0 auto;
padding: 30px 20px 80px;
}


.intro {
max-width: 700px;
margin: 0 auto 40px auto;
font-size: 15px;
line-height: 1.7;
color: #aaa;
}


.entry {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}


.video-container {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
}


.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}


.text-box {
font-size: 15px;
line-height: 1.6;
}


@media (max-width: 900px) {
.entry {
grid-template-columns: 1fr;
}

/* ===== FORCE FIX FOR ALL STATES ===== */
.intro a,
.intro a:visited,
.intro a:hover,
.intro a:active,
.intro a:focus {
  color: #aaa !important;
  text-decoration: none !important;
  border-bottom: 1px solid #444;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.intro a:hover {
  color: #fff !important;
  border-color: #888;
}
/* ===== LOGO ===== */
.site-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.site-logo img {
  width: 100%;
  max-width: 380px;   /* styr hur stor den får bli på desktop */
  height: auto;
}
/* ===== ASCII LOGO ===== */
.ascii-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.ascii-logo pre {
  font-family: monospace;
  font-size: 10px;     /* desktop-storlek */
  line-height: 1.1;
  color: #ddd;
  background: none;
  margin: 0;
  white-space: pre;
}

/* Mobilanpassning */
@media (max-width: 700px) {
  .ascii-logo pre {
    font-size: 7px;
  }
/* ===== EXTRA VIDEO ROW (LUFTIGARE) ===== */
.video-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;              /* <-- MER MELLANRUM MELLAN VIDEOR */
  margin-top: 60px;      /* <-- MER LUFT MOT STORA VIDEON */
}

.video-container.small {
  aspect-ratio: 16 / 9;
}

/* Mobil */
@media (max-width: 900px) {
  .video-row {
    grid-template-columns: 1fr;
    gap: 24px;          /* luft även i staplat läge */
  }
  /* ===== 9:16 STÅENDE VIDEO ===== */
.video-container.vertical {
  aspect-ratio: 9 / 16;
  max-width: 260px;      /* hindrar dem från att bli för breda */
  margin: 0 auto;       /* centrerar dem snyggt i sin grid-kolumn */
}

/* Mobil – låt dem bli bredare igen */
@media (max-width: 900px) {
  .video-container.vertical {
    max-width: 100%;
  }
}

