:root {
  /* DARK MODE COLORS (default) */
  --bg: #0b0f1a;
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #a1a1aa;
  --accent: #00ffd5;
  --radius: 20px;
}

/* LIGHT MODE COLORS */
body.light {
  --bg: #f5f7fb;
  --glass: rgba(255, 255, 255, 0.7);
  --border: rgba(0, 0, 0, 0.1);
  --text: #111;
  --muted: #555;
  --accent: #0077ff;
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow-x: hidden;
}

/* 🌈 PREMIUM BACKGROUND GLOW */
body::before {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  filter: blur(120px);
  z-index: -1;
  transition: background 0.3s ease;
  background: radial-gradient(circle, rgba(0,255,200,0.15), transparent 70%);
}

body.light::before {
  background: radial-gradient(circle, rgba(0,120,255,0.12), transparent 70%);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border 0.3s ease;
}

.navbar a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: var(--accent);
}

/* CONTAINER */
.container {
  width: 70%;
  margin: 60px auto;
}

/* TYPOGRAPHY */
h1 {
  font-size: 44px;
}

h2 {
  font-size: 24px;
}

p {
  line-height: 1.6;
}





/* HERO IMAGE */


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.hero-container {
  height: 420px;          /* fixed height */
  width: 100%;            /* full width */
  overflow: hidden;       /* crop overflow */
  border-radius: 20px;    /* optional rounding */
  position: relative;
}

.hero-img {
  height: 100%;           /* fill container height */
  width: 100%;            /* fill container width */
  object-fit: cover;      /* cover entire container */
  object-position: top;   /* align top of image */
}

/* ARTICLE DETAIL */
.article {
  width: 70%;
  margin: -120px auto 60px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px;
  transition: background 0.3s ease, border 0.3s ease;
}

/* BUTTON */
.button {
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .container, .article {
    width: 90%;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 20px;
  }

  .article-card {
    flex-direction: column;
  }

  .article-card img {
    width: 100%;
    height: 200px;
  }

  h1 {
    font-size: 30px;
  }
}

.article-date {
  display: inline-block;
  font-size: 0.75em;
  color: #fff;
  background: rgba(0, 150, 255, 0.7);
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.light .article-date {
  color: #111;
  background: rgba(0, 150, 255, 0.3);
}

.page-header {
  text-align: center;
  margin: 40px 20px 20px;
}

.page-header h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1em;
  color: #aaa;
}

/* Light mode */
.light .page-header p {
  color: #555;
}

.article-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  background: #1e90ff; /* zelfde blauw als datum */
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.article-badge:hover {
  background: #0f6ad9;
  transform: translateY(-2px);
}
.buy-button {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  background: #d32f2f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.buy-button:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}
.light .buy-button {
  background: #e53935;
}

.video-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
}

.video-container iframe {
  width: 100%;
  height: 500px;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .hero {
    height: 250px;
  }
}
/*FLOATING Card*/
.floating-card {
  position: fixed;          
  top: 125px;                
  right: 20px;              
  width: 280px;             
  background-color: rgba(30, 30, 30, 0.85); /* semi-transparant */
  color: #fff;
  border-radius: 12px;
  padding: 12px;            /* iets compacter */
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;            
  font-family: 'Inter', sans-serif;
}

.floating-card .product-label {
  font-size: 0.8rem;
  color: #ccc;
  margin-bottom: 4px;
}

.floating-card .product-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.floating-card .store-label {
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.floating-card .amazon-grid {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.floating-card .amazon-link {
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  text-decoration: none;
  padding: 3px 6px;       /* kleiner gemaakt */
  border-radius: 5px;
  font-size: 0.8rem;       /* iets kleiner */
  text-align: center;
  white-space: nowrap;     
  transition: background 0.2s;
}

.floating-card .amazon-link:hover {
  background: #b71c1c;
}
.floating-card .ps-link {
  display: inline-block;
  background: #1976d2;   /* blauw voor PlayStation */
  color: #fff;
  text-decoration: none;
  padding: 3px 6px;       /* kleiner dan standaard */
  border-radius: 5px;
  font-size: 0.8rem;      /* kleinere tekst */
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s;
}

.floating-card .ps-link:hover {
  background: #0d47a1;
}
/* Media query voor kleine schermen */
@media (max-width: 1024px) {
  .floating-card {
    position: relative; /* niet meer fixed */
    top: 0;
    right: 0;
    max-width: 100%;
    margin: 10px auto 20px auto; /* ruimte boven en onder */
    display: block;
    box-shadow: none; /* optioneel, minder opvallend */
  }

  .floating-card .store-buttons {
    justify-content: space-around; /* knoppen netjes verdelen */
  }
}
/* Navbar logo */
.navbar .logo img {
  height: 65px;        /* adjust height to fit menu */
  width: auto;         /* keep aspect ratio */
  display: block;
}

/* Optional: smaller logo on mobile */
@media (max-width: 480px) {
  .navbar .logo img {
    height: 45px;
  }
}


