/* ==========================================================================
   BednDare — Önálló stíluskönyvtár
   Tailwind CSS 3.x kompatibilis utility osztályok, kizárólag az index.html-ben
   ténylegesen használt osztályokra szabva. Márkaszínek beépítve.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tailwind alaprés (preflight) — modern CSS reset
   -------------------------------------------------------------------------- */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
::before, ::after { --tw-content: ''; }

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: 'Open Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
}

body {
    margin: 0;
    line-height: inherit;
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

abbr:where([title]) { text-decoration: underline dotted; }

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

b, strong { font-weight: bolder; }

code, kbd, samp, pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

small { font-size: 80%; }

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub { bottom: -0.25em; }
sup { top: -0.5em; }

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button, select { text-transform: none; }

button, [type='button'], [type='reset'], [type='submit'] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

:-moz-focusring { outline: auto; }
:-moz-ui-invalid { box-shadow: none; }

progress { vertical-align: baseline; }

::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; }

[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration { -webkit-appearance: none; }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary { display: list-item; }

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre { margin: 0; }

fieldset {
    margin: 0;
    padding: 0;
}

legend { padding: 0; }

ol, ul, menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

dialog { padding: 0; }

textarea { resize: vertical; }

input::placeholder, textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
}

button, [role="button"] { cursor: pointer; }

:disabled { cursor: default; }

img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
}

img, video {
    max-width: 100%;
    height: auto;
}

[hidden] { display: none; }

/* --------------------------------------------------------------------------
   2. Márka színek CSS változókként
   -------------------------------------------------------------------------- */
:root {
    --brand-lime: #cedc28;
    --brand-teal: #0d3537;
    --brand-tealLight: #144c4f;
    --brand-dark: #051819;
    --brand-gray: #1e2d2f;
}

/* --------------------------------------------------------------------------
   3. Selection (a body-n: selection:bg-brand-lime selection:text-brand-dark)
   -------------------------------------------------------------------------- */
body::selection { background-color: var(--brand-lime); color: var(--brand-dark); }
body ::selection { background-color: var(--brand-lime); color: var(--brand-dark); }

/* Tailwind 'selection:' modifier kompatibilitás (osztály a body-n) */
.selection\:bg-brand-lime::selection,
.selection\:bg-brand-lime *::selection { background-color: var(--brand-lime); }
.selection\:text-brand-dark::selection,
.selection\:text-brand-dark *::selection { color: var(--brand-dark); }

/* --------------------------------------------------------------------------
   4. HTML scroll-smooth (a <html class="scroll-smooth"> miatt)
   -------------------------------------------------------------------------- */
html.scroll-smooth { scroll-behavior: smooth; }

/* ==========================================================================
   5. UTILITY OSZTÁLYOK (Tailwind kompatibilis)
   ========================================================================== */

/* Layout: display */
.block          { display: block; }
.inline-block   { display: inline-block; }
.inline         { display: inline; }
.flex           { display: flex; }
.inline-flex    { display: inline-flex; }
.grid           { display: grid; }
.hidden         { display: none; }

/* Position */
.fixed    { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky   { position: sticky; }

/* Inset */
.inset-0   { top: 0; right: 0; bottom: 0; left: 0; }
.top-0     { top: 0; }
.top-1     { top: 0.25rem; }
.top-4     { top: 1rem; }
.top-6     { top: 1.5rem; }
.top-1\/2  { top: 50%; }
.-top-4    { top: -1rem; }
.-top-6    { top: -1.5rem; }
.-top-12   { top: -3rem; }
.-top-40   { top: -10rem; }
.bottom-1  { bottom: 0.25rem; }
.bottom-6  { bottom: 1.5rem; }
.left-0    { left: 0; }
.left-1    { left: 0.25rem; }
.left-1\/2 { left: 50%; }
.-left-6   { left: -1.5rem; }
.-left-40  { left: -10rem; }
.right-0   { right: 0; }
.right-6   { right: 1.5rem; }
.-right-4  { right: -1rem; }
.-right-6  { right: -1.5rem; }

/* Z-index */
.-z-10 { z-index: -10; }
.z-0   { z-index: 0; }
.z-10  { z-index: 10; }
.z-20  { z-index: 20; }
.z-30  { z-index: 30; }
.z-50  { z-index: 50; }

/* Order */
.order-last { order: 9999; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.col-span-1  { grid-column: span 1 / span 1; }

/* Flex */
.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }

/* Items / justify / self */
.items-start   { align-items: flex-start; }
.items-center  { align-items: center; }
.items-end     { align-items: flex-end; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end     { justify-content: flex-end; }
.self-end        { align-self: flex-end; }

/* Gap */
.gap-1\.5 { gap: 0.375rem; }
.gap-2    { gap: 0.5rem; }
.gap-3    { gap: 0.75rem; }
.gap-4    { gap: 1rem; }
.gap-6    { gap: 1.5rem; }
.gap-8    { gap: 2rem; }
.gap-12   { gap: 3rem; }

/* Space between (X / Y) */
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.375rem; }
.space-x-2   > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-3   > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-4   > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-8   > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-1   > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }
.space-y-2   > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3   > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4   > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6   > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }

/* Width */
.w-1\.5      { width: 0.375rem; }
.w-2\.5      { width: 0.625rem; }
.w-4         { width: 1rem; }
.w-8         { width: 2rem; }
.w-12        { width: 3rem; }
.w-16        { width: 4rem; }
.w-28        { width: 7rem; }
.w-96        { width: 24rem; }
.w-auto      { width: auto; }
.w-full      { width: 100%; }
.w-\[400px\] { width: 400px; }

/* Height */
.h-1         { height: 0.25rem; }
.h-1\.5      { height: 0.375rem; }
.h-2         { height: 0.5rem; }
.h-2\.5      { height: 0.625rem; }
.h-4         { height: 1rem; }
.h-5         { height: 1.25rem; }
.h-8         { height: 2rem; }
.h-10        { height: 2.5rem; }
.h-12        { height: 3rem; }
.h-14        { height: 3.5rem; }
.h-20        { height: 5rem; }
.h-36        { height: 9rem; }
.h-96        { height: 24rem; }
.h-full      { height: 100%; }
.h-\[400px\] { height: 400px; }

/* Aspect ratio */
.aspect-\[9\/16\] { aspect-ratio: 9 / 16; }

/* Max-width / max-height */
.max-w-2xl       { max-width: 42rem; }
.max-w-3xl       { max-width: 48rem; }
.max-w-4xl       { max-width: 56rem; }
.max-w-7xl       { max-width: 80rem; }
.max-w-sm        { max-width: 24rem; }
.max-w-\[340px\] { max-width: 340px; }
.max-h-full      { max-height: 100%; }

/* Margin */
.mx-auto  { margin-left: auto; margin-right: auto; }
.mx-3     { margin-left: 0.75rem; margin-right: 0.75rem; }
.ml-2     { margin-left: 0.5rem; }
.ml-auto  { margin-left: auto; }
.mr-1     { margin-right: 0.25rem; }
.mr-1\.5  { margin-right: 0.375rem; }
.mr-2     { margin-right: 0.5rem; }
.mt-1     { margin-top: 0.25rem; }
.mt-0\.5  { margin-top: 0.125rem; }
.mt-2     { margin-top: 0.5rem; }
.mt-3     { margin-top: 0.75rem; }
.mt-4     { margin-top: 1rem; }
.mt-6     { margin-top: 1.5rem; }
.mt-auto  { margin-top: auto; }
.mb-0\.5  { margin-bottom: 0.125rem; }
.mb-2     { margin-bottom: 0.5rem; }
.mb-3     { margin-bottom: 0.75rem; }
.mb-4     { margin-bottom: 1rem; }
.mb-6     { margin-bottom: 1.5rem; }
.mb-8     { margin-bottom: 2rem; }
.mb-12    { margin-bottom: 3rem; }
.mb-16    { margin-bottom: 4rem; }

/* Padding */
.p-1     { padding: 0.25rem; }
.p-2     { padding: 0.5rem; }
.p-2\.5  { padding: 0.625rem; }
.p-3     { padding: 0.75rem; }
.p-3\.5  { padding: 0.875rem; }
.p-4     { padding: 1rem; }
.p-5     { padding: 1.25rem; }
.p-6     { padding: 1.5rem; }
.p-8     { padding: 2rem; }

.px-1\.5  { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2     { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5  { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3     { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4     { padding-left: 1rem; padding-right: 1rem; }
.px-5     { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6     { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8     { padding-left: 2rem; padding-right: 2rem; }

.py-0\.5  { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1     { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5  { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2     { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5  { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3     { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5  { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4     { padding-top: 1rem; padding-bottom: 1rem; }
.py-12    { padding-top: 3rem; padding-bottom: 3rem; }
.py-20    { padding-top: 5rem; padding-bottom: 5rem; }

.pt-2  { padding-top: 0.5rem; }
.pt-4  { padding-top: 1rem; }
.pt-6  { padding-top: 1.5rem; }
.pt-8  { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-2  { padding-bottom: 0.5rem; }
.pb-3  { padding-bottom: 0.75rem; }
.pb-4  { padding-bottom: 1rem; }
.pb-6  { padding-bottom: 1.5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-4  { padding-left: 1rem; }

/* Typography: size */
.text-\[6px\]  { font-size: 6px; line-height: 1; }
.text-\[9px\]  { font-size: 9px; line-height: 1.2; }
.text-\[10px\] { font-size: 10px; line-height: 1.2; }
.text-\[11px\] { font-size: 11px; line-height: 1.3; }
.text-xs       { font-size: 0.75rem;  line-height: 1rem; }
.text-sm       { font-size: 0.875rem; line-height: 1.25rem; }
.text-base     { font-size: 1rem;     line-height: 1.5rem; }
.text-lg       { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl       { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl      { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl      { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl      { font-size: 2.25rem;  line-height: 2.5rem; }
.text-8xl      { font-size: 6rem;     line-height: 1; }

/* Typography: weight */
.font-normal     { font-weight: 400; }
.font-semibold   { font-weight: 600; }
.font-bold       { font-weight: 700; }
.font-extrabold  { font-weight: 800; }
.font-black      { font-weight: 900; }

/* Typography: family */
.font-display { font-family: Impact, "Arial Black", sans-serif; }

/* Typography: text styling */
.uppercase       { text-transform: uppercase; }
.italic          { font-style: italic; }
.tracking-tight  { letter-spacing: -0.025em; }
.tracking-wide   { letter-spacing: 0.025em; }
.tracking-wider  { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-left       { text-align: left; }
.text-center     { text-align: center; }
.text-right      { text-align: right; }

/* Text colors */
.text-white          { color: #ffffff; }
.text-brand-dark     { color: var(--brand-dark); }
.text-brand-lime     { color: var(--brand-lime); }
.text-brand-lime\/10  { color: rgba(206, 220, 40, 0.10); }
.text-brand-lime\/80  { color: rgba(206, 220, 40, 0.80); }
.text-gray-300       { color: #d1d5db; }
.text-gray-400       { color: #9ca3af; }
.text-zinc-300       { color: #d4d4d8; }
.text-zinc-400       { color: #a1a1aa; }
.text-zinc-500       { color: #71717a; }
.text-cyan-400       { color: #22d3ee; }
.text-emerald-400    { color: #34d399; }
.text-pink-400       { color: #f472b6; }
.text-red-400        { color: #f87171; }
.text-red-500        { color: #ef4444; }
.text-yellow-400     { color: #facc15; }

/* Background colors */
.bg-black            { background-color: #000000; }
.bg-black\/55        { background-color: rgba(0, 0, 0, 0.55); }
.bg-white            { background-color: #ffffff; }
.bg-brand-dark       { background-color: var(--brand-dark); }
.bg-brand-dark\/80   { background-color: rgba(5, 24, 25, 0.80); }
.bg-brand-dark\/90   { background-color: rgba(5, 24, 25, 0.90); }
.bg-brand-dark\/95   { background-color: rgba(5, 24, 25, 0.95); }
.bg-brand-lime       { background-color: var(--brand-lime); }
.bg-brand-lime\/10   { background-color: rgba(206, 220, 40, 0.10); }
.bg-brand-lime\/15   { background-color: rgba(206, 220, 40, 0.15); }
.bg-brand-lime\/20   { background-color: rgba(206, 220, 40, 0.20); }
.bg-brand-teal       { background-color: var(--brand-teal); }
.bg-brand-teal\/5    { background-color: rgba(13, 53, 55, 0.05); }
.bg-brand-teal\/10   { background-color: rgba(13, 53, 55, 0.10); }
.bg-brand-teal\/20   { background-color: rgba(13, 53, 55, 0.20); }
.bg-brand-teal\/30   { background-color: rgba(13, 53, 55, 0.30); }
.bg-brand-teal\/40   { background-color: rgba(13, 53, 55, 0.40); }
.bg-brand-teal\/60   { background-color: rgba(13, 53, 55, 0.60); }
.bg-brand-teal\/80   { background-color: rgba(13, 53, 55, 0.80); }
.bg-emerald-500\/20  { background-color: rgba(16, 185, 129, 0.20); }
.bg-red-600          { background-color: #dc2626; }
.bg-red-600\/30      { background-color: rgba(220, 38, 38, 0.30); }
.bg-red-950\/40      { background-color: rgba(69, 10, 10, 0.40); }
.bg-zinc-400         { background-color: #a1a1aa; }
.bg-zinc-500         { background-color: #71717a; }
.bg-zinc-800         { background-color: #27272a; }
.bg-zinc-900         { background-color: #18181b; }

/* Background image (gradients) */
.bg-cover    { background-size: cover; }
.bg-center   { background-position: center; }
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-black {
    --tw-gradient-from: #000000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0));
}
.from-brand-teal\/30 {
    --tw-gradient-from: rgba(13, 53, 55, 0.30);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(13,53,55,0));
}
.via-transparent {
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0,0,0,0));
}
.via-brand-dark {
    --tw-gradient-stops: var(--tw-gradient-from), var(--brand-dark), var(--tw-gradient-to, rgba(5,24,25,0));
}
.to-black\/80   { --tw-gradient-to: rgba(0, 0, 0, 0.80); }
.to-brand-dark  { --tw-gradient-to: var(--brand-dark); }

/* Border width */
.border    { border-width: 1px; }
.border-2  { border-width: 2px; }
.border-4  { border-width: 4px; }
.border-b  { border-bottom-width: 1px; }
.border-b-2{ border-bottom-width: 2px; }
.border-l-4{ border-left-width: 4px; }
.border-t  { border-top-width: 1px; }
.border-y  { border-top-width: 1px; border-bottom-width: 1px; }

/* Border colors */
.border-white\/10        { border-color: rgba(255, 255, 255, 0.10); }
.border-brand-dark       { border-color: var(--brand-dark); }
.border-brand-lime       { border-color: var(--brand-lime); }
.border-brand-lime\/20   { border-color: rgba(206, 220, 40, 0.20); }
.border-brand-lime\/30   { border-color: rgba(206, 220, 40, 0.30); }
.border-brand-lime\/40   { border-color: rgba(206, 220, 40, 0.40); }
.border-brand-lime\/50   { border-color: rgba(206, 220, 40, 0.50); }
.border-brand-teal       { border-color: var(--brand-teal); }
.border-brand-teal\/20   { border-color: rgba(13, 53, 55, 0.20); }
.border-brand-teal\/30   { border-color: rgba(13, 53, 55, 0.30); }
.border-brand-teal\/40   { border-color: rgba(13, 53, 55, 0.40); }
.border-brand-teal\/50   { border-color: rgba(13, 53, 55, 0.50); }
.border-brand-teal\/60   { border-color: rgba(13, 53, 55, 0.60); }
.border-red-500          { border-color: #ef4444; }
.border-zinc-500         { border-color: #71717a; }
.border-zinc-700         { border-color: #3f3f46; }

/* Border radius */
.rounded         { border-radius: 0.25rem; }
.rounded-md      { border-radius: 0.375rem; }
.rounded-lg      { border-radius: 0.5rem; }
.rounded-xl      { border-radius: 0.75rem; }
.rounded-2xl     { border-radius: 1rem; }
.rounded-3xl     { border-radius: 1.5rem; }
.rounded-full    { border-radius: 9999px; }
.rounded-r       { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-b-xl    { border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }

/* Shadows */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl{ box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-\[0_0_15px_rgba\(206\,220\,40\,0\.2\)\] {
    box-shadow: 0 0 15px rgba(206, 220, 40, 0.2);
}
.shadow-\[0_20px_50px_rgba\(206\,220\,40\,0\.15\)\] {
    box-shadow: 0 20px 50px rgba(206, 220, 40, 0.15);
}
.shadow-\[0_4px_20px_rgba\(206\,220\,40\,0\.3\)\] {
    box-shadow: 0 4px 20px rgba(206, 220, 40, 0.3);
}

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Object-fit */
.object-cover    { object-fit: cover; }
.object-contain  { object-fit: contain; }

/* Pointer / cursor / select */
.pointer-events-none { pointer-events: none; }
.cursor-pointer      { cursor: pointer; }
.select-none         { user-select: none; }

/* Transforms */
.transform           { transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.-translate-x-1\/2   { --tw-translate-x: -50%; transform: translate(-50%, var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) scale(var(--tw-scale-x, 1), var(--tw-scale-y, 1)); }
.translate-y-20      { --tw-translate-y: 5rem;  transform: translate(var(--tw-translate-x, 0), 5rem) rotate(var(--tw-rotate, 0)) scale(var(--tw-scale-x, 1), var(--tw-scale-y, 1)); }
.rotate-6            { --tw-rotate: 6deg;   transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(6deg)  scale(var(--tw-scale-x, 1), var(--tw-scale-y, 1)); }
.rotate-12           { --tw-rotate: 12deg;  transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(12deg) scale(var(--tw-scale-x, 1), var(--tw-scale-y, 1)); }

/* Group-hover (Tailwind: .group:hover .group-hover\:xxx) */
.group:hover .group-hover\:scale-105 {
    transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) scale(1.05);
}
.group:hover .group-hover\:text-brand-lime { color: var(--brand-lime); }
.group:hover .group-hover\:text-brand-lime\/25 { color: rgba(206, 220, 40, 0.25); }

/* Filter */
.filter           { filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, ); }
.blur-\[120px\]   { filter: blur(120px); }
.blur-\[150px\]   { filter: blur(150px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xs { backdrop-filter: blur(2px);  -webkit-backdrop-filter: blur(2px); }

/* Opacity */
.opacity-0 { opacity: 0; }

/* Disabled state (gomb letiltás form submission közben) */
.disabled\:opacity-60:disabled       { opacity: 0.6; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* Transitions */
.transition-all       { transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors    { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300         { transition-duration: 300ms; }

/* Animations (Tailwind beépített kulcskockákkal) */
.animate-bounce { animation: bounce 1s infinite; }
.animate-ping   { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-pulse  { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50%      { transform: none;              animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

/* Form / input */
.appearance-none        { appearance: none; -webkit-appearance: none; }
.accent-brand-lime      { accent-color: var(--brand-lime); }

/* Focus states (Tailwind: .focus\:xxx:focus) */
.focus\:border-brand-lime:focus { border-color: var(--brand-lime); }
.focus\:outline-none:focus      { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-1:focus            { box-shadow: 0 0 0 1px var(--brand-lime); }
.focus\:ring-brand-lime:focus   { box-shadow: 0 0 0 1px var(--brand-lime); }

/* Hover states */
.hover\:bg-brand-lime:hover       { background-color: var(--brand-lime); }
.hover\:bg-brand-teal:hover       { background-color: var(--brand-teal); }
.hover\:bg-brand-tealLight:hover  { background-color: var(--brand-tealLight); }
.hover\:bg-red-600:hover          { background-color: #dc2626; }
.hover\:bg-white:hover            { background-color: #ffffff; }
.hover\:bg-zinc-700:hover         { background-color: #3f3f46; }
.hover\:bg-zinc-900:hover         { background-color: #18181b; }
.hover\:border-brand-lime:hover         { border-color: var(--brand-lime); }
.hover\:border-brand-lime\/50:hover     { border-color: rgba(206, 220, 40, 0.50); }
.hover\:border-brand-lime\/80:hover     { border-color: rgba(206, 220, 40, 0.80); }
.hover\:text-brand-dark:hover     { color: var(--brand-dark); }
.hover\:text-brand-lime:hover     { color: var(--brand-lime); }
.hover\:text-white:hover          { color: #ffffff; }
.hover\:shadow-none:hover         { box-shadow: 0 0 #0000; }

/* Scrollbar (sajátos) */
.scrollbar-thin              { scrollbar-width: thin; }
.scrollbar-thumb-zinc-800::-webkit-scrollbar-thumb { background-color: #27272a; }

/* ==========================================================================
   6. RESPONSIVE (sm: 640px, md: 768px, lg: 1024px)
   ========================================================================== */

@media (min-width: 640px) {
    .sm\:block          { display: block; }
    .sm\:inline         { display: inline; }
    .sm\:inline-block   { display: inline-block; }
    .sm\:flex-row       { flex-direction: row; }
    .sm\:grid-cols-2    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:h-12           { height: 3rem; }
    .sm\:h-16           { height: 4rem; }
    .sm\:w-auto         { width: auto; }
    .sm\:p-8            { padding: 2rem; }
    .sm\:p-10           { padding: 2.5rem; }
    .sm\:px-6           { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:mt-0           { margin-top: 0; }
    .sm\:text-sm        { font-size: 0.875rem; line-height: 1.25rem; }
    .sm\:text-base      { font-size: 1rem;     line-height: 1.5rem; }
    .sm\:text-lg        { font-size: 1.125rem; line-height: 1.75rem; }
    .sm\:text-xl        { font-size: 1.25rem;  line-height: 1.75rem; }
    .sm\:text-3xl       { font-size: 1.875rem; line-height: 2.25rem; }
    .sm\:text-5xl       { font-size: 3rem;     line-height: 1; }
    .sm\:text-6xl       { font-size: 3.75rem;  line-height: 1; }
}

@media (min-width: 768px) {
    .md\:flex            { display: flex; }
    .md\:hidden          { display: none; }
    .md\:grid-cols-3     { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4     { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:col-span-2      { grid-column: span 2 / span 2; }
    .md\:pt-20           { padding-top: 5rem; }
    .md\:pb-32           { padding-bottom: 8rem; }
    .md\:max-w-\[380px\] { max-width: 380px; }
}

@media (min-width: 1024px) {
    .lg\:block            { display: block; }
    .lg\:grid-cols-12     { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-5       { grid-column: span 5  / span 5; }
    .lg\:col-span-6       { grid-column: span 6  / span 6; }
    .lg\:col-span-7       { grid-column: span 7  / span 7; }
    .lg\:order-first      { order: -9999; }
    .lg\:text-left        { text-align: left; }
    .lg\:text-7xl         { font-size: 4.5rem; line-height: 1; }
    .lg\:justify-start    { justify-content: flex-start; }
    .lg\:mx-0             { margin-left: 0; margin-right: 0; }
    .lg\:px-8             { padding-left: 2rem; padding-right: 2rem; }
}

/* ==========================================================================
   7. EGYEDI/OLDAL-SPECIFIKUS OSZTÁLYOK (a HTML-ben szerepelnek nevesítve)
   ========================================================================== */

/* Scrollbar testreszabás a márkához */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb {
    background: var(--brand-lime);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #b5c422; }

/* Body alapszín */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--brand-dark);
    color: #ffffff;
    overflow-x: hidden;
}

/* Lime pulzáló CTA gomb animáció */
@keyframes pulse-lime {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(206, 220, 40, 0.7);
    }
    50% {
        transform: scale(1.03);
        opacity: 0.95;
        box-shadow: 0 0 20px 10px rgba(206, 220, 40, 0);
    }
}
.pulse-lime-btn { animation: pulse-lime 2s infinite ease-in-out; }

/* Scanline overlay az interaktív monitorhoz */
.scanlines {
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    z-index: 10;
}

/* Blur átmenet */
.transition-blur { transition: filter 0.5s ease; }

/* Brand intro loader */
#brand-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--brand-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#brand-loader.hidden-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#brand-loader img {
    max-width: 70%;
    width: 320px;
    height: auto;
    animation: loader-fade-in 0.8s ease forwards;
}
#brand-loader .loader-bar {
    margin-top: 28px;
    width: 180px;
    height: 3px;
    background: rgba(206, 220, 40, 0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
#brand-loader .loader-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand-lime);
    transform: translateX(-100%);
    animation: loader-progress 1.4s ease-in-out forwards;
}
@keyframes loader-fade-in {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes loader-progress {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* Stream csatorna-vízjel */
.stream-watermark {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 15;
    height: 22px;
    width: auto;
    opacity: 0.85;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
    pointer-events: none;
}
