    .event-hero {
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: var(--background);
        overflow: hidden;
        padding-top: 80px;
        /* Space for navbar */
    }

    .event-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        filter: blur(4px) brightness(0.7);
        transform: scale(1.05);
        z-index: 0;
    }

    .event-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(14, 22, 40, 0.6) 0%, var(--background) 100%);
        z-index: 1;
    }

    [data-theme="light"] .event-hero::after {
        background: linear-gradient(to bottom, rgba(30, 30, 30, 0.4) 0%, var(--background) 100%);
    }

    .event-header {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        padding: 0 5%;
        margin-top: 2rem;
        animation: fadeInUp 1s ease;
    }

    .event-category {
        display: inline-block;
        background: var(--primary);
        color: #ffffff;
        padding: 0.4rem 1.2rem;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .event-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        color: #ffffff;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.9);
    }

    [data-theme="light"] .event-title {
        color: #ffffff;
    }

    .event-meta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        color: #e2e8f0;
        font-size: 1.1rem;
        margin-top: 1.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .event-meta i {
        color: var(--accent);
        margin-right: 0.5rem;
    }

    .event-body {
        max-width: 800px;
        margin: -4rem auto 4rem;
        background: var(--surface);
        padding: 4rem;
        border-radius: 20px;
        position: relative;
        z-index: 10;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        animation: fadeInUp 1.2s ease;
    }

    .back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        margin-bottom: 3rem;
        transition: transform 0.3s ease;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .back-link:hover {
        transform: translateX(-5px);
        color: var(--primary-dark);
    }

    .prose {
        color: var(--text-primary);
        line-height: 1.8;
        font-size: 1.1rem;
    }

    .prose h1,
    .prose h2,
    .prose h3 {
        font-family: 'Playfair Display', serif;
        color: var(--text-primary);
        margin-top: 3rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        font-weight: 600;
    }

    .prose h1 {
        font-size: 2.5rem;
        display: none;
    }

    .prose h2 {
        font-size: 2rem;
        border-bottom: 2px solid var(--surface-light);
        padding-bottom: 0.8rem;
    }

    .prose h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .prose p {
        margin-bottom: 1.5rem;
        color: var(--text-secondary);
    }

    .prose a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px dotted var(--primary);
        transition: all 0.3s ease;
    }

    .prose a:hover {
        color: var(--primary-dark);
        border-bottom-style: solid;
    }

    .prose ul,
    .prose ol {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
        color: var(--text-secondary);
    }

    .prose li {
        margin-bottom: 0.5rem;
    }

    .prose li::marker {
        color: var(--primary);
    }

    .prose img {
        max-width: 100%;
        border-radius: 12px;
        margin: 2.5rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .prose img:hover {
        transform: scale(1.02);
    }

    .prose em {
        display: block;
        text-align: center;
        color: var(--primary);
        font-size: 1.2rem;
        font-family: 'Playfair Display', serif;
        margin-top: 3rem;
    }

    .prose strong {
        color: var(--text-primary);
        font-weight: 600;
    }

    .prose blockquote {
        border-left: 4px solid var(--primary);
        margin: 2rem 0;
        font-style: italic;
        color: var(--text-primary);
        background: var(--surface-light);
        padding: 1.5rem 2rem;
        border-radius: 0 12px 12px 0;
        font-size: 1.15rem;
    }

    .prose hr {
        border: none;
        border-top: 1px solid var(--surface-light);
        margin: 3rem 0;
    }

    .prose table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
        font-size: 0.95rem;
        table-layout: fixed;
    }

    .prose table th,
    .prose table td {
        padding: 0.6rem 0.8rem;
        border: 1px solid var(--surface-light);
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .prose table th {
        background: var(--surface-light);
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .prose table td:first-child {
        width: 2rem;
        text-align: center;
        color: var(--primary);
        font-weight: 600;
    }

    .prose table td:nth-child(2) {
        width: 40%;
    }

    .prose table tr:nth-child(even) {
        background: var(--surface-light);
    }

    .prose table tr:hover {
        background: rgba(var(--primary-rgb, 139, 92, 246), 0.08);
    }

    .event-sponsors {
        margin-top: 4rem;
        padding-top: 3rem;
        border-top: 1px solid var(--surface-light);
        text-align: center;
    }

    .event-sponsors h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: var(--text-primary);
        margin-bottom: 2rem;
    }

    .sponsors-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        align-items: center;
    }

    .sponsor-logo {
        max-width: 180px;
        max-height: 80px;
        object-fit: contain;
        filter: grayscale(100%) opacity(0.7);
        transition: all 0.3s ease;
    }

    .sponsor-logo:hover {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.05);
    }

    @media (max-width: 768px) {
        .event-body {
            margin: -2rem 1rem 3rem;
            padding: 2.5rem 1.5rem;
        }

        .event-meta {
            flex-direction: column;
            gap: 0.8rem;
        }

        .prose table {
            font-size: 0.85rem;
        }

        .prose table th,
        .prose table td {
            padding: 0.45rem 0.5rem;
        }

        .prose table th:first-child,
        .prose table td:first-child {
            display: none;
        }

        .prose table td:nth-child(2) {
            width: 45%;
        }
    }