* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f0f0f;
    color: #eaeaea;
    line-height: 1.6;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.85)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-content p {
    margin-top: 10px;
    color: #cfcfcf;
    font-size: 1.05rem;
}

/* ================= META BAR ================= */

.meta-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;

    padding: 15px 20px;
    background: #141414;
    border-bottom: 1px solid #222;
}

.meta-bar div {
    font-size: 0.9rem;
    color: #cfcfcf;
}

.meta-bar span {
    color: #ffffff;
    font-weight: 600;
}

/* ================= LAYOUT ================= */

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.section {
    margin-bottom: 60px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* ================= TEXT ================= */

.section p {
    margin-bottom: 15px;
    color: #d0d0d0;
}

.section ul {
    list-style: none;
    padding-left: 0;
}

.section li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    color: #d0d0d0;
}

.section li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* ================= SPLIT LAYOUT ================= */

.split {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.split > div {
    flex: 2;
}

.panel {
    flex: 1;
    background: #171717;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
}

/* ================= TAGS ================= */

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 20px 0;
}

.tags span {
    background: #2a2a2a;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #fff;
}

/* ================= PANEL ================= */

.panel-title {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.muted {
    color: #bdbdbd;
    font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 850px) {
    .split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}