body {
    background-color: #0d0d0d;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.man-section {
    padding: 64px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.man-section:last-of-type {
    border-bottom: none;
}

.man-section--alt {
    background-color: rgba(255, 255, 255, 0.02);
}

.man-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

h2.man-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.man-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 32px;
}

.man-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: background 0.2s, border-color 0.2s;
}

.man-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 193, 7, 0.25);
}

.man-card__icon {
    color: #ffc107;
    font-size: 1.1rem;
    width: 28px;
    flex-shrink: 0;
}

.man-card__title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.man-card__text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.man-callout {
    border-left: 3px solid #ffc107;
    background: rgba(255, 193, 7, 0.05);
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
}

.man-callout p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.man-callout strong {
    color: #ffc107;
}

.man-callout--green {
    border-left-color: #19c878;
    background: rgba(25, 200, 120, 0.05);
}

.man-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffc107;
    color: #000;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.man-step-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.man-step-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.toc-link {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s;
    margin-bottom: 10px;
    font-size: 0.93rem;
}

.toc-link:hover {
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.35);
    background: rgba(255, 193, 7, 0.04);
    padding-left: 20px;
}

.toc-link i {
    margin-right: 9px;
    color: #ffc107;
    width: 16px;
}

/* Screenshot preview */
.man-screenshot {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin: 28px 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.man-screenshot img {
    width: 100%;
    display: block;
    cursor: zoom-in;
    transition: opacity 0.2s;
}

.man-screenshot img:hover {
    opacity: 0.9;
}

.man-screenshot__caption {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.man-screenshot__caption i {
    color: rgba(255, 193, 7, 0.6);
}

/* DJ Mode highlight */
.man-dj-mode-card {
    border: 1px solid rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.04);
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 16px;
}

.man-dj-mode-card .man-card__title {
    color: #ffc107;
}

/* Toc section separator */
.toc-section {
    padding: 56px 0 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.toc-section__label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Animations */
@keyframes heroPan {
    from {
        transform: scale(1.04) translate(0, 0);
    }

    to {
        transform: scale(1.08) translate(-1%, -1%);
    }
}

@keyframes waveShift {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 80;
    }
}