@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Rajdhani:wght@400;600;700&display=swap');

:root {
    --red: #C70D27;
    --bg: #000000;
    --ink: #F1F1F1;
    --muted: #C1C1C1;
    --panel: rgba(12, 12, 12, 0.78);
    --panel-solid: #1A1A1A;
    --border: rgba(199, 13, 39, 0.65);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    --max: 1150px;
}

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

html {
    scrollbar-width: normal;
    scrollbar-color: var(--red) transparent;
}

html::-webkit-scrollbar {
    width: 14px;
}

html::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 999px;
    border: 3px solid var(--red);
}

html::-webkit-scrollbar-thumb:hover {
    background-color: var(--red);
}

html::-webkit-scrollbar-track {
    background-color: var(--red);
}

body {
    min-height: 100vh;
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    background-image: url('images/My Logo/Logo Background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.85));
    z-index: 0;
    pointer-events: none;
}

.page-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 32px 20px 60px;
    position: relative;
    z-index: 1;
}

.site-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.site-banner {
    width: min(100%, 1200px);
    height: auto;
    max-height: 180px;
    border: 2px solid var(--red);
    border-radius: 12px;
    background: #000000;
    box-shadow: var(--shadow);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 999px;
}

.site-nav a {
    color: var(--red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.site-nav a:hover {
    border-color: var(--red);
    color: #ffffff;
    background: rgba(199, 13, 39, 0.25);
}

.site-main {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    color: var(--red);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin-bottom: 8px;
}

.hero p {
    color: var(--muted);
    font-size: 1.05rem;
}

.hero1 {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.hero1 h1 {
    font-family: 'DM Serif Display', serif;
    color: var(--red);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin-bottom: 8px;
}

.hero1 p {
    color: var(--muted);
    font-size: 1.05rem;
}
.section {
    display: grid;
    gap: 20px;
}

.grid-2 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.grid-2--tight {
    gap: 14px;
}

.card {
    background: var(--panel-solid);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.card--compact {
    padding: 14px;
    max-width: 720px;
    width: 100%;
    margin-right: auto;
    border-width: 0.5px;
}

.card h2 {
    font-family: 'DM Serif Display', serif;
    color: var(--red);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.card p {
    color: var(--muted);
}

.card strong {
    color: var(--ink);
}

.lead {
    font-size: 1.08rem;
    color: var(--muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(199, 13, 39, 0.2);
    border: 1px solid var(--border);
    color: var(--red);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.portrait {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--red);
    border-radius: 14px;
    background: #000000;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 0.5px solid var(--border);
    font-size: 0.9rem;
    line-height: 1.35;
}

th,
td {
    border: 0.5px solid var(--border);
    padding: 6px 8px;
    text-align: left;
    color: var(--ink);
    vertical-align: top;
}

th {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(199, 13, 39, 0.15);
    width: 34%;
}

tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 24px;
    justify-content: center;
}

.poster-card {
    aspect-ratio: 9 / 16;
    background: #000000;
    border: 2px solid var(--red);
    border-radius: 10px;
    display: block;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.poster-card--placeholder {
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    background: linear-gradient(160deg, rgba(199, 13, 39, 0.08), rgba(0, 0, 0, 0.95));
}
.poster-card--placeholder span {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border: none;
    padding: 0;
    border-radius: 0;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.podcast-grid--tight {
    gap: 12px;
}

.podcast-card {
    background: var(--panel-solid);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.podcast-card p {
    color: var(--red);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
}

.podcast-card .art {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #000000;
    overflow: hidden;
}

.podcast-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
}

.media-embed {
    position: relative;
    padding-top: 56.25%;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #000000;
    box-shadow: var(--shadow);
}

.media-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    margin-top: 36px;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-footer a {
    color: var(--red);
    text-decoration: none;
}

.site-main > * {
    animation: rise 0.75s ease both;
}

.site-main > *:nth-child(2) {
    animation-delay: 0.1s;
}

.site-main > *:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .site-nav {
        border-radius: 16px;
        padding: 12px;
    }

    .site-nav a {
        font-size: 0.85rem;
        letter-spacing: 0.04em;
    }

    .hero {
        padding: 20px;
    }

    .card--compact {
        width: 100%;
    }
}
