/* =========================
   RESET & GLOBAL
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    color: #ffffff;
    background:
        radial-gradient(circle at top center, rgba(0, 136, 255, 0.12), transparent 35%),
        #040404;
    min-height: 100vh;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    min-height: 110px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(0, 136, 255, 0.15);
    backdrop-filter: blur(10px);
    overflow: visible;
}

.navbar-logo,
.logo-area {
    width: 200px;
    margin-left: -30px;
    margin-top: 30px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.logo-area img,
.navbar-logo-img {
    width: 220px !important;
    height: auto !important;
    max-height: none !important;
    display: block;
    object-fit: contain;
    filter: brightness(50) contrast(10);
}
.header-actions,
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.header-btn,
.main-nav a {
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 16px;
    border: 2px solid #004f8f;
    background: #07111d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}

.header-btn:hover,
.main-nav a:hover,
.main-nav a.active {
    background: #0d1a2a;
    color: #0088ff;
    border-color: #0088ff;
}

.menu-toggle {
    display: none;
    background: #07111d;
    color: #ffffff;
    border: 2px solid #004f8f;
    border-radius: 18px;
    font-size: 34px;
    line-height: 1;
    padding: 16px 22px;
    cursor: pointer;
}

/* =========================
   HERO / SHOP START
========================= */

.hero-section {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 30px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: left;
}

.hero-text {
    max-width: 600px;
}

.hero-kicker {
    display: inline-block;
    color: #0088ff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.hero-section h1 {
    font-size: clamp(3rem, 7vw, 72px);
    font-weight: 900;
    line-height: 1;
}

.hero-section p,
.hero-sub {
    margin-top: 20px;
    max-width: 700px;
    font-size: 16px;
    color: #9f9f9f;
}

.hero-logo {
    width: 220px;
    height: 220px;
    margin-left: -50px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    filter:
        drop-shadow(0 0 12px rgba(77, 163, 255, 0.45))
        drop-shadow(0 0 28px rgba(77, 163, 255, 0.25));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.03);
}

/* =========================
   FILTER
========================= */

.shop-toolbar {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.shop-toolbar input,
.shop-toolbar select {
    min-width: 240px;
    padding: 14px 18px;
    background: #0d0d0d;
    color: #ffffff;
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.shop-toolbar input:focus,
.shop-toolbar select:focus {
    border-color: #0088ff;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.3);
}

/* =========================
   PRODUCT GRID
========================= */

.product-grid {
    max-width: 1400px;
    margin: auto;
    padding: 0 30px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #090909;
    border: 1px solid rgba(0, 136, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 136, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 136, 255, 0.2);
}

.product-image {
    display: block;
    height: 300px;
    overflow: hidden;
}

.product-image img,
.product-detail-image img,
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image img {
    transition: 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    color: #0088ff;
    font-size: 40px;
    font-weight: 900;
}

.product-content {
    padding: 20px;
}

.product-category {
    color: #0088ff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content h2 {
    margin-top: 10px;
    font-size: 24px;
}

.product-content p {
    margin-top: 12px;
    color: #9d9d9d;
    line-height: 1.6;
}

.product-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-footer strong {
    font-size: 24px;
}

.stock {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.available {
    background: rgba(0, 255, 100, 0.15);
    color: #00ff80;
}

.soldout {
    background: rgba(255, 0, 0, 0.15);
    color: #ff5555;
}

.product-btn {
    display: block;
    margin-top: 20px;
    padding: 14px;
    text-align: center;
    border: none;
    border-radius: 12px;
    background: #0088ff;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.product-btn:hover {
    background: #1493ff;
}

.product-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.product-action-buttons .product-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* =========================
   EMPTY STATE
========================= */

.empty-state,
.cart-empty {
    text-align: center;
    background: #0b0b0b;
    border: 1px solid rgba(0, 136, 255, 0.18);
    border-radius: 20px;
    padding: 70px 30px;
}

.empty-state h2,
.cart-empty h2 {
    font-size: 2rem;
}

.empty-state p,
.cart-empty p {
    color: #999999;
    margin: 15px 0 25px;
}

/* =========================
   PRODUCT DETAIL
========================= */

.product-detail-page,
.cart-page,
.checkout-page {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #0b0b0b;
    border: 1px solid rgba(0, 136, 255, 0.18);
    border-radius: 24px;
    padding: 35px;
}

.product-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-detail-image {
    min-height: 520px;
    background: #111111;
    border-radius: 18px;
    overflow: hidden;
}

.product-detail-info h1 {
    margin-top: 12px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.product-detail-description {
    margin-top: 25px;
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.product-detail-price {
    display: block;
    margin-top: 30px;
    font-size: 2.3rem;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-thumb {
    width: 90px;
    height: 90px;
    padding: 0;
    border: 1px solid rgba(0, 136, 255, 0.25);
    border-radius: 12px;
    overflow: hidden;
    background: #111111;
    cursor: pointer;
}

.product-thumb:hover {
    border-color: #0088ff;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   FORMS
========================= */

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.address-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.add-cart-form {
    margin-top: 35px;
}

.form-group label,
.add-cart-form label,
.checkout-form-card label,
.modal-box label {
    display: block;
    margin-bottom: 8px;
    color: #cccccc;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea,
.add-cart-form select,
.add-cart-form input,
.checkout-form-card input,
.checkout-form-card textarea,
.checkout-form-card select,
.modal-box input {
    width: 100%;
    padding: 15px;
    background: #101010;
    color: #ffffff;
    border: 1px solid rgba(0, 136, 255, 0.25);
    border-radius: 12px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.add-cart-form select:focus,
.add-cart-form input:focus,
.checkout-form-card input:focus,
.checkout-form-card textarea:focus,
.checkout-form-card select:focus,
.modal-box input:focus {
    border-color: #0088ff;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.25);
}

/* =========================
   CART
========================= */

.cart-header,
.checkout-header {
    margin-bottom: 40px;
}

.cart-header h1,
.checkout-header h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
}

.cart-header p,
.checkout-header p {
    margin-top: 15px;
    color: #999999;
    font-size: 1.1rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 130px 1fr 130px 150px;
    gap: 20px;
    align-items: center;
    background: #0b0b0b;
    border: 1px solid rgba(0, 136, 255, 0.18);
    border-radius: 18px;
    padding: 18px;
}

.cart-item-image {
    height: 130px;
    background: #111111;
    border-radius: 14px;
    overflow: hidden;
}

.cart-item-info h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.cart-item-info p {
    color: #aaaaaa;
    margin-top: 6px;
}

.cart-item-quantity label {
    display: block;
    color: #cccccc;
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-item-quantity input {
    width: 100%;
    padding: 12px;
    background: #101010;
    color: #ffffff;
    border: 1px solid rgba(0, 136, 255, 0.25);
    border-radius: 10px;
}

.cart-item-quantity small {
    display: block;
    margin-top: 6px;
    color: #777777;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.cart-remove {
    color: #ff6666;
    font-size: 0.9rem;
    font-weight: 700;
}

.cart-summary,
.checkout-summary {
    position: sticky;
    top: 110px;
    background: #0b0b0b;
    border: 1px solid rgba(0, 136, 255, 0.22);
    border-radius: 20px;
    padding: 25px;
}

.cart-summary h2,
.checkout-summary h2 {
    margin-bottom: 22px;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row span,
.summary-total span {
    color: #aaaaaa;
}

.summary-total {
    border-bottom: none;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.cart-update-btn {
    width: 100%;
    margin-bottom: 12px;
}

.cart-back {
    display: block;
    margin-top: 15px;
    text-align: center;
    color: #999999;
    font-weight: 700;
}

.cart-back:hover {
    color: #0088ff;
}

.cart-alert {
    max-width: 1400px;
    margin-bottom: 25px;
    padding: 15px 18px;
    border-radius: 12px;
    font-weight: 700;
}

.cart-alert.error {
    background: rgba(255, 60, 60, 0.12);
    color: #ff7070;
    border: 1px solid rgba(255, 60, 60, 0.25);
}

/* =========================
   CHECKOUT
========================= */

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: start;
}

.checkout-form-card,
.checkout-summary {
    background: #0b0b0b;
    border: 1px solid rgba(0, 136, 255, 0.18);
    border-radius: 20px;
    padding: 30px;
}

.checkout-form-card h2 {
    margin-bottom: 25px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-item span {
    display: block;
    margin-top: 5px;
    color: #999999;
    font-size: 0.9rem;
}

/* =========================
   MODALS / POPUPS
========================= */

.modal-overlay,
.success-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
}

.modal-overlay.active,
.success-modal-overlay.active {
    display: flex;
}

.modal-box,
.success-modal {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: #0b0b0b;
    border: 1px solid rgba(0, 136, 255, 0.35);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 0 45px rgba(0, 136, 255, 0.25);
}

.modal-box h2,
.success-modal h2 {
    margin-bottom: 25px;
    font-size: 32px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.success-modal {
    max-width: 480px;
    text-align: center;
}

.success-modal p {
    color: #aaaaaa;
    line-height: 1.6;
}

.order-number {
    margin: 25px 0;
}

.order-number strong {
    color: #0088ff;
    font-size: 1.3rem;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.popup-box {
    width: 500px;
    max-width: 90%;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-box h2 {
    margin-bottom: 20px;
}

.popup-box p {
    margin-bottom: 15px;
    color: #dddddd;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    border-top: 1px solid rgba(0, 136, 255, 0.15);
    background: #050505;
    padding: 50px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 900;
    text-align: center;
}

.footer-logo img {
    height: 160px;
    width: auto;
    display: inline-block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #999999;
}

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

.footer-copyright {
    color: #666666;
}

/* =========================
   COMING SOON / COMMUNITY / EXTRA PAGES
========================= */

.coming-soon-page {
    padding-top: 50px;
}

.coming-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.coming-row.reverse {
    flex-direction: row-reverse;
}

.coming-banner {
    width: 50%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(0, 136, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 136, 255, 0.15);
}

.coming-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.coming-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.coming-text p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.community-strip {
    max-width: 1200px;
    margin: 25px auto 40px;
    padding: 0 20px;
}

.community-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    background: linear-gradient(90deg, rgba(0, 136, 255, 0.12), rgba(0, 136, 255, 0.05));
    border: 1px solid rgba(0, 136, 255, 0.25);
    border-radius: 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    transition: 0.25s;
    text-align: center;
}

.community-strip a:hover {
    transform: translateY(-2px);
    border-color: #0088ff;
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.25);
}

.back-shop,
.page-buttons {
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin: 20px 0 30px;
}

.back-shop a,
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #0a1420;
    border: 1px solid rgba(0, 136, 255, 0.25);
    border-radius: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
}

.back-shop a:hover,
.page-btn:hover {
    border-color: #0088ff;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.25);
    transform: translateY(-2px);
}

.meeting-header {
    text-align: center;
    margin-bottom: 60px;
}

.meeting-header h1 {
    font-size: clamp(2.8rem, 7vw, 72px);
    font-weight: 900;
}

/* =========================
   TICKETS
========================= */

.ticket-order-card {
    margin-top: 40px;
    padding: 35px;
    background: #131313;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.ticket-order-card h3 {
    margin-bottom: 25px;
    font-size: 32px;
}

.ticket-price {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
}

.ticket-price span {
    color: #ff8c00;
}

.ticket-order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-buy-btn {
    margin-top: 15px;
    border: none;
    background: #ff8c00;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.ticket-buy-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .site-header {
        padding: 18px 24px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-btn,
    .main-nav a {
        padding: 12px 14px;
        font-size: 12px;
    }
}

@media (max-width: 1000px) {
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .checkout-summary {
        position: static;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        min-height: 110px;
        padding: 20px 30px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-logo-img,
    .logo-area img {
        height: 70px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        z-index: 100001;
    }

    .header-actions,
    .main-nav,
    #mainNav {
        display: none;
    }

    .header-actions.active,
    .main-nav.active,
    #mainNav.active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
        background: #07111d;
        border-top: 1px solid #004f8f;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
        z-index: 100000;
    }

    .header-actions .header-btn,
    .main-nav a,
    #mainNav .header-btn {
        width: 100%;
        min-height: 54px;
        justify-content: flex-start;
        font-size: 14px;
    }

    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 360px;
    }

    .coming-row,
    .coming-row.reverse {
        flex-direction: column;
    }

    .coming-banner {
        width: 100%;
    }

    .coming-text {
        text-align: center;
        padding: 25px 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin: 40px auto 50px;
        padding: 0 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .hero-section p,
    .hero-sub {
        font-size: 15px;
    }

    .shop-toolbar input,
    .shop-toolbar select {
        width: 100%;
        min-width: unset;
    }

    .address-grid,
    .form-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .footer-logo img {
        height: 100px;
    }

    .page-buttons,
    .back-shop {
        justify-content: center;
        padding: 0 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .site-header {
        min-height: 100px;
        padding: 18px 20px;
    }

    .navbar-logo-img,
    .logo-area img {
        height: 55px;
    }

    .menu-toggle {
        font-size: 30px;
        padding: 14px 18px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 70px;
    }

    .cart-item {
        grid-template-columns: 100px 1fr;
    }

    .cart-item-quantity,
    .cart-item-total {
        grid-column: span 2;
        text-align: left;
    }

    .cart-header h1,
    .checkout-header h1 {
        font-size: 2.6rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .ticket-price {
        flex-direction: column;
    }
}

/* =========================
   LEGAL PAGES
   Impressum / AGB / Datenschutz / Widerruf
========================= */

.legal-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.legal-hero {
    margin: 70px 0 45px;
    padding: 45px;
    background:
        linear-gradient(135deg, rgba(0, 136, 255, 0.16), rgba(0, 0, 0, 0.2)),
        #090909;
    border: 1px solid rgba(0, 136, 255, 0.22);
    border-radius: 28px;
    box-shadow: 0 0 40px rgba(0, 136, 255, 0.12);
    overflow: hidden;
}

.legal-hero .hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.legal-hero .hero-text h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
}

.legal-hero .hero-text h1 span {
    color: #0088ff;
    font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.legal-hero .hero-sub {
    margin-top: 18px;
    color: #b8b8b8;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-info-grid {
    max-width: 1200px;
    margin: 0 auto 35px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.impressum-box,
.legal-content {
    background: #0b0b0b;
    border: 1px solid rgba(0, 136, 255, 0.18);
    border-radius: 22px;
    box-shadow: 0 0 25px rgba(0, 136, 255, 0.08);
    text-align:center;
}

.impressum-box {
    padding: 30px;
    min-height: 100%;
}

.impressum-box-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.impressum-box p,
.legal-content p {
    color: #b8b8b8;
    line-height: 1.8;
    font-size: 1.02rem;
}

.impressum-box strong,
.legal-content strong {
    color: #ffffff;
}

.impressum-box .note {
    color: #8f8f8f;
    font-size: 0.95rem;
}

.email-link {
    color: #0088ff;
    font-weight: 800;
    word-break: break-word;
}

.email-link:hover {
    color: #4dabff;
    text-shadow: 0 0 15px rgba(0, 136, 255, 0.35);
}

.legal-content {
    max-width: 1100px;
    margin: 0 auto 45px;
    padding: 42px;
}

.legal-content h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    color: #ffffff;
}

.legal-content h3 {
    margin: 34px 0 12px;
    padding-left: 16px;
    color: #ffffff;
    font-size: 1.45rem;
}

.legal-content p + p {
    margin-top: 16px;
}

.thorty-banner {
    width: 100%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.thorty-banner img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 0 18px rgba(0, 136, 255, 0.22));
}

.legal-content > .thorty-banner img {
    max-height: 170px;
}

.legal-statements {
    max-width: 900px;
    margin: 55px auto 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 136, 255, 0.12), rgba(0, 136, 255, 0.04));
    border: 1px solid rgba(0, 136, 255, 0.22);
    border-radius: 22px;
    padding: 28px;
}

.legal-statements .statement {
    display: none;
    color: #ffffff;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.2;
}

.legal-statements .statement.active {
    display: block;
}

@media (max-width: 900px) {
    .legal-page {
        padding: 0 20px 60px;
    }

    .legal-hero {
        margin: 35px 0 30px;
        padding: 30px 20px;
    }

    .legal-hero .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .legal-info-grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 28px 22px;
    }
}

@media (max-width: 600px) {
    .legal-hero .hero-text h1 {
        letter-spacing: -1px;
    }

    .impressum-box,
    .legal-content {
        border-radius: 18px;
    }

    .legal-content h3 {
        font-size: 1.22rem;
    }

    .legal-statements {
        min-height: 95px;
        padding: 22px;
    }
}

