/********* CSS-Normalize */
/* 1) Box-Modell vereinheitlichen */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2) Standard-Margins entfernen */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
a {
  margin: 0;
  padding: 0;
}

/* 3) Body-Grundeinstellungen */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-size: 16px;
}

body.nav-open {
  overflow: hidden;
}

/* 4) Bilder & Media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5) Formulare erben Font */
input,
button,
textarea,
select {
  font: inherit;
}

/* 6) Überschriften klarer */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

/* 7) Links ohne Unterstreichung */
a {
  text-decoration: none;
}

a,
a:visited,
a:hover,
a:active {
  color: var(--logo-color);
}

a:hover {
  text-shadow: 0 0 10px #FFF;
}

input:focus {
  outline: none;
  box-shadow: none;
}

/********* Standard */

/* 1. Globaler Standard (Firefox & moderne Browser ab 2024/2025) */
* {
  /* Daumen-Farbe | Hintergrund-Farbe (Track) */
  scrollbar-color: #888 rgb(21, 21, 21);
  scrollbar-width: auto;
  /* oder 'thin' für eine schmalere Bar */
}

/* 2. Chromium-Browser (Chrome, Edge, Safari, Opera) */
/* Die gesamte Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  /* Für horizontale Scrollbars */
}

/* Der Hintergrund (Track) */
::-webkit-scrollbar-track {
  background: rgb(26, 26, 26);
}

/* Der bewegliche Griff (Thumb) */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  /* Optional: Ein kleiner Rahmen erzeugt einen 'Abstand' zum Hintergrund */
  border: 3px solid rgb(50, 50, 50);
}

/* Hover-Effekt für bessere UX */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


@font-face {
  font-family: 'Orbitron';
  /* Frei wählbarer Name */
  src: url('../../fonts/Orbitron-Regular.woff2') format('woff2'),
    /* Bevorzugtes Format */
    url('../../fonts/Orbitron-Regular.ttf') format('truetype');
  /* Fallback für alte Browser */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* Verhindert unsichtbaren Text beim Laden */
}

@font-face {
  font-family: 'Iceland';
  /* Frei wählbarer Name */
  src: url('../../fonts/Iceland-Regular.ttf') format('truetype');
  /* Fallback für alte Browser */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* Verhindert unsichtbaren Text beim Laden */
}

html {
  background-color: black;
  font-size: 1rem;
  color: white;
  scroll-behavior: smooth;
  box-sizing: border-box;
  scrollbar-color: var(--scrollbar-back);
}

html,
body {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.6rem;
}

article h2 {
  font-size: 1.3rem;
}

.grid_1 h2,
.goofinfo h2 {
  font-size: 20px;
  font-weight: unset;
  line-height: unset;
}

small {
  font-size: 1.3rem;
}

summary {
  margin-bottom: 10px;
  font-weight: bold;
}

.wrapper_movie_data span {
  text-align: left;
}

hr {
  border: 1px solid rgb(98, 98, 98);
}

details {
  padding: 0 !important;
}