:root {
    --ippv-black: #121212;
    --ippv-black-soft: #1f1f1f;
    --ippv-charcoal: #242424;
    --ippv-red: #ca2b22;
    --ippv-red-dark: #8e1712;
    --ippv-cream: #f3eee3;
    --ippv-gold: #d5b25f;
    --ippv-blue: #1a5f99;
    --ippv-border: rgba(255, 255, 255, 0.12);
    --ippv-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    --bs-border-radius: 0.35rem;
    --bs-border-radius-lg: 0.45rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background:
        linear-gradient(180deg, rgba(202, 43, 34, 0.12), transparent 260px),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 40%),
        #0f0f10;
    color: #f7f4ee;
    min-width: 320px;
}

a {
    color: var(--ippv-gold);
    text-decoration: none;
}

a:hover {
    color: #f7d98f;
}

img {
    max-width: 100%;
    height: auto;
}

.site-main {
    padding-bottom: 3rem;
}

.utility-strip {
    background: #0b0b0b;
    border-bottom: 1px solid var(--ippv-border);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    padding: 0.55rem 0;
}

.utility-copy,
.utility-phone {
    color: #ddd1bf;
}

.utility-phone a {
    color: #fff;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-logo {
    max-height: 110px;
    width: auto;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.25);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(202, 43, 34, 0.35);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.main-nav,
.utility-nav {
    gap: 0.35rem;
}

.main-nav .nav-link,
.utility-nav .nav-link {
    color: #f5f1ea;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
}

.utility-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.65rem 0.85rem 1rem;
    color: #d7d0c4;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover,
.utility-nav .nav-link.active,
.utility-nav .nav-link:hover {
    color: #fff;
    border-color: rgba(202, 43, 34, 0.5);
    background: rgba(202, 43, 34, 0.12);
}

.hero-panel,
.content-panel,
.info-card,
.video-card,
.faq-item,
.sponsor-strip,
.stat-card,
.archive-panel,
.form-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--ippv-border);
    box-shadow: var(--ippv-shadow);
}

.page-shell {
    padding-top: 2rem;
}

.hero-panel {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(202, 43, 34, 0.28), transparent 55%);
    pointer-events: none;
}

.hero-copy,
.hero-media {
    position: relative;
    z-index: 1;
}

.hero-copy {
    padding: 2.5rem;
}

.eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ippv-gold);
    font-size: 0.86rem;
    margin-bottom: 0.75rem;
}

.hero-copy h1,
.section-heading h2,
.content-panel h2,
.media-card-title,
.archive-panel h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-lead {
    color: #efe6d6;
    font-size: 1.25rem;
    line-height: 1.35;
    max-width: 42rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.4rem 0;
}

.hero-meta span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 0.7rem;
    background: rgba(255, 255, 255, 0.04);
}

.btn-ippv,
.btn-ippv-outline {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.9rem 1.15rem;
    border-radius: 0.35rem;
    border: 1px solid transparent;
}

.btn-ippv {
    background: var(--ippv-red);
    color: #fff;
}

.btn-ippv:hover {
    background: var(--ippv-red-dark);
    color: #fff;
}

.btn-ippv-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-ippv-outline:hover {
    border-color: var(--ippv-gold);
    color: var(--ippv-gold);
}

.media-frame {
    background: #000;
}

.media-frame iframe,
.media-frame video {
    width: 100%;
    height: 100%;
    border: 0;
}

.section-block {
    margin-top: 3rem;
}

.section-heading {
    margin-bottom: 1.5rem;
    max-width: 50rem;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 0.75rem;
}

.section-heading p,
.content-copy,
.faq-item p,
.info-card p,
.video-card p,
.archive-panel p,
.footer-copy {
    color: #ddd3c7;
    font-size: 1.08rem;
    line-height: 1.45;
}

.stat-card,
.info-card,
.video-card,
.form-card {
    padding: 1.35rem;
    height: 100%;
}

.stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    color: #fff;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ippv-gold);
}

.content-panel {
    padding: 1.6rem;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.panel-header h2,
.video-card h3,
.info-card h3,
.faq-item h3,
.archive-panel h3,
.footer-contact h2,
.footer-sitemap h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.video-card h3,
.info-card h3,
.faq-item h3,
.archive-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.poster-img,
.feature-img {
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sponsor-strip {
    padding: 1rem;
    margin-top: 2rem;
}

.cta-strip {
    background: linear-gradient(90deg, rgba(202, 43, 34, 0.22), rgba(26, 95, 153, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.faq-item {
    padding: 1.25rem;
}

.table-dark-ippv {
    --bs-table-bg: #171717;
    --bs-table-striped-bg: #1d1d1d;
    --bs-table-color: #f2ede2;
    --bs-table-border-color: rgba(255, 255, 255, 0.08);
}

.gallery-card,
.ranking-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    height: 100%;
}

.gallery-thumb {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    display: block;
}

.site-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b0b0b;
}

.footer-brand-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo {
    max-height: 74px;
    margin-bottom: 1rem;
}

.footer-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ippv-gold);
    margin-bottom: 0.35rem;
}

.footer-contact p,
.footer-sitemap li {
    margin-bottom: 0.45rem;
    color: #d7d0c4;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-sitemap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1.5rem;
    padding-top: 1rem;
    color: #c7c0b3;
}

.ad-slot,
.ad-rail,
.affiliate-script {
    overflow: hidden;
}

.newsletter-form .form-control,
.newsletter-form .form-select,
.form-card .form-control,
.form-card textarea {
    border-radius: 0.35rem;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.newsletter-form .form-control::placeholder,
.form-card .form-control::placeholder,
.form-card textarea::placeholder {
    color: #c9bfb2;
}

.newsletter-form .form-control:focus,
.form-card .form-control:focus,
.form-card textarea:focus {
    border-color: rgba(202, 43, 34, 0.6);
    box-shadow: 0 0 0 0.15rem rgba(202, 43, 34, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.text-gold {
    color: var(--ippv-gold);
}

.small-note {
    color: #bcb2a4;
    font-size: 0.95rem;
}

.embed-stack > * + * {
    margin-top: 1rem;
}

@media (max-width: 991.98px) {
    .site-logo {
        max-height: 84px;
    }

    .footer-brand-row,
    .footer-sitemap,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 1.5rem;
    }

    .main-nav .nav-link,
    .utility-nav .nav-link {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
