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

html{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  background:#061426;
  color:white;
  font-family:Arial, Helvetica, sans-serif;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,120,255,0.22), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(77,163,255,0.16), transparent 24%),
    radial-gradient(circle at 50% 90%, rgba(0,60,160,0.22), transparent 30%);
  z-index:-1;
  pointer-events:none;
}

/* HEADER */

header{
  width:100%;
  background:rgba(7,27,51,0.95);
  border-bottom:1px solid rgba(77,163,255,0.35);
  padding:22px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(12px);
}

.logo{
  color:#4da3ff;
  font-size:34px;
  font-weight:900;
  letter-spacing:1px;
  white-space:nowrap;
}

.logo::before{
  content:"◆ ";
  color:#0b74ff;
}

.menu-knap{
  width:58px;
  height:58px;
  border-radius:16px;
  border:1px solid rgba(77,163,255,0.35);
  background:rgba(77,163,255,0.12);
  color:white;
  font-size:34px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.menu-knap:hover{
  background:#0b74ff;
}

/* SIDE MENU */

.menu-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:9998;
}

.side-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:85%;
  max-width:380px;
  height:100%;
  background:linear-gradient(180deg,#101720,#071b33);
  border-left:8px solid #3f86ff;
  z-index:9999;
  padding:38px 26px;
  transition:0.4s ease;
  overflow-y:auto;
  box-shadow:-10px 0 40px rgba(0,0,0,0.6);
}

.side-menu h2{
  color:#4da3ff;
  font-size:34px;
  margin-bottom:35px;
}

.side-menu a{
  display:block;
  color:white;
  text-decoration:none;
  font-size:22px;
  padding:17px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.side-menu a:hover{
  color:#4da3ff;
  padding-left:8px;
}

.luk-menu{
  position:absolute;
  top:18px;
  right:24px;
  background:none;
  border:none;
  color:white;
  font-size:48px;
  cursor:pointer;
}

.menu-bund{
  margin-top:60px;
}

.menu-bestil{
  background:#0b74ff;
  text-align:center;
  border-radius:14px;
  font-weight:bold;
  border:none!important;
  padding:17px!important;
}

/* HERO */

.hero{
  width:100%;
  min-height:88vh;
  padding:95px 7%;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,rgba(6,20,38,0.96),rgba(11,45,87,0.88));
  overflow:hidden;
}

.hero-indhold{
  width:100%;
  max-width:900px;
  animation:fadeUp 0.8s ease;
}

.badge{
  display:inline-block;
  color:#4da3ff;
  background:rgba(77,163,255,0.1);
  border:1px solid rgba(77,163,255,0.5);
  padding:13px 22px;
  border-radius:40px;
  font-size:18px;
  margin-bottom:35px;
  font-weight:bold;
}

.hero h1{
  font-size:72px;
  line-height:1.05;
  max-width:900px;
  margin-bottom:25px;
}

.hero h1 span{
  color:#4da3ff;
}

.hero p{
  color:#d6e6ff;
  font-size:24px;
  max-width:800px;
  line-height:1.6;
}

.hero-knapper{
  margin-top:42px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.knap{
  display:inline-block;
  background:#0b74ff;
  color:white;
  text-decoration:none;
  padding:18px 34px;
  border-radius:14px;
  font-size:21px;
  font-weight:bold;
  transition:0.3s;
  border:1px solid transparent;
  box-shadow:0 0 25px rgba(11,116,255,0.25);
  text-align:center;
}

.knap:hover{
  background:#0061dd;
  transform:translateY(-4px);
}

.sekundær{
  background:transparent;
  border:2px solid #4da3ff;
  box-shadow:none;
}
/* SEKTIONER */

.sektion{
  width:100%;
  padding:90px 7%;
  overflow:hidden;
}

.sektion h2{
  text-align:center;
  color:#4da3ff;
  font-size:46px;
  margin-bottom:20px;
}

.sektion-tekst{
  text-align:center;
  max-width:760px;
  margin:0 auto 50px;
  color:#d6e6ff;
  font-size:20px;
  line-height:1.6;
}

.mørk{
  background:rgba(7,27,51,0.75);
}

/* KORT */

.kort-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.kort{
  width:100%;
  background:rgba(10,31,58,0.85);
  border:1px solid rgba(77,163,255,0.25);
  border-radius:22px;
  padding:32px;
  box-shadow:0 0 30px rgba(0,0,0,0.22);
  transition:0.3s;
  position:relative;
  overflow:hidden;
}

.kort::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#0b74ff,#4da3ff);
  opacity:0;
  transition:0.3s;
}

.kort:hover{
  transform:translateY(-8px);
  border-color:#4da3ff;
}

.kort:hover::before{
  opacity:1;
}

.kort h3{
  color:#4da3ff;
  font-size:28px;
  margin-bottom:16px;
}

.kort p{
  color:#d6e6ff;
  font-size:19px;
  line-height:1.6;
  text-decoration:none;
}

.kort p a{
  color:#d6e6ff;
  text-decoration:none;
  pointer-events:none;
}

.kort-link{
  display:inline-block;
  margin-top:20px;
  color:#4da3ff;
  text-decoration:none;
  font-weight:bold;
}

/* PRISER */

.pris{
  font-size:36px;
  margin:22px 0;
  font-weight:900;
  color:white;
}

.pris span{
  font-size:17px;
  color:#9bbce6;
}

.lille{
  margin-top:15px;
  font-size:18px;
  padding:14px 24px;
}

.fremhævet{
  border-color:#4da3ff;
  box-shadow:0 0 35px rgba(77,163,255,0.25);
}

.fremhævet::after{
  content:"Mest populær";
  position:absolute;
  top:18px;
  right:-38px;
  transform:rotate(35deg);
  background:#0b74ff;
  color:white;
  font-size:13px;
  font-weight:bold;
  padding:8px 42px;
}

/* FEATURES */

.features-liste{
  width:100%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:35px;
}

.feature{
  background:rgba(77,163,255,0.08);
  border:1px solid rgba(77,163,255,0.2);
  border-radius:16px;
  padding:18px;
  color:#d6e6ff;
  font-size:18px;
}

/* CTA */

.cta{
  width:100%;
  padding:90px 7%;
  text-align:center;
  background:linear-gradient(135deg,#071b33,#0b2d57);
  overflow:hidden;
}

.cta h2{
  font-size:44px;
  color:#4da3ff;
  margin-bottom:15px;
}

.cta p{
  color:#d6e6ff;
  font-size:20px;
  margin-bottom:32px;
}

/* UNDERSIDER */

.side-hero{
  width:100%;
  padding:95px 7%;
  text-align:center;
  background:linear-gradient(135deg,#061426,#0b2d57);
  overflow:hidden;
}

.side-hero h1{
  font-size:58px;
  color:#4da3ff;
  margin-bottom:16px;
}

.side-hero p{
  color:#d6e6ff;
  font-size:22px;
}

/* FAQ */

.faq-boks{
  max-width:900px;
  margin:auto;
}

.faq-item{
  background:rgba(10,31,58,0.85);
  border:1px solid rgba(77,163,255,0.25);
  border-radius:18px;
  padding:24px;
  margin-bottom:18px;
}

.faq-item h3{
  color:#4da3ff;
  font-size:24px;
  margin-bottom:10px;
}

.faq-item p{
  color:#d6e6ff;
  font-size:18px;
  line-height:1.6;
}

/* KONTAKT */

.kontakt-boks{
  width:100%;
  max-width:800px;
  margin:auto;
  background:rgba(10,31,58,0.85);
  padding:36px;
  border-radius:22px;
  border:1px solid rgba(77,163,255,0.25);
}

input,textarea{
  width:100%;
  background:#071b33;
  color:white;
  border:1px solid rgba(77,163,255,0.25);
  padding:16px;
  margin-bottom:15px;
  border-radius:12px;
  font-size:17px;
  outline:none;
}

input:focus,textarea:focus{
  border-color:#4da3ff;
}

textarea{
  min-height:150px;
  resize:vertical;
}

/* FOOTER */

footer{
  width:100%;
  background:#04101f;
  color:#9bbce6;
  text-align:center;
  padding:28px 7%;
  border-top:1px solid rgba(77,163,255,0.15);
  overflow:hidden;
}
/* GAMESERVER OVERSIGT */

.spil-sektion{
  padding:35px 5% 90px;
}

.spil-soeg{
  width:100%;
  max-width:680px;
  margin:0 auto 35px;
  position:relative;
}

.spil-soeg input{
  width:100%;
  background:#101a2e;
  border:1px solid rgba(77,163,255,0.18);
  color:white;
  padding:18px 22px 18px 55px;
  border-radius:30px;
  font-size:20px;
  outline:none;
}

.spil-soeg span{
  position:absolute;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:25px;
  color:#8ea6c8;
}

.spil-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.spil-kort{
  text-decoration:none;
  color:white;
  display:block;
}

.spil-billede{
  height:260px;
  border-radius:10px;
  overflow:hidden;
  background:#0a1f3a;
  border:1px solid rgba(77,163,255,0.25);
}

.spil-billede img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s;
}

.spil-kort:hover img{
  transform:scale(1.05);
}

.spil-info{
  padding-top:16px;
}

.spil-info h3{
  font-size:26px;
  margin-bottom:8px;
}

.spil-info p{
  color:#9bbce6;
  font-size:18px;
}

/* ANMELDELSER */

.anmeldelser{
  padding:90px 7%;
  background:linear-gradient(135deg,#071b33,#0b2d57);
}

.anmeldelser h2{
  text-align:center;
  color:#4da3ff;
  font-size:44px;
  margin-bottom:40px;
}

.anmeldelse-slider{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:25px;
}

.anmeldelse-kort{
  width:320px;
  background:rgba(10,31,58,0.9);
  border:1px solid rgba(77,163,255,0.25);
  border-radius:20px;
  padding:28px;
  box-shadow:0 0 25px rgba(0,0,0,0.25);
}

.stjerner{
  font-size:24px;
  margin-bottom:15px;
}

.anmeldelse-kort h3{
  color:#4da3ff;
  margin-bottom:12px;
}

.anmeldelse-kort p{
  color:#d6e6ff;
  line-height:1.6;
}

.anmeldelse-navn{
  margin-top:20px;
  font-weight:bold;
  color:#9bbce6;
}

/* ANIMATION */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(25px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBIL */

@media(max-width:700px){

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

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

  .hero-knapper{
    display:block;
  }

  .knap{
    width:100%;
    margin-bottom:15px;
  }

  .kort-grid{
    grid-template-columns:1fr;
  }

  .spil-grid{
    grid-template-columns:1fr;
  }

  .side-hero h1{
    font-size:42px;
  }

  .anmeldelse-kort{
    width:100%;
  }

}