/* ============================================================
   MZ-REDESIGN.CSS  –  Isolated styles for MZS new sections
   All selectors are prefixed with .mz- or use [data-mz] to
   avoid bleeding from bootstrap / style.css / responsive.css
   ============================================================ */

/* ---------- RESET FOR NEW SECTIONS ---------- */
[data-mz] *,
[data-mz] *::before,
[data-mz] *::after {
    box-sizing: border-box;
}

[data-mz] {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #f0e8ff;
}

[data-mz] h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

[data-mz] h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: none;
}

[data-mz] p {
    color: #d8caee;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 16px;
}

[data-mz] a {
    text-decoration: none;
}

/* ---------- SHARED SECTION WRAPPER ---------- */
.mz-section {
    padding: 80px 0;
    position: relative;
}

.mz-section--dark {
    background: #0d0b1a;
}

.mz-section--darker {
    background: #09080f;
}

.mz-section--blue {
    background: linear-gradient(180deg, #0c0e2e 0%, #0d0b1a 100%);
}

.mz-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.mz-section-head {
    text-align: center;
    margin-bottom: 50px;
}

.mz-section-head p {
    max-width: 640px;
    margin: 0 auto;
    color: #c0b0e0;
}

.mz-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc2feb, #c50c00);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ---------- CASINO GRID ---------- */
.mz-casino-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.mz-casino-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {

    .mz-casino-grid,
    .mz-casino-grid--3col {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mz-casino-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mz-card {
    background: linear-gradient(145deg, #1a0d35 0%, #0e1730 100%);
    border: 1px solid rgba(160, 80, 240, 0.22);
    border-radius: 18px;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.mz-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 100, 255, 0.5), transparent);
}

.mz-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(150, 50, 255, 0.2);
    border-color: rgba(200, 80, 255, 0.4);
}

.mz-card--featured {
    border-color: rgba(220, 47, 235, 0.55);
    box-shadow: 0 0 40px rgba(220, 47, 235, 0.12);
}

.mz-card--featured::after {
    background: linear-gradient(90deg, transparent, rgba(220, 47, 235, 0.7), transparent);
}

.mz-card__rank {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #dc2feb, #c50c00);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.mz-card__logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 18px;
    overflow: visible;
}

.mz-card__logo img {
    display: block;
    object-fit: contain;
    /* Sizes are controlled via HTML width/height attributes per-logo */
}

.mz-card__bonus {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.mz-card__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 22px;
}

.mz-card__tags span {
    font-size: 11px;
    color: #c8b0e8;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    padding: 4px 11px;
    white-space: nowrap;
}

.mz-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2feb 0%, #9b06c0 50%, #c50c00 100%);
    background-size: 200% 100%;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    padding: 0 30px;
    height: 52px;
    width: 100%;
    max-width: 260px;
    transition: background-position 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(220, 47, 235, 0.4);
    margin-bottom: 14px;
    text-decoration: none !important;
}

.mz-card__cta:hover {
    background-position: right center;
    transform: scale(1.04);
    box-shadow: 0 6px 28px rgba(220, 47, 235, 0.6);
    color: #fff !important;
}

.mz-card__review {
    font-size: 12px;
    color: rgba(180, 150, 220, 0.65);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(180, 150, 220, 0.25);
    letter-spacing: 0.03em;
    transition: color 0.2s;
    display: block;
}

.mz-card__review:hover {
    color: rgba(220, 190, 255, 0.95);
}

/* ---------- ZEITPLAN TABLE ---------- */
.mz-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(160, 80, 240, 0.2);
    margin-bottom: 18px;
}

.mz-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #e0d4f8;
    background: rgba(255, 255, 255, 0.02);
    min-width: 480px;
}

.mz-table thead tr {
    background: linear-gradient(90deg, rgba(220, 47, 235, 0.22), rgba(150, 20, 200, 0.12));
}

.mz-table th {
    padding: 13px 18px;
    text-align: left;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mz-table td {
    padding: 11px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #d8caee;
}

.mz-table tbody tr:last-child td {
    border-bottom: none;
}

.mz-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.035);
}

.mz-table a {
    color: #b580f0;
}

.mz-table a:hover {
    color: #e0b8ff;
}

.mz-note {
    text-align: center;
    font-size: 13px;
    color: #a890c8;
    margin: 0;
}

.mz-note a {
    color: #b580f0;
    text-decoration: underline;
}

/* ---------- HIGHLIGHT CARDS ---------- */
.mz-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 767px) {
    .mz-highlights {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mz-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mz-hl-card {
    background: linear-gradient(145deg, #1c0a38, #0e1a2e);
    border: 1px solid rgba(160, 80, 240, 0.18);
    border-radius: 18px;
    padding: 28px 22px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.mz-hl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(150, 60, 255, 0.22);
}

.mz-hl-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

.mz-hl-card h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mz-hl-card p {
    color: #c0a8e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.mz-hl-link {
    font-size: 13px;
    color: #b580f0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mz-hl-link:hover {
    color: #e0b8ff;
}

/* ---------- STATS GRID ---------- */
.mz-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .mz-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mz-stat {
    background: linear-gradient(145deg, rgba(220, 47, 235, 0.1), rgba(150, 20, 200, 0.06));
    border: 1px solid rgba(220, 47, 235, 0.2);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.mz-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 47, 235, 0.2);
}

.mz-stat__num {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 25px rgba(220, 47, 235, 0.5);
    line-height: 1;
    margin-bottom: 8px;
}

.mz-stat__label {
    font-size: 12px;
    color: #a890c8;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

/* ---------- SOCIAL CARDS ---------- */
.mz-socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .mz-socials {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mz-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    gap: 10px;
}

.mz-social:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.22);
}

.mz-social svg {
    display: block;
}

.mz-social__name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.mz-social__desc {
    font-size: 12px;
    color: #a890c8;
    text-align: center;
    line-height: 1.4;
}

.mz-social--twitch {
    border-color: rgba(145, 70, 255, 0.3);
}

.mz-social--twitch:hover {
    box-shadow: 0 10px 30px rgba(145, 70, 255, 0.28);
    border-color: rgba(145, 70, 255, 0.6);
}

.mz-social--youtube {
    border-color: rgba(255, 0, 0, 0.22);
}

.mz-social--youtube:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.22);
    border-color: rgba(255, 0, 0, 0.5);
}

.mz-social--kick {
    border-color: rgba(83, 252, 17, 0.2);
}

.mz-social--kick:hover {
    box-shadow: 0 10px 30px rgba(83, 252, 17, 0.18);
    border-color: rgba(83, 252, 17, 0.45);
}

.mz-social--instagram {
    border-color: rgba(228, 64, 95, 0.22);
}

.mz-social--instagram:hover {
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.22);
    border-color: rgba(228, 64, 95, 0.5);
}

/* ---------- NEWSLETTER ---------- */
.mz-newsletter {
    background: linear-gradient(145deg, #1a0a38, #0e1730);
    border: 1px solid rgba(160, 80, 240, 0.22);
    border-radius: 22px;
    padding: 40px 36px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.mz-newsletter h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.mz-newsletter p {
    color: #b8a0d8;
    margin-bottom: 22px;
}

.mz-newsletter__form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.mz-newsletter__input {
    flex: 1 1 200px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(160, 80, 240, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.mz-newsletter__input::placeholder {
    color: rgba(200, 180, 230, 0.4);
}

.mz-newsletter__input:focus {
    border-color: rgba(160, 80, 240, 0.7);
}

.mz-newsletter__btn {
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #dc2feb, #c50c00);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.mz-newsletter__btn:hover {
    opacity: 0.88;
    transform: scale(1.03);
}

.mz-newsletter__note {
    font-size: 11px;
    color: rgba(180, 160, 210, 0.45);
    margin: 12px 0 0;
}

/* ---------- VERANTWORTUNG BOXES ---------- */
.mz-respgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

@media (max-width: 767px) {
    .mz-respgrid {
        grid-template-columns: 1fr;
    }
}

.mz-respbox {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 28px 24px;
}

.mz-respbox h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}

.mz-resplist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mz-resplist li {
    font-size: 14px;
    color: #c8b8e8;
    line-height: 1.6;
    padding: 8px 0 8px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.mz-resplist li:last-child {
    border-bottom: none;
}

.mz-resplist li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #dc2feb;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
}

.mz-resplist a {
    color: #b580f0;
    text-decoration: underline;
}

.mz-resplist a:hover {
    color: #e0b8ff;
}

/* ---------- EXTRAS CARDS ---------- */
.mz-extras {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 767px) {
    .mz-extras {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mz-extras {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mz-extra-card {
    background: linear-gradient(145deg, #100828, #0a1520);
    border: 1px solid rgba(160, 80, 240, 0.14);
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.mz-extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(120, 40, 220, 0.22);
}

.mz-extra-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.mz-extra-card h4 {
    font-size: 16px;
}

.mz-extra-card p {
    font-size: 14px;
    color: #b8a0d8;
    line-height: 1.6;
}

/* ---------- UTILS ---------- */
.mz-text-center {
    text-align: center;
}