:root {
    --brand-blue: #0073ba;
    --dark-obsidian: #050a12;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-dim: #a0aec0;
}

.skull-base-info {
    background-color: var(--dark-obsidian);
    color: var(--text-white);
    padding: 160px 0;
    font-family: "din-2014", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.info-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--brand-blue);
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 20px;
    text-align: justify;
}

/* Video Styling */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Bento Cards */
.content-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.bento-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.card-header h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

/* List Styling */
.disease-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.disease-list li {
    font-size: 14px;
    color: var(--text-dim);
    padding-left: 20px;
    position: relative;
}

.disease-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
}

.treatment-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 115, 186, 0.1);
    color: var(--brand-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin: 5px;
    border: 1px solid rgba(0, 115, 186, 0.2);
}

/* Responsive */
@media (max-width: 991px) {

    .info-hero,
    .content-bento {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}