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

        :root {
            --red-dark:   #6b1414;
            --red-mid:    #a51d1d;
            --red-base:   #be2b2b;
            --red-light:  #e03535;
            --white:      #ffffff;
            --text-main:  #1a0a0a;
            --text-muted: #6b3a3a;
            --text-hint:  #a07070;
            --border:     rgba(160,40,40,0.12);
            --border-mid: rgba(255,255,255,0.15);
        }

        body {
            font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            background: linear-gradient(180deg, #d30000 10%, #750f0f 100%);
            min-height: 100vh;
            color: var(--text-main);
        }

        /* ── Header ── */
        header {
            padding: 3.5rem 1.5rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        header::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
        header::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 60% 20%, rgba(255,120,80,0.1) 0%, transparent 60%);
            pointer-events: none;
        }
        .header-inner { position: relative; z-index: 1; }

        .logo-icon {
            font-size: 2.4rem;
            color: rgba(255,255,255,0.88);
            display: block;
            margin-bottom: 0.75rem;
        }
        .logo-wordmark {
            font-size: 2.8rem;
            color: #fff;
            letter-spacing: -1.5px;
            line-height: 1;
        }
        .logo-wordmark strong { font-weight: bolder; }
        .logo-tagline {
            margin-top: 0.65rem;
            font-size: 1.1rem;
            color: #fff;
            letter-spacing: 0.3px;
        }

        /* ── Main layout ── */
        main {
            max-width: 660px;
            margin: 0 auto;
            padding: 0 1.1rem 3.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        /* ── Section labels ── */
        .section-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 0.25rem;
            margin-top: 1rem;
            margin-bottom: 0.1rem;
        }
        .section-label:first-child { margin-top: 0; }
        .section-label .label-text {
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.3px;
            color: rgba(255,255,255,0.88);
            white-space: nowrap;
            text-shadow: 0 1px 4px rgba(0,0,0,0.2);
        }
        .section-label i {
            font-size: 0.6rem;
            color: rgba(255,255,255,0.7);
        }
        .section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255,255,255,0.25);
        }

        /* ── Cards ── */
        .bewerb-card {
            background: rgba(255,255,255,0.97);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.15);
            transition: transform 0.18s ease, box-shadow 0.18s ease;
        }
        .bewerb-card:hover {
            transform: scale(1.012);
            box-shadow: 0 10px 32px rgba(60,0,0,0.22);
        }

        /* live card */
        .bewerb-card.is-live {
            background: #fff;
            border: 1.5px solid rgba(224,53,53,0.3);
        }
        .live-stripe {
            height: 3px;
            background: linear-gradient(90deg, #e03535 0%, #ff7043 50%, #e03535 100%);
            background-size: 200% 100%;
            animation: stripe 2.5s linear infinite;
        }
        @keyframes stripe {
            0%   { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }

        /* past card */
        .bewerb-card.is-past {
            background: rgba(255,255,255,0.6);
            border-color: rgba(255,255,255,0.08);
        }
        .bewerb-card.is-past:hover {
            transform: scale(1.01);
            box-shadow: 0 6px 20px rgba(60,0,0,0.14);
        }

        /* ── Card inner ── */
        .bewerb-link {
            display: grid;
            grid-template-columns: 62px 1fr auto;
            align-items: center;
            gap: 1rem;
            padding: 1.1rem 1.15rem;
            text-decoration: none;
            color: inherit;
        }

        /* Date block */
        .date-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #fff0f0;
            border-radius: 10px;
            padding: 0.5rem 0.3rem 0.45rem;
            min-width: 58px;
            border: 1px solid rgba(180,50,50,0.13);
        }
        .date-block .day {
            font-size: 1.65rem;
            font-weight: 800;
            line-height: 1;
            color: var(--red-base);
            letter-spacing: -1px;
        }
        .date-block .month {
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--red-mid);
            margin-top: 2px;
        }
        .date-block .year {
            font-size: 0.6rem;
            font-weight: 500;
            color: var(--text-hint);
            margin-top: 2px;
        }

        .is-live .date-block {
            background: linear-gradient(135deg, #e03535, #b82020);
            border-color: transparent;
        }
        .is-live .date-block .day,
        .is-live .date-block .month { color: #fff; }
        .is-live .date-block .year  { color: rgba(255,255,255,0.6); }

        .is-past .date-block {
            background: #f5efef;
            border-color: rgba(120,60,60,0.08);
        }
        .is-past .date-block .day   { color: #c09090; }
        .is-past .date-block .month { color: #b08080; }
        .is-past .date-block .year  { color: #caa0a0; }

        /* Text info */
        .bewerb-info { min-width: 0; overflow: hidden; }

        .name-row {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.3rem;
        }
        .bewerb-name {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.2;
        }
        .is-past .bewerb-name {
            color: #2a1414;
            font-weight: 700;
        }

        .bewerb-type {
            display: flex;
            align-items: center;
            font-size: 1rem;
            color: var(--text-muted);
            margin-top: 0.35rem;
            word-break: break-word;
        }
        .bewerb-location {
            display: flex;
            align-items: center;
            font-size: 1rem;
            color: var(--text-muted);
            margin-top: 0.22rem;
            word-break: break-word;
        }
        .bewerb-type i,
        .bewerb-location i {
            font-size: 0.7rem;
            width: 16px;
            text-align: center;
            flex-shrink: 0;
            margin-right: 6px;
            position: relative;
            top: 0.5px;
        }
        .is-past .bewerb-type  { color: #7a5050; }
        .is-past .bewerb-location { color: #7a5050; }

        /* Live badge */
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #e03535;
            color: #fff;
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 3px 9px 3px 7px;
            border-radius: 20px;
            animation: badge-pulse 2s ease-out infinite;
            margin-left: 0.4rem;
        }
        @keyframes badge-pulse {
            0%   { box-shadow: 0 0 0 0 rgba(224,53,53,0.55); }
            65%  { box-shadow: 0 0 0 7px rgba(224,53,53,0); }
            100% { box-shadow: 0 0 0 0 rgba(224,53,53,0); }
        }
        .live-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #fff;
            animation: dot-blink 1.1s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes dot-blink {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.35; transform: scale(0.7); }
        }

        /* Arrow circle */
        .row-arrow {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: #fde8e8;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            align-self: center;
            transition: background 0.15s;
        }
        .bewerb-link:hover .row-arrow { background: #fbd5d5; }
        .row-arrow i { font-size: 0.68rem; color: var(--red-mid); }
        .is-live .row-arrow { background: rgba(224,53,53,0.12); }
        .is-live .row-arrow i { color: var(--red-light); }
        .is-past .row-arrow { background: #efe6e6; }
        .is-past .row-arrow i { color: #c8a0a0; }

        /* ── Footer ── */
        footer {
            text-align: center;
            padding: 0.25rem 1rem 2.5rem;
            color: rgba(255,255,255,0.35);
            font-size: 0.78rem;
        }
        footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
        footer a:hover { color: rgba(255,255,255,0.85); }

        /* ── Mobile ── */
        @media (max-width: 480px) {
            header {
                padding: 2.2rem 1.2rem 2rem;
            }
            .logo-icon { font-size: 2rem; margin-bottom: 0.55rem; }
            .logo-wordmark { font-size: 2.2rem; }
            .logo-tagline { font-size: 0.8rem; }

            main {
                padding: 0 0.75rem 2.5rem;
                gap: 0.6rem;
            }

            .bewerb-link {
                grid-template-columns: 52px 1fr auto;
                gap: 0.75rem;
                padding: 0.9rem 0.9rem;
            }

            .date-block {
                min-width: 48px;
                padding: 0.4rem 0.25rem;
                border-radius: 8px;
            }
            .date-block .day { font-size: 1.35rem; }
            .date-block .month { font-size: 0.7rem; }
            .date-block .year { font-size: 0.65rem; }

            .bewerb-name { font-size: 1.1rem; }

            .bewerb-type,
            .bewerb-location { font-size: 0.9rem; }
            .bewerb-type { margin-top: 0.4rem; }

            .row-arrow { width: 24px; height: 24px; }
            .row-arrow i { font-size: 0.62rem; }

            .live-badge { font-size: 0.56rem; padding: 2px 7px 2px 6px; }
            .live-dot { width: 5px; height: 5px; }
        }

        /* ── Legal overlay ── */
        .legal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(60,10,10,0.55);
            backdrop-filter: blur(3px);
            z-index: 100;
            overflow-y: auto;
            padding: 2rem 1rem 3rem;
        }
        .legal-overlay.is-open { display: block; }

        .legal-box {
            background: #fff;
            border-radius: 10px;
            max-width: 680px;
            margin: 0 auto;
            padding: 2.2rem 2.4rem 2.6rem;
            position: relative;
        }
        @media (max-width: 480px) {
            .legal-box { padding: 1.5rem 1.2rem 2rem; }
        }

        .legal-close {
            position: absolute;
            top: 1.1rem; right: 1.2rem;
            background: #f5eeee;
            border: none;
            border-radius: 50%;
            width: 32px; height: 32px;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: var(--red-mid);
            font-size: 0.85rem;
            transition: background 0.15s;
        }
        .legal-close:hover { background: #eedcdc; }

        .legal-box h1 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 1.6rem;
            padding-bottom: 0.8rem;
            border-bottom: 1.5px solid #f0e0e0;
        }
        .legal-box h2 {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--red-mid);
            margin: 1.6rem 0 0.5rem;
        }
        .legal-box p {
            font-size: 0.875rem;
            color: #3a2020;
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }
        .legal-box .placeholder {
            background: #fff3cd;
            border: 1px dashed #e6b800;
            border-radius: 4px;
            padding: 1px 6px;
            font-style: italic;
            color: #856404;
            font-size: 0.85em;
        }
        .legal-box ul {
            font-size: 0.875rem;
            color: #3a2020;
            line-height: 1.7;
            padding-left: 1.4rem;
            margin-bottom: 0.5rem;
        }
        .legal-box a { color: var(--red-base); }