* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1e1e1e;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Work Sans', sans-serif;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.4);
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    font-family: 'Work Sans', sans-serif;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.logo {
  width: 120px;
  height: 120px;
  animation: pulseLogo 2s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}

@keyframes pulseLogo {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.6)); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.loader-text {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.blurred-content {
    filter: blur(12px);
    transition: filter 1.2s ease;
}

.unblurred-content {
    filter: blur(0px);
    transition: filter 1.2s ease;
}

.error-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    z-index: 10;
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
    width: 90%;
    max-width: 500px;
}

.error-emoji {
    width: 130px;
    height: 130px;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(255,0,0,0.2));
}

.error-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff4d4d;
    letter-spacing: 1px;
}

.error-box p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 30px;
}

.cssbuttons-io-button {
  background: #ff0000;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #8b0000;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  text-decoration: none;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #a30000;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #ff0000;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Footer */
.home-footer {
    position: relative;
    margin-top: auto;
    margin-bottom: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 0, 0, 0.15);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
    z-index: 10;
    font-family: 'Work Sans', sans-serif;
    color: #aaaaaa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 4px;
    animation: slideUpFade 0.8s ease-out 0.5s both;
}

.footer-content p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: #aaaaaa;
}

.footer-links {
    font-size: 0.85rem;
}

.footer-links a {
    color: #ff4d4d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links .separator {
    margin: 0 10px;
    color: #555555;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer Cookie Settings Button */
.footer-cookie-btn {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 0.85rem;
    font-family: 'Work Sans', sans-serif;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    display: inline;
}

.footer-cookie-btn:hover {
    color: #ffffff;
}

/* ═══════════════════════════════════════
   COOKIE SETTINGS MODAL
═══════════════════════════════════════ */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 1rem;
}

.cookie-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background: rgba(18, 18, 18, 0.96);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,255,255,0.03);
    font-family: 'Work Sans', sans-serif;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.cookie-modal-overlay.open .cookie-modal {
    transform: translateY(0) scale(1);
}

/* Header */
.cookie-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 24px 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-modal-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.cookie-modal-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    flex: 1;
}

.cookie-modal-close {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: #aaaaaa;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.cookie-modal-close:hover {
    background: rgba(255, 51, 51, 0.2);
    color: #ffffff;
    border-color: rgba(255, 51, 51, 0.3);
}

/* Body */
.cookie-modal-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-modal-desc {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 4px;
}

/* Cookie option row */
.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.cookie-option:hover {
    border-color: rgba(255, 51, 51, 0.15);
}

.cookie-option-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.cookie-option-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e8e8e8;
    letter-spacing: 0.2px;
}

.cookie-option-desc {
    font-size: 0.77rem;
    color: #666;
    line-height: 1.4;
}

/* Always-on badge */
.cookie-toggle.always-on {
    flex-shrink: 0;
}

.toggle-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2dde56;
    background: rgba(45, 222, 86, 0.1);
    border: 1px solid rgba(45, 222, 86, 0.25);
    border-radius: 99px;
    padding: 3px 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Toggle switch */
.cookie-toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 99px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: #888;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.cookie-toggle-switch input:checked + .cookie-slider {
    background: rgba(255, 51, 51, 0.2);
    border-color: rgba(255, 51, 51, 0.4);
}

.cookie-toggle-switch input:checked + .cookie-slider::before {
    transform: translateX(20px) translateY(-50%);
    background: #ff3333;
    box-shadow: 0 2px 8px rgba(255, 51, 51, 0.5);
}

/* Status row */
.cookie-current-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}

.cookie-status-label {
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

.cookie-status-value {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.cookie-status-value.accepted {
    color: #2dde56;
}

.cookie-status-value.declined {
    color: #ff4d4d;
}

.cookie-status-value.necessary {
    color: #ffcc00;
}

.cookie-status-value.unset {
    color: #ffcc00;
}

/* Modal footer buttons */
.cookie-modal-footer {
    display: flex;
    gap: 10px;
    padding: 16px 24px 22px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-modal-btn {
    flex: 1;
    padding: 11px 16px;
    border-radius: 10px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.cookie-modal-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #aaaaaa;
    border: 1px solid rgba(255,255,255,0.1);
}

.cookie-modal-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: rgba(255,255,255,0.2);
}

.cookie-modal-btn-primary {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.cookie-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}



/* Content Box (Adatvédelem, ÁSZF) */
.content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    z-index: 10;
    font-family: 'Work Sans', sans-serif;
    color: #cccccc;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
    overflow-y: auto;
}

.content-box::-webkit-scrollbar {
    width: 6px;
}
.content-box::-webkit-scrollbar-track {
    background: transparent;
    margin: 20px 0;
}
.content-box::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 0, 0.5);
    border-radius: 10px;
}
.content-box::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 0, 0.8);
}

.content-box h1 {
    color: #ff4d4d;
    margin-bottom: 25px;
    font-size: 2.2rem;
    text-align: center;
    letter-spacing: 1px;
}

.content-box h2 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-box p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-box ul {
    margin-bottom: 20px;
    padding-left: 25px;
    color: #cccccc;
}

.content-box li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.content-box h3 {
    color: #ffb3b3;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0);
    font-family: 'Work Sans', sans-serif;
}

@media (min-width: 768px) {
    .navbar {
        justify-content: flex-start;
        padding: 20px 10%;
    }
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .navbar.scrolled {
        padding: 20px 10%;
    }
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff3333;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar.scrolled .nav-brand {
    color: #ffffff;
}

.nav-brand:hover {
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.25);
}

/* Hero Section (Home page) */
.hero-section {
    position: relative;
    margin: clamp(80px, 14vw, 180px) auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    text-align: center;
    pointer-events: none;
    width: 100%;
}

.hero-logo {
    width: clamp(70px, 8vw, 120px);
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: logoReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

.hero-title {
    margin-top: 15px;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    gap: clamp(6px, 1vw, 15px);
    font-family: 'Work Sans', sans-serif;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-title .word {
    opacity: 0;
    transform: translateY(15px);
    display: inline-block;
}

.hero-title .word:nth-child(1) {
    animation: textReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.hero-title .word:nth-child(2) {
    animation: textReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.2s forwards;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        filter: drop-shadow(0 0 0px rgba(255, 0, 0, 0)) blur(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4)) blur(0px);
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(15px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    transform: translateX(120%);
    width: 90%;
    max-width: 350px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Work Sans', sans-serif;
}

.cookie-banner.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.cookie-text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-text {
        text-align: left;
        flex: 1;
    }
}

.cookie-text a {
    color: #ff4d4d;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-decline {
    background: transparent;
    color: #aaaaaa;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cookie-necessary {
    background: transparent;
    color: #ffcc00;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.cookie-necessary:hover {
    background: rgba(255, 204, 0, 0.08);
    color: #ffe066;
    border-color: rgba(255, 204, 0, 0.5);
}

.cookie-accept {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

/* Modal Mentés gomb méret-korrekció */
.cookie-modal-save-btn {
    font-size: 14px !important;
    height: 2.6em !important;
    flex: 1;
}

/* Elrejtett görgetősáv de görgethető marad */
html {
    -ms-overflow-style: none;  /* IE és Edge */
    scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar {
    display: none;  /* Chrome, Safari és Opera */
}

/* Vissza a tetejére gomb stílusai */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    outline: none;
    padding: 0;
}

.back-to-top:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.back-to-top .progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.back-to-top .progress-bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.back-to-top .progress-bar {
    stroke: #ff3333;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.back-to-top .arrow-icon {
    position: relative;
    width: 18px;
    height: 18px;
    z-index: 2;
    color: #cccccc;
    transition: transform 0.3s ease, color 0.3s ease;
}

.back-to-top:hover .arrow-icon {
    transform: translateY(-2px);
    color: #ffffff;
}

/* Home Page Hero Section */
.home-hero {
    position: relative;
    width: 92%;
    max-width: 1800px;
    margin: 0 auto;
    height: clamp(200px, 40vw, 55vh);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 1.5px;
    margin: 0;
    color: #e0e0e0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-online {
    margin: 10px 0 0 0;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
}

.hero-online-label {
    color: #ff3333;
}

/* Bottom fade + left/right fade overlay */
.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, 
            rgba(30, 30, 30, 0.05) 0%, 
            rgba(30, 30, 30, 0.25) 55%, 
            rgba(30, 30, 30, 1) 100%
        ),
        linear-gradient(to right,
            rgba(30, 30, 30, 0.8) 0%,
            rgba(30, 30, 30, 0) 8%,
            rgba(30, 30, 30, 0) 92%,
            rgba(30, 30, 30, 0.8) 100%
        );
    z-index: 1;
}

/* Subtle dark vignette overlay */
.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

/* ───── Stats Section ───── */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(14px, 2vw, 24px);
    width: 92%;
    max-width: 1800px;
    margin: clamp(16px, 3vw, 28px) auto 0 auto;
    font-family: 'Work Sans', sans-serif;
}

.stat-card {
    flex: 1 1 clamp(280px, 40%, 600px);
    min-width: 0;
    background: rgba(18, 18, 18, 0.82);
    border: 1px solid rgba(255, 51, 51, 0.15);
    border-radius: 14px;
    padding: clamp(16px, 2.5vw, 32px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 51, 51, 0.6) 50%, transparent 100%);
    border-radius: 14px 14px 0 0;
}

.stat-card:hover {
    border-color: rgba(255, 51, 51, 0.35);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 51, 51, 0.07);
}

/* Card header */
.stat-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-icon {
    width: 26px;
    height: 26px;
    color: #ff3333;
    flex-shrink: 0;
}

.stat-card-title {
    font-size: clamp(0.8rem, 1.5vw, 1.05rem);
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Stat rows */
.stat-rows {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-label {
    font-size: 0.82rem;
    color: #999;
    font-weight: 500;
    width: 130px;
    flex-shrink: 0;
    letter-spacing: 0.2px;
}

/* Progress bar */
.stat-bar-track {
    flex: 1;
    height: 7px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, #cc0000 0%, #ff4444 100%);
    box-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    filter: blur(2px);
}

/* Color variants */
.stat-bar-green {
    background: linear-gradient(90deg, #1a7a2e 0%, #2dde56 100%);
    box-shadow: 0 0 8px rgba(45, 222, 86, 0.35);
}

.stat-bar-yellow {
    background: linear-gradient(90deg, #9a6800 0%, #f0b429 100%);
    box-shadow: 0 0 8px rgba(240, 180, 41, 0.35);
}

.stat-bar-special {
    background: linear-gradient(90deg, #5b21b6 0%, #a855f7 100%);
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.35);
}

/* xy/xy counter */
.stat-count {
    font-size: 0.88rem;
    font-weight: 700;
    color: #e8e8e8;
    min-width: 60px;
    text-align: right;
    letter-spacing: 0.3px;
}

.stat-max {
    color: #555;
    font-weight: 500;
}

/* ── LIVE badge ── */
.stat-live-badge {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2dde56;
    background: rgba(45, 222, 86, 0.1);
    border: 1px solid rgba(45, 222, 86, 0.25);
    border-radius: 99px;
    padding: 2px 9px;
    text-transform: uppercase;
    animation: livePulse 2s ease-in-out infinite;
}

.stat-live-badge.yellow-badge {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.25);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.55; }
}

/* ── SVG Chart wrapper ── */
.stat-chart-wrap {
    position: relative;
    margin-bottom: 22px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 12px 8px 0 8px;
}

.stat-chart {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

/* Day labels below chart */
.stat-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 6px 4px 8px 4px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ── Chart loading styles ── */
.stat-chart-wrap .stat-chart,
.stat-chart-wrap .stat-chart-labels {
    transition: opacity 0.5s ease;
}

.stat-chart-wrap.loading .stat-chart,
.stat-chart-wrap.loading .stat-chart-labels {
    opacity: 0.05;
    pointer-events: none;
}

.stat-chart-wrap .banter-loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 5;
    transform: scale(0.6);
}

.stat-chart-wrap.loading .banter-loader {
    opacity: 1;
    visibility: visible;
}

/* ── Numbers grid below chart ── */
.stat-nums-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.stat-num-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.stat-num-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255, 51, 51, 0.2);
}

.stat-num-label {
    font-size: 0.72rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.stat-num-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #efefef;
    letter-spacing: -0.3px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-num-max {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    margin-left: 2px;
}

/* ── Miért minket válassz? Szekció ── */
.features-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    color: #ff3333;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    text-shadow: 0 2px 15px rgba(255, 51, 51, 0.2);
    font-family: 'Work Sans', sans-serif;
    text-align: center;
}

.features-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.features-slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.features-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.feature-card {
    min-width: 100%;
    background: rgba(18, 18, 18, 0.82);
    border: 1px solid rgba(255, 51, 51, 0.15);
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 51, 51, 0.1);
}

.slider-btn {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: #ff3333;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    outline: none;
}

.slider-btn:hover {
    background: rgba(255, 51, 51, 0.8);
    border-color: rgba(255, 51, 51, 0.8);
    color: #fff;
    transform: scale(1.1) translateZ(0);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ff3333;
    width: 25px;
    border-radius: 5px;
}

/* ── FAQ Szekció ── */
.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 51, 51, 0.2);
}

.faq-item.active {
    background: rgba(18, 18, 18, 0.9);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 51, 51, 0.1);
}

.faq-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-title-icon {
    width: 22px;
    height: 22px;
    color: #ff3333;
    flex-shrink: 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 22px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    outline: none;
}

.faq-question:hover {
    color: #ff3333;
}

.faq-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    color: #ff3333;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0 25px;
}

.faq-answer p {
    margin: 0 0 22px 0;
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Work Sans', sans-serif;
}

/* ── Átirányítás Overlay ── */
.redirect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.redirect-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.redirect-loader-container {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 40px;
    transform: scale(0.8);
}

.redirect-text {
    font-size: 1.5rem;
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 2px;
    color: #ff3333;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulseRedirect 1.5s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
}

@keyframes pulseRedirect {
    0% { opacity: 0.5; }
    50% { opacity: 1; text-shadow: 0 0 25px rgba(255, 51, 51, 0.7); }
    100% { opacity: 0.5; }
}

.feature-icon {
    width: 55px;
    height: 55px;
    color: #ff3333;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(255, 51, 51, 0.4));
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Work Sans', sans-serif;
}

.feature-desc {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Work Sans', sans-serif;
}

/* ── Mobil és Tablet Optimalizálás (Responsive) ── */
@media (max-width: 768px) {
    /* Hero */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Stats Szekció */
    .stats-section {
        flex-direction: column;
        width: 95%;
        padding: 0;
        margin-top: 20px;
    }
    .stat-card {
        width: 100%;
        flex: none;
        padding: 20px 15px;
    }
    .stat-nums-grid {
        grid-template-columns: 1fr;
    }
    .stat-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .stat-label {
        width: auto;
    }

    /* Slider Szekció */
    .features-slider-wrapper {
        position: relative;
        padding: 0;
    }
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(18, 18, 18, 0.8);
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }
    .slider-btn.prev-btn {
        left: -10px;
    }
    .slider-btn.next-btn {
        right: -10px;
    }
    .slider-btn:hover {
        transform: translateY(-50%) scale(1.1) translateZ(0);
    }
    .feature-card {
        padding: 30px 20px;
    }
    .feature-title {
        font-size: 1.2rem;
    }
    .feature-desc {
        font-size: 0.9rem;
    }

    /* FAQ Szekció */
    .faq-container {
        padding: 0 5px;
    }
    .faq-question {
        padding: 16px 15px;
        font-size: 1rem;
    }
    .faq-title-wrapper {
        gap: 8px;
    }
    .faq-title-icon {
        width: 18px;
        height: 18px;
    }
    .faq-answer {
        padding: 0 15px;
    }
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ── main-container z-index fix ── */
.main-container {
    position: relative;
    z-index: 3;
}

/* ═══════════════════════════════════════
   STAT CARD — ENTRANCE ANIMATIONS
═══════════════════════════════════════ */
.stat-card {
    animation: statCardIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.stat-card:nth-child(2) {
    animation-delay: 0.18s;
}
@keyframes statCardIn {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* SVG chart elements — animated via JS (getTotalLength) */
.chart-line {
    /* stroke-dasharray and transition set dynamically by main.js */
    will-change: stroke-dashoffset;
}

.chart-area {
    /* opacity transition set dynamically by main.js */
    will-change: opacity;
}

.chart-dot {
    /* opacity transition set dynamically by main.js */
    will-change: opacity;
}

/* From Uiverse.io by Nawsome */ 
.banter-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
  transform: scale(0.3);
}

.banter-loader__box {
  float: left;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.banter-loader__box:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff3333;
}

.banter-loader__box:nth-child(3n) {
  margin-right: 0;
  margin-bottom: 6px;
}

.banter-loader__box:nth-child(1):before, .banter-loader__box:nth-child(4):before {
  margin-left: 26px;
}

.banter-loader__box:nth-child(3):before {
  margin-top: 52px;
}

.banter-loader__box:last-child {
  margin-bottom: 0;
}

@keyframes moveBox-1 {
  9.0909090909% { transform: translate(-26px, 0); }
  18.1818181818% { transform: translate(0px, 0); }
  27.2727272727% { transform: translate(0px, 0); }
  36.3636363636% { transform: translate(26px, 0); }
  45.4545454545% { transform: translate(26px, 26px); }
  54.5454545455% { transform: translate(26px, 26px); }
  63.6363636364% { transform: translate(26px, 26px); }
  72.7272727273% { transform: translate(26px, 0px); }
  81.8181818182% { transform: translate(0px, 0px); }
  90.9090909091% { transform: translate(-26px, 0px); }
  100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(1) { animation: moveBox-1 4s infinite; }

@keyframes moveBox-2 {
  9.0909090909% { transform: translate(0, 0); }
  18.1818181818% { transform: translate(26px, 0); }
  27.2727272727% { transform: translate(0px, 0); }
  36.3636363636% { transform: translate(26px, 0); }
  45.4545454545% { transform: translate(26px, 26px); }
  54.5454545455% { transform: translate(26px, 26px); }
  63.6363636364% { transform: translate(26px, 26px); }
  72.7272727273% { transform: translate(26px, 26px); }
  81.8181818182% { transform: translate(0px, 26px); }
  90.9090909091% { transform: translate(0px, 26px); }
  100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(2) { animation: moveBox-2 4s infinite; }

@keyframes moveBox-3 {
  9.0909090909% { transform: translate(-26px, 0); }
  18.1818181818% { transform: translate(-26px, 0); }
  27.2727272727% { transform: translate(0px, 0); }
  36.3636363636% { transform: translate(-26px, 0); }
  45.4545454545% { transform: translate(-26px, 0); }
  54.5454545455% { transform: translate(-26px, 0); }
  63.6363636364% { transform: translate(-26px, 0); }
  72.7272727273% { transform: translate(-26px, 0); }
  81.8181818182% { transform: translate(-26px, -26px); }
  90.9090909091% { transform: translate(0px, -26px); }
  100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(3) { animation: moveBox-3 4s infinite; }

@keyframes moveBox-4 {
  9.0909090909% { transform: translate(-26px, 0); }
  18.1818181818% { transform: translate(-26px, 0); }
  27.2727272727% { transform: translate(-26px, -26px); }
  36.3636363636% { transform: translate(0px, -26px); }
  45.4545454545% { transform: translate(0px, 0px); }
  54.5454545455% { transform: translate(0px, -26px); }
  63.6363636364% { transform: translate(0px, -26px); }
  72.7272727273% { transform: translate(0px, -26px); }
  81.8181818182% { transform: translate(-26px, -26px); }
  90.9090909091% { transform: translate(-26px, 0px); }
  100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(4) { animation: moveBox-4 4s infinite; }

@keyframes moveBox-5 {
  9.0909090909% { transform: translate(0, 0); }
  18.1818181818% { transform: translate(0, 0); }
  27.2727272727% { transform: translate(0, 0); }
  36.3636363636% { transform: translate(26px, 0); }
  45.4545454545% { transform: translate(26px, 0); }
  54.5454545455% { transform: translate(26px, 0); }
  63.6363636364% { transform: translate(26px, 0); }
  72.7272727273% { transform: translate(26px, 0); }
  81.8181818182% { transform: translate(26px, -26px); }
  90.9090909091% { transform: translate(0px, -26px); }
  100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(5) { animation: moveBox-5 4s infinite; }

@keyframes moveBox-6 {
  9.0909090909% { transform: translate(0, 0); }
  18.1818181818% { transform: translate(-26px, 0); }
  27.2727272727% { transform: translate(-26px, 0); }
  36.3636363636% { transform: translate(0px, 0); }
  45.4545454545% { transform: translate(0px, 0); }
  54.5454545455% { transform: translate(0px, 0); }
  63.6363636364% { transform: translate(0px, 0); }
  72.7272727273% { transform: translate(0px, 26px); }
  81.8181818182% { transform: translate(-26px, 26px); }
  90.9090909091% { transform: translate(-26px, 0px); }
  100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(6) { animation: moveBox-6 4s infinite; }

@keyframes moveBox-7 {
  9.0909090909% { transform: translate(26px, 0); }
  18.1818181818% { transform: translate(26px, 0); }
  27.2727272727% { transform: translate(26px, 0); }
  36.3636363636% { transform: translate(0px, 0); }
  45.4545454545% { transform: translate(0px, -26px); }
  54.5454545455% { transform: translate(26px, -26px); }
  63.6363636364% { transform: translate(0px, -26px); }
  72.7272727273% { transform: translate(0px, -26px); }
  81.8181818182% { transform: translate(0px, 0px); }
  90.9090909091% { transform: translate(26px, 0px); }
  100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(7) { animation: moveBox-7 4s infinite; }

@keyframes moveBox-8 {
  9.0909090909% { transform: translate(0, 0); }
  18.1818181818% { transform: translate(-26px, 0); }
  27.2727272727% { transform: translate(-26px, -26px); }
  36.3636363636% { transform: translate(0px, -26px); }
  45.4545454545% { transform: translate(0px, -26px); }
  54.5454545455% { transform: translate(0px, -26px); }
  63.6363636364% { transform: translate(0px, -26px); }
  72.7272727273% { transform: translate(0px, -26px); }
  81.8181818182% { transform: translate(26px, -26px); }
  90.9090909091% { transform: translate(26px, 0px); }
  100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(8) { animation: moveBox-8 4s infinite; }

@keyframes moveBox-9 {
  9.0909090909% { transform: translate(-26px, 0); }
  18.1818181818% { transform: translate(-26px, 0); }
  27.2727272727% { transform: translate(0px, 0); }
  36.3636363636% { transform: translate(-26px, 0); }
  45.4545454545% { transform: translate(0px, 0); }
  54.5454545455% { transform: translate(0px, 0); }
  63.6363636364% { transform: translate(-26px, 0); }
  72.7272727273% { transform: translate(-26px, 0); }
  81.8181818182% { transform: translate(-52px, 0); }
  90.9090909091% { transform: translate(-26px, 0); }
  100% { transform: translate(0px, 0); }
}

.banter-loader__box:nth-child(9) { animation: moveBox-9 4s infinite; }




/* Élményképek (Gallery) */
.gallery-section {
    width: 100%;
    margin-bottom: 50px;
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    aspect-ratio: 16 / 9;
    background: #2a2a2a;
    width: 350px;
    max-width: 100%;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-overlay svg {
    width: 40px;
    height: 40px;
    color: white;
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay svg {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}
.lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}
.lightbox-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-close {
    position: absolute;
    top: 0px;
    right: -40px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
    line-height: 1;
    z-index: 1000000;
}
.lightbox-close:hover {
    color: #ff3333;
}
.lightbox-title {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Work Sans', sans-serif;
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 600;
}
.lightbox-content {
    max-width: 85vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .lightbox-close {
        right: -5px;
        top: -35px;
    }
}
.lightbox-modal.open .lightbox-content {
    transform: scale(1);
}
/* ── Csatlakozz Szekció ── */
.join-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    background: transparent;
    text-align: center;
}

.join-desc {
    color: #aaaaaa;
    font-size: 1.05rem;
    line-height: 1.6;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 30px;
    max-width: 600px;
}

.join-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865F2;
    color: #ffffff;
    font-size: 1.2rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.join-discord-btn svg {
    width: 28px;
    height: 28px;
}

.join-discord-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.6);
}

.join-discord-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}
