body{
    font-family: system-ui, sans-serif;
    max-width: 900px;
    margin:auto;
    padding:40px;
    background:#111;
    color:#eee;
}

a{
    color:#7dcfff;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

h1,h2,h3{
    margin-top:40px;
}

header{
    margin-bottom:40px;
}

header img{
	height: 80px;
}

footer{
    margin-top:60px;
    font-size:0.9em;
    opacity:0.6;
}

.home-section{
    margin-top:72px;
}

.home-section h2{
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding-bottom:8px;
}

.games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));

    column-gap:32px;   /* afstand mellem kolonner */
    row-gap:48px;      /* afstand mellem rækker (vertical spacing) */
}

.game-card img{
    width:100%;
    border-radius:6px;
    display:block;
}

.game-card{
    display:block;
    background:#181818;
    padding:16px;
    border-radius:8px;
    text-decoration:none;
    color:#eee;
    height:100%;
    transition:all 0.2s ease;
}

.game-card p{
    margin-bottom:10px;
    line-height:1.5;
}

.game-card:hover{
    transform:translateY(-4px);
    box-shadow:0 6px 18px rgba(0,0,0,0.5);
}

.hero{
    padding:56px 40px;
    border-radius:12px;

    background:linear-gradient(
        180deg,
        rgba(125,207,255,0.08),
        rgba(125,207,255,0)
    );

    border:1px solid rgba(125,207,255,0.15);
    box-shadow:0 8px 30px rgba(0,0,0,0.4);
}

.eyebrow{
    text-transform:uppercase;
    letter-spacing:0.12em;
    font-size:0.85rem;
    opacity:0.6;
    margin-bottom:12px;
}

.hero h1{
    margin:0 0 12px 0;
    font-size:clamp(2.2rem, 5vw, 4rem);
}

.hero-text{
    max-width:700px;
    font-size:1.1rem;
    opacity:0.9;
}

.hero{
    padding:56px 40px;
    border-radius:12px;
    background:linear-gradient(
        180deg,
        rgba(125,207,255,0.08),
        rgba(125,207,255,0)
    );
}

.feature-media img{
    width:100%;
    display:block;
    border-radius:10px;
    box-shadow:0 6px 16px rgba(0,0,0,0.5);
}

.feature-content h3{
    margin-top:0;
}

.feature-card{
    display:grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap:24px;
    align-items:start;
    background:#181818;
    border:1px solid rgba(125,207,255,0.15);
    border-radius:12px;
    padding:20px;

    transition: all 0.2s ease;
    box-shadow:0 8px 22px rgba(0,0,0,0.45);
}

.feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(0,0,0,0.6);
}
.devlog-highlight{
    background:#181818;
    border-radius:12px;
    padding:20px;
}

.meta{
    opacity:0.65;
    font-size:0.95rem;
}

@media (max-width: 800px){
    .feature-card{
        grid-template-columns:1fr;
    }
}

nav a{
    margin-right:16px;
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#7dcfff;
    transition:width 0.2s ease;
}

nav a:hover::after{
    width:100%;
}

main{
    max-width:1100px;
    margin:0 auto;
}

.game-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.game-hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.game-hero-copy h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.game-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #c7d2e0;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.game-meta p {
  background: rgba(255,255,255,0.05);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin: 0;
}

.game-hero-media {
  display: flex;
  justify-content: flex-end;
}

.game-cover {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.game-content {
  max-width: 860px;
}

.game-content h2 {
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
}

.game-content p {
  margin: 0 0 1rem;
  line-height: 1.8;
}

.game-content ul {
  margin: 0 0 1.75rem 1.2rem;
  padding: 0;
}

.game-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.game-content img {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 1.8rem 0 2.2rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-content img:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.steam-widget-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.steam-widget-wrap {
  overflow-x: auto;
  max-width: 100%;
}

.back-link {
  margin-top: 2.5rem;
}

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

  .game-hero-media {
    justify-content: flex-start;
  }

  .game-cover {
    max-width: 280px;
  }
}

.game-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.game-gallery img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 12px;
  display: block;
}

@media (max-width: 700px) {
  .game-gallery {
    grid-template-columns: 1fr;
  }
}

.game-release {
  margin: 0.2rem 0 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.presskit {
  margin-top: 20px;
}

.presskit-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #1e90ff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.presskit-btn:hover {
  background: #63b3ff;
}