/* Fonts */
@font-face {
  font-family: 'SG';
  src: url('../fonts/EBGaramond-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'LUCIDASANS';
  src: url('../fonts/LUCIDASANS-HUN.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Popup alapstílus */
.popup {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: var(--color1);
  border: 5px solid var(--color1-light);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px 10px;
  width: 90%;
  max-width: 400px;
  z-index: 1040;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup.show {
  display: flex;
  animation: slideInLeft .8s forwards;
}

.popup.hide {
  animation: slideOutLeft .8s forwards;
}

.popup-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.popup-content img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.text-content {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.text-content p {
  margin: 0;
  font-size: clamp(1rem, 1.125rem, 1.25rem);
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.text-content a {
  margin-top: 15px;
  background: var(--color4);
  color: #fff;
  padding: 7px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: all .3s;
  width: 150px;
}

.text-content a:hover {
  background: var(--color3);
}

/* BÉTA POPUP */
#betaPopup {
  z-index: 1040;
}

#betaPopup .text-content p {
  font-size: clamp(0.875rem, 1rem, 1.125rem);
}

#betaPopup img {
  border-radius: 0 !important;
}

.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  border: none;
  font-size: clamp(1rem, 1.125rem, 1.25rem);
  cursor: pointer;
  padding: 5px 7px;
  background: var(--color4);
  color: #fff;
  transition: all .3s;
  border-bottom-left-radius: 5px;
  z-index: 1000;
}

.close-btn:hover {
  background: var(--color3);
}

.close-btn i {
  font-size: clamp(0.75rem, 0.75rem, 1rem);
}

/* Default Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "LUCIDASANS", sans-serif;
}

body {
  background: var(--color2);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: #fff;
}

::selection {
  background: var(--color3);
  color: #fff;
}

.kiemeles {
  color: var(--color4);
  font-weight: 700;
}

#team, #formazoTeszt, #forditoTeszt, #lektorTeszt {
  scroll-margin-top: 80px;
}

/* Colors */
:root {
  /* DARK THEME */
  --dark-color1: #15003b;
  --dark-color1-light: #1f0058;
  --dark-color2: #04041b;
  --dark-color3: #a70038;
  --dark-color4: #e91e63;

  /* LIGHT THEME */
  --light-color1: #092635;
  --light-color1-light: #0d3142;
  --light-color2: #275266;
  --light-color3: #e6a4b7;
  --light-color4: #f33e71;

  --color1: var(--light-color1);
  --color1-light: var(--light-color1-light);
  --color2: var(--light-color2);
  --color3: var(--light-color3);
  --color4: var(--light-color4);

  --transition-speed: 0.3s;
}

html[data-theme="dark"] {
  --color1: var(--dark-color1);
  --color1-light: var(--dark-color1-light);
  --color2: var(--dark-color2);
  --color3: var(--dark-color3);
  --color4: var(--dark-color4);
}

/* Theme Icon */
.theme-icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.theme-icon:hover {
  color: var(--color4);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: none;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color4);
  border-radius: 4px;
  border: none;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color3);
}


/* RESPONSIVE WEB */
/* CONTAINER */
.container {
  width: 100%;
  padding-right: 2%;
  padding-left: 2%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 95%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 90%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 85%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 80%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 75%;
  }
}


/* COL */
.col {
  flex: 1;
  max-width: 100%;
}
.col-1 { flex: 0 0 auto; width: 8.333333%; }
.col-2 { flex: 0 0 auto; width: 16.666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.333333%; }
.col-5 { flex: 0 0 auto; width: 41.666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.333333%; }
.col-8 { flex: 0 0 auto; width: 66.666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* COL-SM */
@media (min-width: 576px) {
  .col-sm {
    flex: 1;
    max-width: 100%;
  }
  .col-sm-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-sm-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
  .col-sm-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-sm-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-sm-9 { flex: 0 0 auto; width: 75%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-sm-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

/* COL-MD */
@media (min-width: 768px) {
  .col-md {
    flex: 1;
    max-width: 100%;
  }
  .col-md-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-md-12 { flex: 0 0 auto; width: 100%; }
}

/* COL-LG */
@media (min-width: 992px) {
  .col-lg {
    flex: 1;
    max-width: 100%;
  }
  .col-lg-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

/* COL-XL */
@media (min-width: 1200px) {
  .col-xl {
    flex: 1;
    max-width: 100%;
  }
  .col-xl-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-xl-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
  .col-xl-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-xl-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-xl-12 { flex: 0 0 auto; width: 100%; }
}

/* COL-XXL */
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1;
    max-width: 100%;
  }
  .col-xxl-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-xxl-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-xxl-3 { flex: 0 0 auto; width: 25%; }
  .col-xxl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xxl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xxl-6 { flex: 0 0 auto; width: 50%; }
  .col-xxl-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-xxl-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-xxl-9 { flex: 0 0 auto; width: 75%; }
  .col-xxl-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-xxl-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-xxl-12 { flex: 0 0 auto; width: 100%; }
}

/* ROW */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 1124;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d16, #1b1b2f 40%, #11111d);
  color: #fff;
  overflow: hidden;
  transition: opacity 0.75s, visibility 0.75s;
}
.loader--hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.5);
  transition: opacity 0.75s, visibility 0.75s, transform 0.75s;
}
.loader h1 {
  font-size: clamp(2rem, 2.5rem, 3rem);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}
.loader h1 span {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.loader h1 span:nth-child(1) { animation-delay: 0s; }
.loader h1 span:nth-child(2) { animation-delay: .1s; }
.loader h1 span:nth-child(3) { animation-delay: .2s; }
.loader h1 span:nth-child(4) { animation-delay: .3s; }
.loader h1 span:nth-child(5) { animation-delay: .4s; }
.loader h1 span:nth-child(6) { animation-delay: .5s; }
.loader h1 span:nth-child(7) { animation-delay: .6s; }
.loader h1 span:nth-child(8) { animation-delay: .7s; }
.loader h1 span:nth-child(9) { animation-delay: .8s; }
.loader h1 span:nth-child(10) { animation-delay: .9s; }
.loader h1 span:nth-child(11) { animation-delay: 1.0s; }
.loader h1 span:nth-child(12) { animation-delay: 1.1s; }
.loader h1 span:nth-child(13) { animation-delay: 1.2s; }
.loader h1 span:nth-child(14) { animation-delay: 1.3s; }

.loader::after {
  content: "";
  width: 70px;
  height: 70px;
  border: 7px solid #fff;
  border-top-color: #ff2a71;
  border-radius: 50%;
  animation: rotateLoader 0.6s linear infinite;
}

@media only screen and (max-width: 768px) {
  .loader h1 {
    font-size: clamp(1.25rem, 1.5rem, 2rem);
  }

  .loader::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top-color: #ff2a71;
    border-radius: 50%;
    animation: rotateLoader .6s linear infinite;
  }
}

@keyframes waveEffect {
  0% {
      opacity: 0.3;
      transform: translateY(10px);
  }
  100% {
      opacity: 1;
      transform: translateY(-10px);
  }
}

@keyframes rotateLoader {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}
/* Back To Top Button */
#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  width: 50px;
  height: 50px;
  font-size: clamp(0.875rem, 1rem, 1.125rem);
  border: none;
  background: var(--color4);
  color: #fff;
  box-shadow: 0 10px 20px 5px rgba(0, 0, 0, .5);
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 50%;
  transition: opacity 0.3s, transform 0.3s;
  text-align: center;
  line-height: 50px;
  opacity: 0;
  transform: translateY(100px);
  display: none;
  transition: all .5s;
}

#backToTopBtn.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

#backToTopBtn.hide {
  opacity: 0;
  transform: translateY(100px);
}

#backToTopBtn i {
  font-size: clamp(1.125rem, 1.5rem, 1.75rem);
}

#backToTopBtn:hover {
  background: var(--color3);
}

/* View 768px - Back To Top Button */
@media only screen and (max-width: 768px) {
  #backToTopBtn {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/* Beta Version */
.beta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--color4);
  color: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 3px;
  font-size: clamp(1.125rem, 1.5rem, 1.75rem);
  padding: 3px 7px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* View 768px - Beta Version */
@media only screen and (max-width: 768px) {
  .beta {
    font-size: clamp(1rem, 1.125rem, 1.25rem);
  }
}

/* Error */
.hiba {
  margin: 20px auto !important;
  padding: 25px !important;
  border-radius: 10px !important;
  text-align: center !important;
}

.hiba img {
  width: 150px !important;
  height: 150px !important;
  margin: 10px auto !important;
}

.hiba h2 {
  font-size: clamp(1.5rem, 2rem, 3rem) !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

.hiba p {
  font-size: clamp(1rem, 1.5rem, 2rem) !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important; 
}

.hiba a {
  border-radius: 7px !important;
  font-size: clamp(1rem, 1.5rem, 2rem) !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  padding: 7px 14px !important;
  background: var(--color4) !important;
  transition: all .3s !important;
}

.hiba a:hover {
  background: var(--color3);
}

/* View 768px - Error */
@media only screen and (max-width: 768px) {
  .hiba {
    padding: 25px;
    margin: 20px;
  }

  .hiba h2 {
    font-size: 1.7em;
  }

  .hiba p {
    font-size: clamp(1rem, 1.2rem, 1.5rem);
  }

  .hiba a {
    font-size: 1.3em;
  }
}

/* Main Page */
.title h1 {
  margin-top: 70px;
  font-size: clamp(2rem, 3rem, 4rem);
  color: #fff;
  margin-bottom: 10px;
}

.title p {
  color: #dbdbdb;
  font-size: clamp(1rem, 1.1rem, 1.3rem);
  display: inline;
}

#main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vw / 2.400390625);
  overflow-x: hidden;
  overflow-y: hidden;
}

#main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  pointer-events: none;
}

#main h2 {
  position: absolute;
  font-size: 12vw;
  color: #fff;
  text-shadow: 5px 5px 15px rgba(0,0,0,1);
}

#main #background {
  position: fixed;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  /* View 768px Main Page */
  .title h1 {
    margin-top: 70px;
    font-size: clamp(2rem, 3rem, 4rem);
    color: #fff;
    margin-bottom: 10px;
  }

  .title p {
    color: #dbdbdb;
    font-size: clamp(1rem, 1.1rem, 1.3rem);
    display: inline;
  }
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  background: var(--color1);
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1024;
}

nav > ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav > ul > li {
  text-align: center;
  line-height: 4rem;
  list-style-type: none;
  font-size: clamp(1rem, 1.1rem, 1.3rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 0 2rem;
}

nav ul li ul{
  display: flex;
  justify-content: center;
  width: 100%;
}
nav ul li ul li {
  padding: 0 1rem;
  display: inline;
  text-align: center;
  list-style-type: square;
  font-size: clamp(1rem, 1.1rem, 1.3rem);
  font-weight: 500;
  opacity: 0;
}
nav ul li:hover {
  cursor: pointer;
}
nav ul li:hover > ul {
  display: block;
  width: 100%;
  background: var(--color1-light);
  -webkit-box-shadow: 0 20px 15px 10px rgba(0,0,0,0.27);
  -moz-box-shadow: 0 20px 15px 10px rgba(0,0,0,0.27);
  box-shadow: 0 20px 15px 10px rgba(0,0,0,0.27);
  animation: 0.3s ease-out alt-menu-appear;
}
nav ul li:hover > ul li{
  animation: 0.3s ease-out 0.3s alt-menu-items-appear forwards;
}
@keyframes alt-menu-appear {
  from {height: 0;}
  to {height: 4rem;}
}
@keyframes alt-menu-items-appear {
  from {opacity: 0;}
  to {opacity: 1;}
}
nav ul li:hover > a {
  color: var(--color4);
}
nav > ul > li > a {
  cursor: pointer;
  display: block;
  outline: none;
  width: 100%;
  text-decoration: none;
}
nav > ul > li {
  float: left;
}
nav a {
  color: white;
  transition: all .3s;
}
nav > ul li ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 2000;
}
nav > ul li ul li > a {
  text-decoration: none;
}
[type="checkbox"],
label {
  display: none;
}
@media screen and (max-width: 1175px) {
  nav ul {
    display: none;
    max-height: 65vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  [type="checkbox"]:checked ~ ul {
    display: block;
    z-index: 9999;
    position: absolute;
    max-height: 65vh;
    overflow-y: auto;
    overflow-x: hidden;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--color1-light);
    animation-name: ul-down;
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
  }
  [type="checkbox"]:checked ~ ul li {
    animation-name: items-in;
    animation-timing-function: ease-out;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
  }
  [type="checkbox"]:checked ~ ul li:nth-of-type(1) {
    animation-delay: 0.2s;
  }
  [type="checkbox"]:checked ~ ul li:nth-of-type(2) {
    animation-delay: 0.3s;
  }
  [type="checkbox"]:checked ~ ul li:nth-of-type(3) {
    animation-delay: 0.4s;
  }
  [type="checkbox"]:checked ~ ul li:nth-of-type(4) {
    animation-delay: 0.5s;
  }
  [type="checkbox"]:checked ~ ul li:nth-of-type(5) {
    animation-delay: 0.6s;
  }
  [type="checkbox"]:checked ~ ul li:nth-of-type(6) {
    animation-delay: 0.7s;
  }
  [type="checkbox"]:checked ~ ul li:nth-of-type(7) {
    animation-delay: 0.8s;
  }
  nav a {
    color: white;
  }
  nav ul li,
  nav ul li ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
    padding-left: 3rem;
    font-size: clamp(1rem, 1.2rem, 1.5rem);
    font-weight: 500;
    opacity: 0;
  }
  nav > ul li ul {
    display: block;
    position: relative;
    width: 100%;
    z-index: 9999;
    float: none;
  }
  nav ul li:hover > ul {
    box-shadow: none;
    animation: none;
  }
  nav .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  nav .hamburger-lines {
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  nav .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #ffffff;
  }
  nav .hamburger-lines .line1 {
    transform-origin: 0 0;
    transition: transform 0.4s ease-in-out;
  }
  nav .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  nav .hamburger-lines .line3 {
    transform-origin: 0 100%;
    transition: transform 0.4s ease-in-out;
  }
  nav .filter-old input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  nav .filter-old input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  nav .filter-old input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
  @keyframes ul-down {
    from {opacity: 0; margin-right: 3rem;}
    to {opacity: 100%; margin-right: 0;}
  }
  @keyframes items-in {
    from {opacity: 0; margin-left: -10rem;}
    to {opacity: 100%; margin-left: 0;}
  }
}

/* Footer */
.footer .footer-line {
  height: 4px;
  background: var(--color4);
  opacity: 1;
  border: none;
  border-radius: 5px;
  width: 80%;
  margin: 25px auto;
}

.footer-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-title h1{
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4rem, 3rem);
}

.footer-title img {
  height: 70px;
  border-radius: 50%;
  margin-right: 10px;
}

.footer {
  background: var(--color1);
  color: #fff;
  margin-top: auto;
  position: relative;
  clear: both;
}

.footer-wave-svg {
  background: transparent;
  display: block;
  height: 30px;
  position: relative;
  top: -1px;
  width: 100%;
  height: auto;
}

.footer-wave-path {
  fill: var(--color2);
}

.footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 250px;
  position: relative;
}

.footer-content-column {
  box-sizing: border-box;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  color: #fff;
}

.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
}

.footer-content-column ul li p { 
  display: inline-flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .footer-content-column {
    text-align: center;
  }

  .footer-title {
    display: block;
    text-align: center;
  }

}

.menu-item a:hover {
  color: var(--color4);
}

.partnerLogo {
  height: 25px;
  width: 25px;
  margin-right: 5px;
}

.footer-menu {
  margin-top: 30px;
}

.footer-menu-name {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin: 0;
  text-transform: uppercase;
}

.footer-menu-list {
  list-style: none;
  margin-bottom: 0;
  margin-top: 10px;
  padding-left: 0;
}

.footer-menu-list li {
  margin-top: 5px;
}

.footer-discord-description {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 22px;
}

.footer-discord-action {
  margin-top: 30px;
}

.footer-discord-title {
  color: #fff;
  font-size: clamp(0.875rem, 0.875rem, 1.125rem);
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}

.footer-copyright {
  color: #fff;
  padding: 10px 30px 40px;
  text-align: center;
  margin-top: 20px;
  line-height: 50px;
}

.footer-copyright-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

.footer-copyright-link {
  color: #fff;
  text-decoration: none;
}

@media (min-width:320px) and (max-width:479px)  {
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    position: relative;
  }
}

@media (min-width:480px) and (max-width:599px)  {
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    position: relative;
  }
}

@media (min-width:600px) and (max-width: 800px)  {
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    position: relative;
  }
}

@media (min-width:801px)  {
}
@media (min-width:1025px) {
}
@media (min-width:1281px) {
}
@media (min-width: 760px) {
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    position: relative;
  }

  .footer-wave-svg {
    height: 50px;
  }

  .footer-content-column {
    width: 24.99%;
  }
}

@media (min-width: 568px) {
}

.social-container {
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
}

.social-icons {
  padding: 0;
  list-style: none;
  margin: 0 auto;
  text-align: left;
}

.social-icons li {
  display: inline-block;
  margin: 0.15em;
  position: relative;
  font-size: clamp(0.8rem, 1rem, 1.2rem);
}

.social-icons a {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}

.social-icons a::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s !important;
}

/* DC */
.dc::before { background: #5865F2 !important; }
.dc:hover::before { background: #0004ff !important; }
/* Instagram */
.insta::before { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4) !important; }
.insta:hover::before { background: linear-gradient(45deg, #df6711, #b90f5c, #50107a, #2d35a1) !important; }
/* X & Tiktok */
.x::before { background: #000 !important; }
.x:hover::before { background: #222 !important; }
/* Facebook */
.face::before { background: #1877f2 !important; }
.face:hover::before { background: #145dbf !important; }


.social-icons i {
  color: #fff;
  position: absolute;
  font-size: clamp(1rem, 1.2rem, 1.5rem);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
  .social-icons {
    text-align: center;
  }
}

/* Content */
#content {
  background: var(--color2);
  padding: 5vw;
}

/* News - Home Page */
#news-container {
  position: relative;
  top: 0;
  left: 0;
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.news-content {
  color: #fff;
  max-height: 470px;
  overflow-y: auto;
  padding-right: 10px;
}

#news-section-header {
  margin-bottom: 1rem;
  width: 100%;
}

#news-section-header h1 {
  color: #fff;
}

#news-section-header > a {
  color: #dbdbdb;
  font-size: clamp(1rem, 1.1rem, 1.3rem);
  display: inline;
}

#more-news-button,
#more-news-button-mobile {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  float: right;
  color: #fff;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
}

#more-news-button:hover,
#more-news-button-mobile:hover {
  cursor: pointer;
  text-decoration: underline solid #fff;
}

#more-news-button i,
#more-news-button-mobile i {
  margin-right: 0.5rem;
}

#more-news-button-mobile {
  margin-top: 1rem;
  margin-bottom: 0;
  width: 100%;
  display: none;
}

.news-item {
  width: 100%;
  height: 44vh;
  overflow: -moz-hidden-unscrollable;
  overflow: hidden;
  background: var(--color1-light);
  border-radius: 5px;
}

.news-items {
  display: flex;
  position: relative;
}

.news-item {
  display: none;
  width: 100%
}

.news-item.active {
  display: block;
}

.news-indicator {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: inline-block;
  cursor: pointer;
  transition: all .3s;
}

.dot:hover {
  background: #999;
}

.dot.active {
  background: var(--color4);
  transition: all .3s;
}

.dot.active:hover {
  background: var(--color3);
}

#news-left,
#news-right {
  cursor: pointer;
  height: 100%;
  width: 3vw;
  position: absolute;
  opacity: .75;
  transition: all .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: clamp(1.5rem, 2rem, 2.5rem);
}

#news-left:hover,
#news-right:hover {
  color: var(--color4);
  opacity: 1;
}

#news-left {
  top: 0;
  left: -3vw;
}

#news-right {
  top: 0;
  right: -3vw;
}

.news-img {
  width: 25%;
  height: 100%;
  float: left;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  border-radius: 5px 0 0 5px;
}

.news-data {
  padding: 1vh 1vw 1vh calc(25% + 1vw);
}

.news-header {
  display: grid;
  display: -ms-grid;
  display: -moz-grid;
  grid-template-columns: 60% 40%;
}

.news-header h1 {
  font-size: clamp(1.5rem, 2rem, 2.5rem);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .3s;
}

.news-header a h1:hover {
  color: var(--color4);
}

.news-header .news-header-info {
  display: grid;
  display: -ms-grid;
  display: -moz-grid;
  grid-template-columns: 50% 50%;
}

.news-header .news-header-info .news-profile,
.news-header .news-header-info .news-date {
  display: flex;
  color: #fff;
  font-size: clamp(1rem, 1.1rem, 1.3rem);
  align-items: center;
  justify-content: right;
}

.news-header .news-header-info .news-profile a {
  transition: all .3s;
}

.news-header .news-header-info .news-profile a:hover {
  color: var(--color4);
}

.news-header .news-header-info .news-profile img {
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--color4);
  margin-right: 0.3vw;
}

.news-header .news-header-info .news-date i {
  margin-right: 0.3vw;
}

.news-item hr {
  border: none;
  background: var(--color4);
  height: 3px;
  opacity: 1;
  border-radius: 3px;
  width: 100%;
  margin: 1vh 0;
}

/* View 768px - News */
@media only screen and (max-width: 768px) {
  .news-item {
    height: 80vh;
  }

  .news-img {
    width: 100%;
    height: 25%;
    border-radius: 5px 5px 0 0;
    float: none;
  }

  .news-data {
    padding: 0 1vw 1vh 1vw;
  }

  .news-header {
    display: block;
  }

  .news-header h1 {
    text-align: center;
  }

  .news-header .news-header-info {
    margin: .5vh 0;
    padding: 0 3vw;
  }

  .news-header .news-header-info .news-date {
    justify-content: left;
  }

  .news-header .news-header-info .news-profile img,
  .news-header .news-header-info .news-date i {
    margin-right: 1.5vw;
  }

  #more-news-button,
  #news-section-header p:nth-of-type(2),
  #news-left,
  #news-right {
    display: none;
  }

  #more-news-button-mobile {
    display: flex;
  }
}

/* All News */
.all-news-container {
  margin: 70px;
}

.all-news-container h1 {
  font-size: clamp(2rem, 3rem, 4rem);
  text-align: center;
}

.all-news-item {
  position: relative;
  width: 90%;
  height: 350px;
  margin: 20px auto;
  overflow: hidden;
}

.all-news-container .news-background {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.all-news-title {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: clamp(1.125rem, 1.5rem, 1.75rem);
  background: var(--color1-light);
  padding: 10px;
  max-width: 80%;
  flex-wrap: wrap;
  border-top-right-radius: 7px;
  border-left: 5px solid var(--color4);
}

/* View 768px- All News */
@media only screen and (max-width: 768px) {
  .all-news-container {
    margin: 70px auto;
  }

  .all-news-item {
    width: 95%;
  }
}

/* Full News */
.full-news-container {
  margin: 30px auto;
  padding: 20px;
}

.full-news-container #banner .user a {
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.5rem, 1.75rem);
  margin-left: 10px;
  letter-spacing: 1px;
  color: #fff;
  transition: all .3s;
}

.full-news-container #banner .user a:hover {
  color: var(--color4);
}

.full-news-container #banner img {
  display: flex;
  border-radius: 5px;
  justify-content: flex-start;
  object-fit: cover;
  padding: 0;
  width: 300px;
  height: 300px;
  margin-bottom: 15px;
}

.full-news-container hr {
  border: none;
  background: var(--color4);
  height: 2px;
  opacity: 1;
  border-radius: 2px;
  width: 99%;
  margin: 20px auto;
}

.full-news-container #banner .bal-oldal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.full-news-container #banner .background-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 15px;
}

.full-news-container #banner .user {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.full-news-container #banner .user img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid var(--color4);
  padding: 2px;
  margin-bottom: 5px;
}

.full-news-container #full-content h2 {
  font-size: clamp(2rem, 3rem, 4rem);
  margin-bottom: 10px;
  padding-left: 10px;
  text-align: left;
}

.full-news-container .headline-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.full-news-container .headline-container h2 {
  margin: 0;
}

.full-news-container .headline-container .date {
  margin-left: 10px;
  font-weight: 700;
}

.full-news-container #full-content p {
  margin-bottom: 10px;
  padding: 0 10px;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
  text-align: justify;
}

/* View 768px- Full News */
@media only screen and (max-width: 768px) {
  .full-news-container #full-content p {
    text-align: left;
    padding: 0 20px;
  }
}

/* User Cards */
.card-container {
  background: var(--color1-light);
  border-radius: 5px;
  color: #fff;
  padding: 0;
  position: relative;
  width: 300px;
  height: 300px;
  max-width: 100%;
  text-align: center;
  display: block;
  margin: 10px;
}

.card-container p {
  font-size: clamp(1.5rem, 2.1rem, 2.5rem);

  padding: 7px;
  font-weight: 700;
  letter-spacing: 2px;
}

.card-container img{
  width: 40%;
  height: 40%;
  margin-top: 15px;
  border: 3px solid var(--color4);
  box-shadow: 0 10px 20px 5px rgba(0, 0, 0, .5);
  position: relative;
  border-radius: 50%;
  z-index: 2;
  padding: 3px;
  transition: .5s;
  object-fit: cover;
}

.card-container .roles {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
}

.card-container .role {
  color: #fff;
  background: var(--color4);
  border-radius: 2px;
  font-size: clamp(1rem, 1.2rem, 1.5rem);
  padding: 5px 8px;
  font-weight: 600;
  white-space: nowrap; 
}

.card-center {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.card-wrapped {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
}

@media (max-width: 830px) {
  .card-wrapped {
      margin: 10px auto;
  }
}

/* ANIME CARD */
.anime-container {
  display: block;
  position: relative;
  gap: 20px;
}

.anime-card {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 10px;
}

.card-header {
  position: relative;
  width: 100%;
  height: auto;
  height: 350px;
  object-fit: cover;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .75);
}

.card-img {
  border-radius: 5px;
}

.card-img img {
  object-fit: cover;
  height: 350px;
  width: 200px;
  border-radius: 5px;
}

.anime-card .card-header {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 5px;
}

.anime-card .card-img img {
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 5px;
}

.anime-card .card-header:hover .card-img img {
  transform: scale(1.1);
  filter: brightness(0.4);
}

.anime-card .anime-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.anime-card .anime-button i {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.anime-card .card-header:hover .anime-button {
  opacity: 1;
}

.card-body {
  padding: 10px 0;
  margin: 0 auto;
  display: block;
}

.badge {
  color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  font-size: clamp(0.875rem, 0.875rem, 1.125rem);
  border-radius: 5px;
}

.episode-days {
  font-size: clamp(0.875rem, 1rem, 1.125rem);
  position: absolute;
  top: 2%;
  left: 4%;
  font-weight: 600;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .75);
}

.badge.mon { background: #B30000 !important; }
.badge.tue { background: #53221b !important; }
.badge.wed { background: #105000 !important; }
.badge.thu { background: #470081 !important; }
.badge.fri { background: #00615F !important; }
.badge.sat { background: #000279 !important; }
.badge.sun { background: #AD0062 !important; }

.episode-number {
  background: var(--color4);
  font-weight: 700;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .75);
}

.badge-holder {
  display: flex;
  padding: 0 10px;
}

.card-header .badge-holder {
  position: absolute;
  bottom: 10%;
}

.card-body .badge-holder {
  justify-self: flex-start;
  padding: 0;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.card-body a {
  text-decoration: none;
}

.card-body a p {
  max-width: 200px;
  word-wrap: break-word;
  transition: all .3s;
}

.card-body a p:hover {
  color: var(--color4);
}

.card-body p {
  color: #fff;
  font-size: clamp(1rem, 1.125rem, 1.25rem);
  line-height: 1.2rem;
  font-weight: 700;
  width: 300px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
}

.card-body a p.english-title {
  color: #b5b5b5;
  margin-top: .075rem ;
  font-size: clamp(0.8125rem, 0.8125rem, 1rem);
  transition: all .3s;
}

.card-body a p.english-title:hover {
  color: var(--color4);
}

@media only screen and (max-width: 497px) {
  .card-img img {
    margin: 0 auto;
    height: 350px;
    width: 250px;
  }
}

@media (min-width: 1400px) {
  .anime-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .anime-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 100px) and (max-width: 1199px) {
  .anime-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .anime-container {
    grid-template-columns: 1fr;
  }

  .anime-card{
    max-width: 250px;
    margin: 20px auto 10px;
  }
}

/* Tagfelvétel */
.tgf {
  color: #ff4444;
  font-weight: 600 !important;
  letter-spacing: 1px;
  transition: all .3s;
}

.tagfelvetel h1 {
  text-align: center;
  font-weight: 800;
  font-size: clamp(2rem, 4rem, 6rem);
  margin: 40px auto;
}

.tagfelvetel h2 {
  font-size: clamp(1.5rem, 2.1875rem, 3rem);
  font-weight: 700;
  text-align: center;
}

.tagfelvetel-card hr {
  width: 100%;
  margin: 20px auto;
  border: 3px solid var(--color4);
  border-radius: 3px;
}

.tagfelvetel-card .jeloles {
  color: var(--color4);
  position: relative;
  text-decoration: none;
  z-index: 1;
  transition: all .3s;
}

.tagfelvetel-card .jeloles:hover {
  color: #fff;
}

.tagfelvetel-card .jeloles::before {
  background: var(--color4);
  border-radius: 4px;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}

.tagfelvetel-card .jeloles:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.tagfelvetel li::marker {
  color: var(--color4);
}

.tagfelvetel-card ul {
  margin: 20px;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
}

.tagfelvetel-card p {
  margin: 20px 0;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
  line-height: 30px;
  text-align: justify;
}

.tagfelvetel-card {
  width: 80%;
  margin: 0 auto 60px;
  border-radius: 5px;
  padding: 30px;
}

.tagfelvetel-card .teszt {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  list-style-type: none;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.tagfelvetel-card .btn {
  color: #fff;
  background: var(--color4);
  padding: 10px 14px;
  border-radius: 5px;
  border: none;
  font-size: clamp(1rem, 1.125rem, 1.25rem);
  font-weight: 700;
  transition: all .3s;
}

.tagfelvetel-card .btn:hover {
  background: var(--color3);
}

/* View 768px - Tagfelvétel */
@media only screen and (max-width: 768px) {
  .tagfelvetel h1 {
    font-size: clamp(3rem, 3.125rem, 4rem);
  }

  .tagfelvetel h2 {
    font-size: clamp(2rem, 1.875rem, 3.5rem);
  }

  .tagfelvetel-card p, .tagfelvetel-card ul {
    text-align: left;
    font-size: clamp(1rem, 1.125rem, 1.25rem);
  }

  .tagfelvetel-card {
    width: 90%;
    padding: 15px;
  }
}

/* Anime Adatlap */
.anime-adatlap {
  color: #fff;
  margin: 50px auto 60px;
  padding: 35px;
}

.anime-adatlap h2 {
  font-size: clamp(2rem, 2.5rem, 3rem);
}

.anime-adatlap h3 {
  font-size: clamp(1.5rem, 1.8rem, 2rem);
  text-align: center;
  margin: 30px auto 10px;
}

.anime-adatlap h5 {
  font-size: clamp(1.5rem, 1.8rem, 2rem);
  margin-bottom: 10px;
}

.anime-adatlap h4 {
  font-size: clamp(1rem, 1.1rem, 1.3rem);
}

.anime-adatlap h4 a {
  text-decoration: none;
  color: var(--color4);
}

.anime-adatlap .english {
  font-size: clamp(1.25rem, 1.5rem, 2rem);
  color: #8f8f8f;
}

.anime-adatlap .badge-holder a:nth-child(4n) {
  margin-right: 0;
}

.anime-adatlap .badge-holder a:nth-child(4n+1) {
  clear: left;
}

.anime-adatlap .badge-holder a {
  display: block;
  margin-bottom: 10px;
}

.anime-adatlap img {
  width: 300px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  margin: 0 auto;
}

.anime-adatlap .episodes {
  text-align: center;
  display: contents;
}

.anime-adatlap .description {
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  .anime-adatlap .description {
    font-size: clamp(1rem, 1.25rem, 1.5rem);
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
  }
}

.anime-adatlap ul {
  margin: 15px auto 20px;
}

.anime-adatlap ul li {
  display: inline-block;
  margin: 5px;
  padding: 5px 7px;
  border: none;
  font-weight: 600;
  border-radius: 3px;
}

.anime-adatlap .leiras li {
  display: inline-block;
  margin: 5px;
  padding: 5px 7px;
  background: var(--color4);
  border: none;
  font-weight: 600;
  border-radius: 3px;
}

.anime-adatlap ul a li {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 1.125rem, 1.25rem);
  width: 110px;
  transition: all .3s;
}

.anime-adatlap ul a:hover li {
  background: var(--color3);
}

.anime-adatlap .link {
  margin: 0 auto;
  justify-content: space-between;
  display: table;
}

.anime-adatlap .myanimelist {
  color: #fff;
  font-size: clamp(1rem, 1.2rem, 1.5rem);
  text-decoration: none;
  background: var(--color4);
  padding: 5px 7px;
  border-radius: 3px;
  text-align: center;
  font-weight: 600;
  display: inline-block;
  position: relative;
  margin: 20px 10px;
  transition: all .3s;
}

.anime-adatlap .myanimelist:hover {
  background: var(--color3);
}

.anime-adatlap .genres {
  font-size: clamp(1.1rem, 1.3rem, 1.6rem);
  margin-bottom: 10px;
}

.anime-adatlap .genres-color {
  color: var(--color4);
}

/* View 768px - Anime Adatlap */
@media only screen and (max-width: 768px) {
  .anime-adatlap h2 {
    font-size: clamp(1.5rem, 1.7rem, 2rem);
  }

  .anime-adatlap .english {
    font-size: clamp(1.1rem, 1.3rem, 1.6rem);
  }
}

/* Anime Episode - epizod.php */
p .episode-num {
  font-weight: 900;
}

.anime-episode h2 {
  font-size: clamp(2rem, 2.5rem, 3rem);
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.anime-episode h2 a {
  transition: all .3s;
}

.anime-episode h2 a:hover{
  color: var(--color4);
}

.responsive-iframe-container {
  position: relative;
  padding-top: 56.25%;
}

.responsive-iframe-container iframe {
  position: absolute;
  margin: 40px auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
}

@media only screen and (max-width: 768px) {
  .responsive-iframe-container iframe {
    width: 99%;
  }
}

.anime-episode .lepteto {
  margin: 60px auto 30px;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.anime-episode .lepteto a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.1rem, 1.3rem, 1.6rem);
  padding: 7px 13px;
  margin: 5px;
  border-radius: 3px;
  font-weight: 600;
}

.anime-episode .elozo {
  background: #ff9324;
  transition: all .3s;
}

.anime-episode .kovetkezo {
  background: #0ab800;
  transition: all .3s;
}

.anime-episode .elozo:hover {
  background: #c46400;
}

.anime-episode .kovetkezo:hover {
  background: #087500;
}

.anime-episode .nincs {
  display: none;
}

.anime-episode .dropdown {
  position: relative;
  display: inline-block;
}

.anime-episode .dropbtn {
  background: var(--color4);
  color: #fff;
  margin: 0 5px;
  font-size: clamp(1.1rem, 1.3rem, 1.6rem);
  font-weight: 600;
  padding: 7px 13px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: all .3s;
}

.anime-episode .dropdown-content {
  left: 50%;
  transform: translateX(-50%);
  display: none;
  position: absolute;
  background: var(--color4);
  border-radius: 3px;
  min-width: 130px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0, .5);
  z-index: 1;
}

.anime-episode .dropdown-content a {
  font-size: clamp(1rem, 1.2rem, 1.5rem);
  background: var(--color4);
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  border: none;
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  transition: all .3s;
}

.anime-episode .dropdown-content a:hover {
  background: var(--color3);
}

.anime-episode .dropdown:hover .dropdown-content {
  display: block;
}

.anime-episode .dropdown:hover .dropbtn {
  background: var(--color3);
}

.anime-episode p {
  color: #fff;
  margin-bottom: 7px;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
}

.anime-episode p a {
  color: var(--color4);
}

.anime-episode .episodes {
  display: contents;
  text-align: center;
}

.anime-episode ul {
  margin: 15px auto 80px;
}

.anime-episode ul li {
  display: inline-block;
  margin: 5px;
  padding: 5px 7px;
  border: none;
  font-weight: 600;
  border-radius: 3px;
}

.active-episode {
  background-color: #801313 !important;
}


.anime-episode ul a li {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 1.125rem, 1.25rem);
  width: 110px;
  transition: all .3s;
}

.anime-episode ul a:hover li {
  background: var(--color3);
}

.anime-episode h3 {
  color: #fff;
  text-align: center;
  font-size: clamp(1.125rem, 1.5rem, 1.75rem);
  margin-bottom: 10px;
}

.anime-episode .episode-contrainer {
  margin-bottom: 200px;
}

.anime-episode .episode-contrainer h3 {
  margin: 20px auto;
}

/* View 768px - Anime Episode */
@media only screen and (max-width: 768px) {
  .anime-episode h2 {
    font-size: clamp(1.5rem, 1.7rem, 2rem);
    margin-bottom: 15px;
  }

  .anime-episode .lepteto a {
    font-size: 1rem;
  }

  .anime-episode .dropbtn {
    font-size: 1rem;
  }

  .center, .episode-contrainer {
    text-align: center;
    margin: 0 20px;
  }

  .left {
    margin-left: 15px;
  }
}

/* Team Member */
.csapattag {
  margin: 40px auto;
}

.csapattag .about-me {
  border-radius: 5px;
  margin: 20px auto;
  max-height: 300px;
}

.csapattag .about-me p {
  max-height: 240px;
  text-align: justify;
  padding-right: 20px;
  line-height: 1.4em;
  overflow-y: auto;
}

.csapattag h1 {
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(2rem, 3rem, 3.5rem);
}

.csapattag h2 {
  font-size: clamp(1.5rem, 2.2rem, 2.7rem);
  font-weight: 700;
}

.csapattag .card-container img{
  width: 60%;
  height: 60%;
  margin-top: 10px;
}

.csapattag .card-container p {
  padding: 10px 5px;
}

/* Search */
.searchbar {
  margin: 50px auto 30px;
  max-width: 100%;
  display: block;
  position: relative;
}

form.searchbar select {
  padding: 10px;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
  height: 44px;
  border: none;
  font-weight: 500;
  background: #fff;
  border-radius: 0;
  width: 10%;
  float: left;
  cursor: pointer;
}

form.searchbar input[type=text] {
  padding: 10px;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
  border: none;
  font-weight: 600;
  width: 80%;
  background: #fff;
  float: left;
  border-right: 2px solid #ddd;
  border-radius: 5px 0 0 5px;
}

form.searchbar button {
  float: left;
  width: 10%;
  padding: 10px;
  background: var(--color4);
  color: #fff;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all .3s;
  border-radius: 0 5px 5px 0;
}

form.searchbar button:hover {
  background: var(--color3);
}

form.searchbar::after {
  content: "";
  clear: both;
  display: table;
}

/* View 1350px - Search */
@media only screen and (max-width: 1350px) {
  form.searchbar select {
    width: 20%;
  }

  form.searchbar input[type=text] {
    width: 60%;
  }

  form.searchbar button {
    width: 20%;
  }
}

/* View 768px - Search */
@media only screen and (max-width: 768px) {
  form.searchbar select,
  form.searchbar input[type=text],
  form.searchbar button {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  .searchbar {
    max-width: 80%;
  }
}


/* Not Found Page */
.not-found-container {
  padding: 60px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  position: relative;
  margin: 100px auto;
}

.not-found-img img {
  width: 15rem;
  margin-bottom: 20px;
}

.not-found-message {
  font-size: clamp(1rem, 1.2rem, 1.5rem);
  margin-bottom: 30px;
}

.go-home-btn {
  padding: 10px 20px;
  background-color: var(--color4);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.go-home-btn:hover {
  background-color: var(--color3);
}

.not-found-footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #fff;
}

.not-found-footer a:hover {
  transition: all .4s;
}

.not-found-footer a:hover {
  color: var(--color4);
}

/* Gomb stílus */
.talalat {
  margin-bottom: 10px;
  font-size: clamp(1.125rem, 1.5rem, 1.75rem);
  font-weight: 600;
}

button.szures {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
  cursor: pointer;
  border: none;
  background: none;
  color: #fff;
  border-radius: 5px;
  transition: all .3s;
}

button.szures:hover {
  color: var(--color4);
}

button.keresSzuro {
  padding: 10px 20px !important;
  margin: 5px 10px !important;
  font-size: 16px !important;
  width: 140px !important;
  cursor: pointer !important;
  border: none !important;
  background: var(--color4) !important;
  color: #fff !important;
  border-radius: 5px !important;
  transition: all 0.3s !important;
}

button.keresSzuro:hover {
  background: var(--color3) !important;
}

button.cbClear {
  padding: 10px 0 !important;
  margin: 5px 0 !important;
  font-size: 16px !important;
  width: 140px !important;
  cursor: pointer !important;
  border: none !important;
  background: none !important;
  color: #fff !important;
  border-radius: 5px !important;
  transition: all 0.3s !important;
}

button.cbClear:hover {
  color: red !important;
}

@media (max-width: 768px) {
  .talalat {
    text-align: center;
  }

  .szures {
    margin-top: 10px;
    text-align: center;
  }
}

/* filter háttér */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(3px);
  display: none;
  z-index: 2000;
}

body.no-scroll {
  overflow: hidden;
}

/* filter tartalom */
.filter {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid var(--color1-light);
  width: 100%;
  max-width: 50%;
  padding: 25px;
  background: var(--color1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  display: none;
  z-index: 2001;
  overflow: hidden;
}

@media only screen and (max-width: 1500px) {
  .filter {
    width: 100% !important;
    max-width: 50%;
  }
}

@media only screen and (max-width: 1100px) {
  .filter {
    width: 100% !important;
    max-width: 65%;
  }
}

@media only screen and (max-width: 768px) {
  .filter {
    width: 100% !important;
    max-width: 95%;
    padding: 20px;
  }
}

/* filter címsor és bezárás */
.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--color4);
  width: 100%;
  border-radius: 3px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.filter-header h3 {
  margin: 0;
  font-size: 26px;
}

.filter-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 7px !important;
  display: flex;
  background: var(--color4) !important;
  border: none !important;
  border-bottom-left-radius: 5px !important;
  color: #fff !important;
  font-size: clamp(1rem, 1.25rem, 1.5rem) !important;
  cursor: pointer !important;
  transition: all .3s !important;
  width: 30px !important;
}

.filter-close-btn:hover {
  background: var(--color3) !important;
}

/* Szöveg tartalom */
.filter-content {
  font-size: clamp(0.875rem, 0.875rem, 1.125rem);
  line-height: 1.6;
  max-height: 70dvh;
  overflow-y: visible;
  overflow-x: hidden;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .filter-content {
    max-height: 50vh;
  }  
}

.checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: clamp(1rem, 1.25rem, 1.5rem);
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.custom-checkbox .checkmark:hover {
  border: 1px solid var(--color3);
}

.custom-checkbox .checkmark i {
  display: none;
  color: #fff;
}

.custom-checkbox input:checked + .checkmark {
  background: var(--color4);
  border-color: var(--color4);
}

.custom-checkbox input:checked + .checkmark:hover {
  background: var(--color3);
  border-color: var(--color3);
}

.custom-checkbox input:checked + .checkmark i {
  display: block;
  font-size: clamp(0.875rem, 0.875rem, 1.125rem);
}

/* Dropdown menü stílus */
.filter .dropdown {
  width: 100%;
  background: none;
  margin: 0 auto;
  overflow: hidden;
}

.filter .dropdown-label {
  padding: 0;
  background: none;
  color: #fff;
  width: 100%;
  font-size: clamp(1.25rem, 1.5rem, 2rem);
  cursor: pointer;
  display: block;
  text-align: left;
}

.filter .dropdown-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  text-align: center;
  padding-top: 10px;
}

.filter .dropdown-content ul {
  list-style: none;
  margin: 0;
  padding-left: 20px;
}

.filter .dropdown input[type="checkbox"] {
  display: none;
}

.filter .dropdown input[type="checkbox"]:checked ~ .dropdown-content {
  height: auto;
}

.active-filters {
  margin-bottom: 20px;
  border-radius: 5px;
}

.active-filters h4 {
  font-size: clamp(1rem, 1.125rem, 1.25rem);
  margin: 5px;
}

.active-filters ul {
  list-style: none;
  padding: 0;
}

.active-filters li {
  display: inline-block;
  background: none;
  margin: 5px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: clamp(0.875rem, 0.875rem, 1.125rem);
  cursor: context-menu;
}

.active-filters button {
  background: none;
  border: none;
  color: #fff;
  font-size: clamp(0.875rem, 1rem, 1.125rem);
  cursor: pointer;
  margin-left: 5px;
  transition: all .5s;
}

.active-filters button:hover {
  color: #ff0000
}

.active-filters li.filter-phase { background: #ca7900; transition: all .5s; }
.active-filters li.filter-phase:hover { background: #fdb343; }

.active-filters li.filter-season { background: #003eb3; transition: all .5s; }
.active-filters li.filter-season:hover { background: #206eff; }

.active-filters li.filter-category { background: #005e00; transition: all .5s; }
.active-filters li.filter-category:hover { background: #00a100; }

.no-results {
  margin: 0 auto;
}

.no-results img {
  width: 150px;
  height: 150px;
}

.no-results p {
  text-align: center;
  font-size: clamp(2rem, 1.875rem, 3.5rem);
}

/* MUNKAFÁZISOK */
.munkafazis-container {
  text-align: center;
  margin: 10px auto;
}

.munkafazis-container h3 {
  margin: 20px;
  font-size: clamp(1.2rem, 1.5rem, 2rem);
  font-weight: bold;
}

.munkafazis {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.munkafazis p {
  margin: 0;
  padding: 5px 10px;
  font-size: clamp(0.875rem, 0.875rem, 1.125rem);
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 5px;
  white-space: nowrap;
}

/* .episode-phase-1 { background: #665cff; } Megjelenésre vár */
/* .episode-phase-2 { background: #43b1c2; } Fordítás alatt */
/* .episode-phase-3 { background: #0d98ee; } Lektorálás alatt */
/* .episode-phase-4 { background: #0f61ad; } Átnézés alatt */
/* .episode-phase-5 { background: #0f477c; } Formázás alatt */
/* .episode-phase-6 { background: #f84554; } Közzétételre vár */
.episode-phase-7 { background: #3a883d; } /* Kész */
.episode-phase-8 { background: #d8800d; } /* Javítás alatt */
/* .episode-phase-9 { background: #525252; } Szünetel */

.status {
  margin: 0;
  padding: 5px 10px;
  font-size: clamp(0.875rem, 1rem, 1.125rem);
  border-radius: 5px;
  white-space: nowrap;
}

/* Lejátszó */

#video-player-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

#video-player-container video {
  width: 70vw;
}