@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;500;700&display=swap');

:root {
    --bg-dark: #0d0d0f;
    --bg-panel: rgba(16, 16, 20, 0.9);
    --accent: #d4002c;
    --accent-2: #f04c57;
    --muted: #b6b6b9;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(212, 0, 44, 0.12), transparent 25%),
                radial-gradient(circle at 90% 10%, rgba(240, 76, 87, 0.12), transparent 30%),
                linear-gradient(135deg, #111118 0%, #0b0b0f 45%, #1a1a1f 100%);
    color: #f7f7f7;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.backdrop {
    position: fixed;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1500&q=80') center/cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.4);
    mix-blend-mode: screen;
    opacity: 0.35;
}

.noise {
    position: fixed;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"120\" height=\"120\" fill=\"%23ffffff\" fill-opacity=\"0.05\"><filter id=\"n\"><feTurbulence type=\"fractalNoise\" baseFrequency=\"0.8\" numOctaves=\"4\"/></filter><rect width=\"100%\" height=\"100%\" filter=\"url(%23n)\"/></svg>');
    opacity: 0.25;
    pointer-events: none;
}

.stage {
    position: relative;
    display: grid;
    place-items: center;
    padding: 6vh 6vw;
    min-height: 100vh;
}

.card {
    position: relative;
    background: linear-gradient(145deg, rgba(18, 18, 22, 0.95), rgba(18, 18, 22, 0.75));
    border: 2px solid rgba(244, 244, 244, 0.08);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(212, 0, 44, 0.08);
    border-radius: 28px;
    overflow: hidden;
    width: min(1100px, 100%);
    backdrop-filter: blur(6px);
}

.banner {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 10px 18px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 22px;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(212, 0, 44, 0.35);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    align-items: stretch;
}

.hero .photo {
    position: relative;
    min-height: 340px;
    background: linear-gradient(180deg, rgba(212, 0, 44, 0.14), rgba(18, 18, 22, 0.7));
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.25) saturate(1.18) brightness(1.05);
    transform: scale(1.02);
}

.hero .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 35%),
        radial-gradient(circle at 70% 60%, rgba(212,0,44,0.12), transparent 45%),
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0.1));
    mix-blend-mode: screen;
    opacity: 0.45;
    pointer-events: none;
}

.details {
    padding: 56px 56px 64px;
    display: grid;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.details::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(212, 0, 44, 0.12),
        rgba(212, 0, 44, 0.12) 18px,
        transparent 18px,
        transparent 36px
    );
    opacity: 0.55;
    mix-blend-mode: screen;
    pointer-events: none;
}

.label {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.names {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(46px, 6vw, 76px);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 0.95;
}

.names span {
    color: var(--accent);
    text-shadow: 0 4px 18px rgba(212, 0, 44, 0.35);
}

.comment {
    font-size: 17px;
    line-height: 1.6;
    color: #e7e7e7;
    max-width: 620px;
}

.meta {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--muted);
}

.pill {
    border: 1px solid rgba(244, 244, 244, 0.08);
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(3px);
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(212, 0, 44, 0.55);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,0,44,0.65); }
    70% { box-shadow: 0 0 0 18px rgba(212,0,44,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,0,44,0); }
}

.empty-state {
    text-align: center;
    padding: 120px 40px;
    color: #f5f5f5;
}

.empty-state h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 7vw, 82px);
    letter-spacing: 1px;
}

.empty-state p {
    color: var(--muted);
    font-size: 18px;
    max-width: 520px;
    margin: 18px auto 0;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 12px 30px rgba(212, 0, 44, 0.35);
}

.cta:hover {
    transform: translateY(-2px);
}

.toolbar {
    position: fixed;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 10;
}

.toolbar .status {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(244, 244, 244, 0.08);
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.toolbar .status.off {
    background: rgba(212, 0, 44, 0.18);
    color: #ffb3c0;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .details {
        padding: 36px 28px 44px;
    }
}
