@charset "UTF-8";
/* ── Dizájn változók ── */
:root {
  --kh-black: #0a0a0a;
  --kh-dark: #141414;
  --kh-card: #1c1c1c;
  --kh-border: #2a2a2a;
  --kh-red: #c0392b;
  --kh-red-dim: #8e1a10;
  --kh-amber: #e67e22;
  --kh-white: #f0f0f0;
  --kh-light: #c0c0c0;
  --kh-muted: #888;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --fs-base: 16px;
}

html, body {
  min-height: 100vh;
  min-width: 300px;
}

/* ── Dizájn terv oldalak stílusa ── */
body {
  background: #111;
  color: var(--kh-white);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  display: flex;
  flex-direction: column;
}

/* ─── FEJLÉC MINTA ─── */
.kh-header {
  background: var(--kh-black);
  border-bottom: 2px solid var(--kh-red);
  padding: 0;
  overflow: hidden;
}

.kh-header .top-bar {
  background: #050505;
  border-bottom: 1px solid var(--kh-border);
  padding: 0.3rem 1.5rem !important;
  font-size: 0.78rem;
  color: var(--kh-muted);
}

.kh-header .main-nav {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  gap: 0.5rem 2rem;
  flex-wrap: wrap;
}

.kh-header .site-logo {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--kh-white);
  line-height: 1;
}

.kh-header .site-logo span {
  color: var(--kh-red);
}

.kh-header .nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.kh-header .nav-links a {
  color: var(--kh-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.kh-header .nav-links a:hover, .kh-header .nav-links a.active {
  color: var(--kh-white);
  border-bottom: 2px solid var(--kh-red);
  padding-bottom: 2px;
}

/* ─── HERO SZEKCIÓ ─── */
.kh-hero {
  background: linear-gradient(to bottom, #0a0a0a 0%, #1a0000 100%);
  border-bottom: 1px solid var(--kh-border);
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.kh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.03) 39px, rgba(255, 255, 255, 0.03) 40px);
}

.kh-hero .hero-tag {
  display: inline-block;
  background: var(--kh-red);
  color: #fff;
  font-size: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.8rem;
}

.kh-hero h1 {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: 700px;
  line-height: 1.15;
}

.kh-hero .hero-meta {
  font-size: 0.8rem;
  color: var(--kh-light);
  margin-top: 1rem;
}

/* ─── LÁBLÉC ─── */
.kh-footer {
  background: #050505;
  border-top: 2px solid var(--kh-border);
  padding: 2.5rem 1.5rem 1rem;
  margin-top: 1rem;
}

.kh-footer .footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.kh-footer .footer-logo span {
  color: var(--kh-red);
}

.kh-footer .footer-tagline {
  font-size: 0.8rem;
  color: var(--kh-light);
  margin-top: 0.3rem;
}

.kh-footer h6 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kh-red);
  margin-bottom: 0.8rem;
}

.kh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kh-footer ul li {
  margin-bottom: 0.4rem;
}

.kh-footer ul li a {
  color: var(--kh-light);
  text-decoration: none;
  font-size: 0.85rem;
}

.kh-footer ul li a:hover {
  color: var(--kh-white);
}

.kh-footer .footer-bottom {
  border-top: 1px solid var(--kh-border);
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--kh-muted);
}

main {
  flex-grow: 1;
}

h1 {
  font-size: 2rem;
  font-weight: 500;
}

h2 {
  font-size: 1.8rem;
  font-weight: 500;
}

h3 {
  font-size: 1.6rem;
  font-weight: 500;
}

h4 {
  font-size: 1.4rem;
  font-weight: 500;
}

h5 {
  font-size: 1.2rem;
  font-weight: 500;
}

h6 {
  font-size: 1.1rem;
  font-weight: 500;
}

a {
  color: var(--kh-muted);
  text-decoration: none;
}

a:hover {
  color: var(--kh-white);
  text-decoration: underline;
}

.user-select {
  -moz-user-select: all;
  user-select: all;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--kh-border);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5em;
}

code {
  -moz-user-select: all;
  user-select: all;
  background-color: black;
  border: 1px solid var(--kh-border);
  padding: 2px 5px;
}

.col-break {
  width: 100% !important;
  height: 0;
}

.page-content a {
  color: var(--kh-red);
}

.page-content a:hover {
  color: var(--kh-red);
}

.continue-link {
  margin-top: 2em;
}

@media (max-width: 576px) {
  .kh-header .nav-links {
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .kh-header .nav-links {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .kh-header .nav-links {
    gap: 0.5rem 1rem;
  }
}
@media (min-width: 1920px) {
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.3333%;
  }
}
.donation-text {
  text-align: center;
  color: var(--kh-amber);
}

.donation-text a {
  color: var(--kh-white);
}

.counter {
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 5px;
  background-color: var(--kh-amber);
  color: var(--kh-white);
  display: flex;
  gap: 5px;
  padding: 2px 5px;
  font-size: 0.78rem;
}

.counter:hover {
  text-decoration: none;
}

.list-blog {
  font-size: 0.8em;
}

.list-item {
  background: var(--kh-card);
  border: 1px solid var(--kh-border);
  border-radius: 3px;
  overflow: hidden;
  gap: 0;
  padding: 0.9rem 1rem;
  margin-bottom: 0.5rem;
}
.list-item h3 {
  margin: 0;
}
.list-item h3 a, .list-item h3 a:hover {
  color: var(--kh-white);
}

.list-blog-category {
  color: var(--kh-red);
  font-family: var(--font-head);
  font-size: 0.9em;
  text-transform: uppercase;
}

.list-blog-header-title {
  font-family: var(--font-head);
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0.3rem 0 0.4rem;
  line-height: 1.3;
  border: none;
  padding: 0;
}

.list-blog-date {
  font-size: 0.7em;
  color: var(--kh-muted);
}

.tags {
  font-size: 0.7em;
}
.tags a {
  color: var(--kh-white);
  background-color: var(--kh-red);
  border-radius: 2px;
  padding: 2px 4px;
}
.tags a:hover {
  color: var(--kh-white);
  background-color: var(--kh-red-dim);
  text-decoration: none;
}
.tags a.active {
  background-color: var(--kh-white);
  color: var(--kh-red-dim);
}
.tags a.active:hover {
  background-color: var(--kh-muted);
  color: var(--kh-white);
}

.blog-meta {
  font-size: 0.85em;
}

.tags-md {
  font-size: 0.85em;
}

.tags-lg {
  font-size: 1em;
}

.blog-sidebar {
  background: var(--kh-card);
  border: 1px solid var(--kh-border);
  border-radius: 3px;
  min-height: 33vh;
  padding: 0.9rem 1rem;
}
.blog-sidebar h4 {
  border: none;
  padding: 0;
}

.sidebar-content {
  margin-bottom: 1.5em;
}

.blog-caution {
  color: var(--kh-red);
  background-color: var(--kh-black);
  border: 1px solid var(--kh-red);
  font-size: 0.8rem;
  padding: 0.5rem;
  margin-top: 2rem;
}

.blog-card {
  display: block;
  background: var(--kh-card);
  border: 1px solid var(--kh-border);
  border-radius: 3px;
  overflow: hidden;
  height: 100%;
}

.blog-thumb {
  background: var(--kh-black);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  position: relative;
  border-right: none;
  border-bottom: 1px solid var(--kh-border);
  height: 236px;
  width: 50%;
  overflow: hidden;
}

.blog-thumb img {
  max-width: 100%;
  max-height: 100%;
}

.blog-card-body {
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.blog-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
  border: none;
}

.blog-card-title a {
  font-family: var(--font-head);
  color: var(--kh-white);
  text-decoration: none;
}

.blog-card-taxonomy {
  display: flex;
}

.blog-card-category {
  color: var(--kh-red);
  font-family: var(--font-head);
  font-size: 0.9em;
  text-transform: uppercase;
  flex-grow: 1;
}

.blog-card-category a {
  color: var(--kh-red);
  text-decoration: none;
}

.blog-card-category a:hover {
  text-decoration: underline;
}

.blog-card-content {
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--kh-muted);
}

.blog-card-list {
  font-size: 0.8rem;
}

.blog-content p img {
  max-width: 500px;
}

.blog-card-link, .blog-card-link2 {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.blog-card-link .blog-thumb, .blog-card-link2 .blog-thumb {
  border-bottom: none;
  border-right: 1px solid var(--kh-border);
}
.blog-card-link .blog-card-body, .blog-card-link2 .blog-card-body {
  flex-grow: 1;
}
.blog-card-link:hover, .blog-card-link:focus-within, .blog-card-link2:hover, .blog-card-link2:focus-within {
  border-color: var(--kh-red);
}

@media (max-width: 576px), (min-width: 992px) and (max-width: 1200px) {
  .blog-card-link, .blog-card-link2 {
    flex-direction: column;
  }
  .blog-card-link .blog-thumb, .blog-card-link .blog-card-body, .blog-card-link2 .blog-thumb, .blog-card-link2 .blog-card-body {
    width: unset;
  }
  .blog-card-link .blog-thumb, .blog-card-link2 .blog-thumb {
    border-right: none;
    border-bottom: 1px solid var(--kh-border);
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .blog-card-link {
    flex-direction: column;
  }
  .blog-card-link .blog-thumb, .blog-card-link .blog-card-body {
    width: unset;
  }
  .blog-card-link .blog-thumb {
    border-right: none;
    border-bottom: 1px solid var(--kh-border);
  }
}
blockquote {
  padding-left: 0.5rem;
  border-left: 2px solid var(--kh-red);
}

.kh-season-title {
  font-family: var(--font-head);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--kh-border);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* ─── VIDEÓKÁRTYA ─── */
.video-card {
  display: block;
  background: var(--kh-card);
  border: 1px solid var(--kh-border);
  border-radius: 3px;
  overflow: hidden;
  height: 100%;
}

.video-thumb {
  background: var(--kh-black);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  position: relative;
  border-right: none;
  border-bottom: 1px solid var(--kh-border);
  height: 236px;
  width: 50%;
  overflow: hidden;
}

.video-thumb img {
  max-width: 100%;
  max-height: 100%;
}

.video-thumb .play-btn {
  width: 52px;
  height: 52px;
  background: rgba(192, 57, 43, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.video-thumb .ep-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--kh-red);
  color: #fff;
  font-size: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 1px;
  padding: 0.15rem 0.5rem;
}

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

.video-card-body {
  padding: 0.8rem 1rem;
  width: 50%;
}

.video-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  border: none;
}

.video-card-meta {
  font-size: 0.75rem;
  color: var(--kh-muted);
}

.video-card-list {
  font-size: 0.8rem;
  flex-grow: 1;
}

.video-card-title a {
  font-family: var(--font-head);
  color: var(--kh-white);
  text-decoration: none;
}

.grav-youtube-wrapper {
  max-width: 576px;
}

.movie-link {
  float: right;
  margin-left: 0.5rem;
}

.video-card-player .video-thumb {
  width: unset;
  height: unset;
}

.video-card-link, .video-card-link2 {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.video-card-link .video-thumb, .video-card-link2 .video-thumb {
  border-bottom: none;
  border-right: 1px solid var(--kh-border);
}
.video-card-link .video-card-body, .video-card-link2 .video-card-body {
  flex-grow: 1;
}
.video-card-link:hover, .video-card-link:focus-within, .video-card-link2:hover, .video-card-link2:focus-within {
  border-color: var(--kh-red);
}

@media (max-width: 576px), (min-width: 992px) and (max-width: 1200px) {
  .video-card-link, .video-card-link2 {
    flex-direction: column;
  }
  .video-card-link .video-thumb, .video-card-link .video-card-body, .video-card-link2 .video-thumb, .video-card-link2 .video-card-body {
    width: unset;
  }
  .video-card-link .video-thumb, .video-card-link2 .video-thumb {
    border-right: none;
    border-bottom: 1px solid var(--kh-border);
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .video-card-link {
    flex-direction: column;
  }
  .video-card-link .video-thumb, .video-card-link .video-card-body {
    width: unset;
  }
  .video-card-link .video-thumb {
    border-right: none;
    border-bottom: 1px solid var(--kh-border);
  }
}
.kh-gallery img {
  max-width: 350px;
}

.kh-gallery .sl-image img {
  max-width: unset;
}

.sl-overlay {
  background-color: black !important;
  opacity: 0.9 !important;
}

.wiki-nav {
  background: #050505;
  border: 1px solid var(--kh-border);
  padding: 0.5rem;
  margin-bottom: 1em;
}

.wiki-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 0.5em 0.5em;
}

.wiki-letter {
  color: var(--kh-red);
  font-weight: bold;
  font-family: var(--font-head);
  line-height: 1;
  text-transform: uppercase;
  font-size: 1.5em;
  width: 40px;
}

.wiki-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-grow: 1;
}
.wiki-list li:after {
  content: ",";
  margin-right: 0.2em;
  color: var(--kh-muted);
}
.wiki-list li:last-child:after {
  content: "";
}
.wiki-list a {
  color: var(--kh-white);
}
.wiki-list a:hover {
  color: var(--kh-white);
}

.not-found-preview {
  background: var(--kh-dark);
  border: 1px solid var(--kh-border);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
}

.not-found-preview .code {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 700;
  color: var(--kh-red);
  line-height: 1;
  opacity: 0.3;
}

.not-found-preview h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.not-found-preview p {
  color: var(--kh-muted);
  font-size: 0.9rem;
}

/*# sourceMappingURL=theme.css.map */
