/* ============================================
   technozzle.com - site78-de
   CSS ARCHITECTURE: BEM (Block__Element--Modifier)
   PALETTE: Cyber (neon-cyan, matrix-green, cyber-purple, digital-black, circuit-blue, terminal-pink)
   EFFECT: Glassmorphism on cards/CTAs
   TYPOGRAPHY: Space Mono + IBM Plex Sans
   BUTTONS: Outline with fill on hover
   ============================================ */

:root {
    --neon-cyan: #00ffff;
    --matrix-green: #00ff41;
    --cyber-purple: #9d00ff;
    --digital-black: #0d0d0d;
    --circuit-blue: #1e90ff;
    --terminal-pink: #ff10f0;
    --tz-font-heading: 'Space Mono', monospace;
    --tz-font-body: 'IBM Plex Sans', sans-serif;
    --header-height: 72px;
    --tz-max: 1100px;
    --tz-radius: 12px;
    --tz-glass: rgba(255, 255, 255, 0.08);
    --tz-glass-border: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
    :root { --header-height: 64px; }
}

*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
}

body {
    font-family: var(--tz-font-body);
    color: #e0e0e0;
    background: var(--digital-black);
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    width: 100% !important;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Layout wrap */
.tz-wrap {
    width: 100%;
    max-width: var(--tz-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tz-wrap--center { text-align: center; }

/* Header */
.tz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tz-glass-border);
    z-index: 1000;
}

.tz-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    max-width: var(--tz-max);
    margin: 0 auto;
    height: var(--header-height);
    padding: 0 1.5rem;
    gap: 0;
}
.tz-header__inner .tz-logo {
    margin-right: 0;
    margin-left: -0.5rem;
    align-self: center;
}

.tz-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--tz-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.tz-header__sep {
    display: none;
}

.tz-logo__badge {
    background: #2e7d32;
    color: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    border-radius: 6px;
    font-weight: 700;
}

.tz-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: -0.5rem;
}

.tz-nav__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 0.9rem;
}

.tz-nav__link {
    color: #c0c0c0;
    font-size: 0.85rem;
    padding: 0.3rem 0.4rem;
    border-radius: 6px;
    white-space: nowrap;
}

.tz-nav__link:hover {
    color: var(--neon-cyan);
}

.tz-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
    background: transparent;
    border: 1px solid var(--tz-glass-border);
    border-radius: 6px;
}

.tz-burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

@media (max-width: 768px) {
    .tz-burger { display: flex; }
    .tz-nav__list {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        display: none;
        border-bottom: 1px solid var(--tz-glass-border);
        z-index: 999;
    }
    .tz-nav__list.is-open { display: flex; }
    .tz-burger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .tz-burger.is-active span:nth-child(2) { opacity: 0; }
    .tz-burger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* Modals */
.tz-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.tz-modal.is-hidden { display: none; }

.tz-modal__content {
    background: var(--tz-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--tz-glass-border);
    border-radius: var(--tz-radius);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.tz-modal__title {
    font-family: var(--tz-font-heading);
    color: #fff;
    margin: 0 0 1rem;
    font-size: 1.25rem;
}

.tz-modal__text {
    color: #c0c0c0;
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
}

.tz-modal__buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.tz-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.96);
    border-top: 1px solid var(--tz-glass-border);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 1500;
}

.tz-cookie.is-hidden { display: none; }

.tz-cookie p { margin: 0; color: #c0c0c0; font-size: 0.9rem; }
.tz-cookie a { color: var(--neon-cyan); }

/* Buttons - Outline style */
.tz-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    font-family: var(--tz-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tz-btn:hover {
    background: var(--neon-cyan);
    color: var(--digital-black);
}

.tz-btn--primary {
    border-color: var(--matrix-green);
    color: var(--matrix-green);
}

.tz-btn--primary:hover {
    background: var(--matrix-green);
    color: var(--digital-black);
}

.tz-btn--large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Hero */
.tz-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--digital-black) 0%, rgba(30, 144, 255, 0.05) 50%, var(--digital-black) 100%);
    background-attachment: scroll;
}

.tz-hero__inner {
    text-align: center;
    width: 100%;
}

.tz-hero__title {
    font-family: var(--tz-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.tz-hero__title-accent {
    color: var(--neon-cyan);
}

.tz-hero__subtitle {
    color: #b0b0b0;
    max-width: 560px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.tz-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .tz-hero { padding-top: 5rem; padding-bottom: 3rem; }
}

/* Section */
.tz-section {
    padding: 3rem 0;
}

.tz-section__head {
    margin-bottom: 2rem;
    text-align: center;
}

.tz-section__title {
    font-family: var(--tz-font-heading);
    color: #fff;
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
}

.tz-section__subtitle {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin: 0;
}

/* Games grid - Glassmorphism cards */
.tz-games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.tz-game-card {
    width: 100%;
    max-width: 320px;
    background: var(--tz-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--tz-glass-border);
    border-radius: var(--tz-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tz-game-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
}

.tz-game-card__img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.tz-game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tz-game-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tz-game-card__title {
    font-family: var(--tz-font-heading);
    color: #fff;
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}

.tz-game-card__desc {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 0 0 0.75rem;
    flex: 1;
}

.tz-game-card__rating {
    color: var(--matrix-green);
    font-size: 0.85rem;
    margin: 0 0 1rem;
}

/* Benefits row */
.tz-benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.tz-benefit-box {
    flex: 1 1 260px;
    max-width: 320px;
    background: var(--tz-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--tz-glass-border);
    border-radius: var(--tz-radius);
    padding: 1.5rem;
    text-align: center;
}

.tz-benefit-box__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.tz-benefit-box__title {
    font-family: var(--tz-font-heading);
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.tz-benefit-box__text {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.45;
}

/* FAQ */
.tz-faq-list {
    max-width: 640px;
    margin: 0 auto;
}

.tz-faq-item {
    background: var(--tz-glass);
    border: 1px solid var(--tz-glass-border);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.tz-faq-q {
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: var(--tz-font-body);
    font-size: 1rem;
    color: #fff;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.tz-faq-q .tz-faq-icon { color: var(--neon-cyan); font-size: 1.25rem; }
.tz-faq-item.is-open .tz-faq-icon { transform: rotate(45deg); }

.tz-faq-a {
    display: none;
    padding: 0 1.25rem 1rem;
}

.tz-faq-item.is-open .tz-faq-a { display: block; }

.tz-faq-a p { margin: 0; color: #b0b0b0; font-size: 0.95rem; line-height: 1.5; }

/* Disclaimer */
.tz-disclaimer {
    padding: 2.5rem 0;
    background: rgba(0,0,0,0.4);
    border-top: 1px solid var(--tz-glass-border);
    text-align: center;
}

.tz-disclaimer .tz-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tz-disclaimer__title {
    font-family: var(--tz-font-heading);
    color: var(--terminal-pink);
    font-size: 1.1rem;
    margin: 0 0 1rem;
    text-align: center;
}

.tz-disclaimer__text {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 0.75rem;
    text-align: center;
    max-width: 720px;
}

.tz-disclaimer__company {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 1rem 0 0.75rem;
    line-height: 1.5;
    text-align: center;
    max-width: 720px;
}

.tz-disclaimer__text a {
    color: var(--neon-cyan);
}

.tz-disclaimer__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.tz-disclaimer__badges span {
    background: var(--tz-glass);
    border: 1px solid var(--tz-glass-border);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #c0c0c0;
}

.tz-disclaimer__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.tz-disclaimer-logo {
    display: inline-block !important;
    height: 52px !important;
    min-width: 150px !important;
    max-width: 220px !important;
    padding: 10px 18px !important;
    background: rgba(255,255,255,0.96) !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    object-fit: contain !important;
    object-position: center !important;
    overflow: visible !important;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

a:has(> .tz-disclaimer-logo) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tz-disclaimer-logo:hover {
    opacity: 1;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

/* Footer */
.tz-footer {
    padding: 2rem 0 1.5rem;
    border-top: 1px solid var(--tz-glass-border);
    text-align: center;
}

.tz-footer__grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem 3rem;
    margin-bottom: 2rem;
}

.tz-footer__col {
    text-align: center;
    min-width: 0;
    flex: 0 1 auto;
}

.tz-footer__col h3 {
    font-family: var(--tz-font-heading);
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.75rem;
}

.tz-footer__list {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tz-footer__list li { margin-bottom: 0.4rem; }
.tz-footer__list a { color: #a0a0a0; }
.tz-footer__list a:hover { color: var(--neon-cyan); }

.tz-footer__col p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.tz-footer__copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--tz-glass-border);
}

.tz-footer__copyright p {
    color: #808080;
    font-size: 0.85rem;
    margin: 0.35rem 0;
}

/* Page content - centered for blog, guides, reviews */
.tz-page-content {
    padding: 6rem 0 3rem;
    min-height: 60vh;
}

.tz-page-content--center .tz-wrap {
    text-align: center;
}

.tz-page-content--center .tz-section__head,
.tz-page-content--center .tz-article-body,
.tz-page-content--center .tz-benefits-row {
    margin-left: auto;
    margin-right: auto;
}

.tz-article-body {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.tz-page-content--center .tz-article-body {
    text-align: center;
}

.tz-page-content--center .tz-section__head {
    text-align: center;
}

.tz-page-content--center .tz-listing {
    justify-content: center;
}

.tz-article-body h2 {
    font-family: var(--tz-font-heading);
    color: #fff;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.tz-article-body p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.tz-article-body a { color: var(--neon-cyan); }

/* Blog/Guides/Reviews listing - centered */
.tz-listing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.tz-listing a {
    flex: 1 1 280px;
    max-width: 340px;
    text-align: center;
}

/* Account tabs & forms */
.tz-account-tabs__nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tz-account-tabs__btn {
    padding: 0.5rem 1rem;
    font-family: var(--tz-font-body);
    font-size: 0.95rem;
    color: #a0a0a0;
    background: var(--tz-glass);
    border: 1px solid var(--tz-glass-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tz-account-tabs__btn:hover,
.tz-account-tabs__btn.is-active {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.08);
}

.tz-account-tabs__panel {
    display: none;
    max-width: 480px;
    margin: 0 auto;
}

.tz-account-tabs__panel.is-visible {
    display: block;
}

.tz-account-form .tz-form-group {
    margin-bottom: 1rem;
}

.tz-account-form label {
    display: block;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.tz-account-form input[type="text"],
.tz-account-form input[type="email"],
.tz-account-form input[type="password"],
.tz-account-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-family: var(--tz-font-body);
    font-size: 1rem;
    color: #fff;
    background: var(--tz-glass);
    border: 1px solid var(--tz-glass-border);
    border-radius: 8px;
}

.tz-account-form textarea {
    min-height: 100px;
    resize: vertical;
}

.tz-account-contact-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--tz-glass);
    border-radius: 8px;
    border: 1px solid var(--tz-glass-border);
}

.tz-account-contact-info p { margin: 0 0 0.5rem; }

.tz-account-form-intro {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0 0 1rem;
    text-align: center;
}

.body-no-scroll { overflow: hidden !important; }
