body {
    margin: 0;
    background: #f7f8fb;
    color: #232735;
    font-family: Arial, sans-serif;
}

.watch-header,
.watch-main,
.watch-footer {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

.watch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.watch-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.watch-logo img {
    width: 100px;
    height: 40px;
    object-fit: contain;
}

.watch-nav {
    color: #f7931e;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.watch-title {
    margin: 26px 0 12px;
    color: #181b25;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.12;
}

.watch-description {
    max-width: 760px;
    margin: 0 0 24px;
    color: #4e5565;
    font-size: 18px;
    line-height: 1.65;
}

.watch-player {
    overflow: hidden;
    background: #090b10;
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(23, 27, 36, 0.2);
}

.watch-player video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #090b10;
}

.watch-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 44px;
}

.watch-meta div {
    min-height: 72px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e3e6ed;
    border-radius: 8px;
}

.watch-meta dt {
    margin: 0 0 6px;
    color: #737b8d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.watch-meta dd {
    margin: 0;
    color: #262b3a;
    font-size: 15px;
    line-height: 1.45;
}

.watch-footer {
    padding: 34px 0 40px;
    color: #6f7788;
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .watch-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .watch-title {
        font-size: 32px;
    }

    .watch-description {
        font-size: 16px;
    }

    .watch-meta {
        grid-template-columns: 1fr;
    }
}
