/* === 基础重置 === */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #f5f7fa;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.6;
}
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

/* === 顶栏 === */
.topbar {
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand { font-size: 17px; font-weight: 600; }
.userbox { display: flex; align-items: center; gap: 14px; font-size: 13px; }
.userbox a { color: #fff; opacity: .9; }
.userbox a:hover { opacity: 1; }
.role-badge {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    background: rgba(255,255,255,.2);
}
.role-admin { background: #ef4444; }
.role-user  { background: #10b981; }

/* === 标签导航 === */
.tabs {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}
.tabs-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 4px;
}
.tab {
    padding: 14px 20px;
    color: #4b5563;
    border-bottom: 3px solid transparent;
    font-weight: 500;
}
.tab:hover { color: #2563eb; text-decoration: none; }
.tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* === 主容器 === */
.container {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 24px 60px;
}

/* === 闪现消息 === */
.flash {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    border-left: 4px solid;
}
.flash-success { background: #ecfdf5; border-color: #10b981; color: #065f46; }
.flash-error   { background: #fef2f2; border-color: #ef4444; color: #991b1b; }
.flash-info    { background: #eff6ff; border-color: #2563eb; color: #1e3a8a; }

/* === 卡片 === */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    margin-bottom: 20px;
}
.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.card-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.card-body { padding: 20px; }
.card-subtitle {
    margin-top: 4px;
    color: #6b7280;
    font-size: 13px;
}

/* === 表格 === */
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th, .table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    vertical-align: middle;
}
.table th {
    background: #fafafa;
    color: #6b7280;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.table tbody tr:hover { background: #fafbfc; }
.table .col-actions { white-space: nowrap; text-align: right; }
.table code {
    background: #f3f4f6;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-family: "SF Mono", Monaco, Consolas, monospace;
}

/* === 按钮 === */
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
    line-height: 1.4;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1d4ed8; color: #fff; }
.btn-secondary { background: #fff; color: #374151; border: 1px solid #d1d5db; }
.btn-secondary:hover { background: #f9fafb; color: #111827; }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-success { background: #10b981; color: #fff; }
.btn-success:hover { background: #059669; color: #fff; }
.btn-warning { background: #f59e0b; color: #fff; }
.btn-warning:hover { background: #d97706; color: #fff; }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-link {
    background: none;
    color: #2563eb;
    padding: 4px 6px;
}

/* === 表单 === */
.form-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
}
.form-row.full {
    grid-template-columns: 1fr;
}
.form-row label {
    padding-top: 8px;
    color: #374151;
    font-weight: 500;
}
.form-row .required::after {
    content: "*";
    color: #ef4444;
    margin-left: 4px;
}
.form-row .hint {
    color: #6b7280;
    font-size: 12px;
    margin-top: 4px;
}
.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
textarea.form-control { font-family: "SF Mono", Monaco, Consolas, monospace; resize: vertical; }
select.form-control { background: #fff; }
.form-actions {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

/* === 登录页 === */
.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 20px;
}
.login-box {
    background: #fff;
    width: 100%;
    max-width: 380px;
    padding: 36px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.login-box h1 {
    margin: 0 0 6px;
    font-size: 22px;
    text-align: center;
}
.login-box .subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 28px;
    font-size: 13px;
}
.login-box .form-group { margin-bottom: 14px; }
.login-box .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #374151;
}
.login-box .btn-primary { width: 100%; padding: 10px; font-size: 14px; }
.login-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
    font-size: 13px;
}

/* === 详情 === */
.detail-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 14px 20px;
}
.detail-grid dt {
    color: #6b7280;
    font-size: 13px;
    padding-top: 2px;
}
.detail-grid dd {
    margin: 0;
    word-break: break-all;
}

/* === 状态标签 === */
.status-pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}
.status-enabled  { background: #ecfdf5; color: #065f46; }
.status-disabled { background: #f3f4f6; color: #6b7280; }
.status-paused   { background: #fef3c7; color: #92400e; }

/* === 空状态 === */
.empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}
.empty .emoji { font-size: 36px; display: block; margin-bottom: 10px; }

/* === 页脚 === */
.footer {
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    padding: 20px;
}

/* === 分页 === */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 24px 0 0;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    color: #374151;
    font-size: 13px;
}
.pagination a:hover { background: #f9fafb; text-decoration: none; }
.pagination .active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.pagination .disabled { color: #d1d5db; cursor: not-allowed; }

/* === 响应式 === */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 6px; }
    .form-row label { padding-top: 0; }
    .detail-grid { grid-template-columns: 1fr; gap: 4px 0; }
    .detail-grid dt { margin-top: 10px; }
    .topbar-inner, .tabs-inner, .container { padding-left: 16px; padding-right: 16px; }
    .table { font-size: 12px; }
    .table th, .table td { padding: 10px 8px; }
}

/* === 直播预览弹层 === */
.preview-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(17,24,39,.68);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.preview-modal.show { display: flex; }
.preview-dialog {
    width: min(960px, 96vw);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.preview-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
}
.preview-header h3 {
    margin: 0;
    font-size: 16px;
}
.preview-meta {
    margin-top: 3px;
    color: #6b7280;
    font-size: 12px;
    word-break: break-all;
}
.preview-close {
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}
.preview-close:hover { color: #111827; }
.preview-body {
    background: #111827;
    padding: 12px;
}
.preview-video {
    display: block;
    width: 100%;
    max-height: 70vh;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
}
.preview-message {
    margin-top: 10px;
    color: #f9fafb;
    font-size: 13px;
}
button:disabled,
.btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.status-neutral {
    background: #f3f4f6;
    color: #4b5563;
}
.status-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    min-width: 96px;
}
.status-mini small {
    color: #6b7280;
    line-height: 1.35;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 8px;
}
.metric-card {
    background: #f9fafb;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    padding: 10px 12px;
}
.metric-card .label {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 4px;
}
.metric-card .value {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    word-break: break-all;
}
.callback-log-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}
.callback-log-item {
    border: 1px solid #edf0f3;
    background: #fff;
    border-radius: 8px;
    padding: 10px 12px;
}
.callback-log-item pre {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px;
    overflow: auto;
    font-size: 12px;
}

/* === 列表页合并任务状态 === */
.status-combined {
    min-width: 230px;
    gap: 8px;
}
.status-section {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 4px 8px;
    align-items: start;
    padding-bottom: 6px;
    border-bottom: 1px dashed #eef0f3;
}
.status-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.status-section .status-label {
    color: #374151;
    font-weight: 600;
    line-height: 1.7;
}
.status-section small:not(.status-label) {
    grid-column: 2;
}
body.preview-open {
    overflow: hidden;
}
.preview-modal.show {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    align-items: center !important;
    justify-content: center !important;
}
.preview-dialog {
    max-height: calc(100vh - 40px);
}

/* === 手机端访问优化：不改变功能，只优化布局 === */
html { -webkit-text-size-adjust: 100%; }
button, input, select, textarea { font: inherit; }

@media (max-width: 860px) {
    body { font-size: 14px; background: #f3f6fb; }

    .topbar-inner {
        padding: 12px 14px;
        align-items: flex-start;
        gap: 8px;
        flex-direction: column;
    }
    .brand {
        font-size: 18px;
        line-height: 1.3;
    }
    .userbox {
        width: 100%;
        gap: 8px;
        flex-wrap: wrap;
        font-size: 12px;
        opacity: .98;
    }
    .userbox .btn-link,
    .userbox a {
        margin-left: auto;
        padding: 2px 0;
    }

    .tabs {
        position: sticky;
        top: 0;
        z-index: 50;
        box-shadow: 0 1px 8px rgba(15, 23, 42, .06);
    }
    .tabs-inner {
        padding: 0 12px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
    }
    .tabs-inner::-webkit-scrollbar { display: none; }
    .tab {
        flex: 0 0 auto;
        padding: 12px 10px 10px;
        font-size: 13px;
        border-bottom-width: 2px;
        white-space: nowrap;
    }

    .container {
        margin: 14px auto;
        padding: 0 12px 50px;
    }
    .card {
        border-radius: 12px;
        margin-bottom: 14px;
        box-shadow: 0 1px 8px rgba(15,23,42,.06);
        overflow: hidden;
    }
    .card-header {
        padding: 14px;
        align-items: stretch;
        flex-direction: column;
    }
    .card-header h2 { font-size: 17px; }
    .card-subtitle {
        font-size: 12px;
        line-height: 1.55;
        word-break: break-word;
    }
    .card-header > div:last-child {
        width: 100%;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    .card-header > div:last-child .btn { flex: 1 1 auto; text-align: center; }
    .card-body { padding: 14px; }
    .flash { margin: 0 0 12px; border-radius: 10px; }

    .btn {
        min-height: 38px;
        padding: 8px 12px;
        border-radius: 8px;
        text-align: center;
        touch-action: manipulation;
    }
    .btn-sm {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
    }
    .form-control {
        min-height: 40px;
        font-size: 16px; /* 避免 iPhone 聚焦输入框时自动放大页面 */
        border-radius: 8px;
    }
    textarea.form-control {
        min-height: 58px;
        font-size: 13px;
        line-height: 1.45;
    }
    .form-actions {
        flex-direction: column;
        gap: 8px;
    }
    .form-actions .btn { width: 100%; }

    .card-body form[method="get"] {
        width: 100%;
    }
    .card-body form[method="get"] .form-control,
    .card-body form[method="get"] .btn,
    .card-body form[method="get"] a.btn,
    .card-body form[method="get"] .btn-link {
        max-width: none !important;
        width: 100%;
    }

    /* 表格在手机端改为卡片式列表，页内脚本会自动补 data-label */
    .table {
        display: block;
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: transparent;
    }
    .table thead { display: none; }
    .table tbody { display: block; width: 100%; }
    .table tr {
        display: block;
        width: calc(100% - 24px);
        margin: 12px;
        padding: 10px 12px;
        background: #fff;
        border: 1px solid #e8edf4;
        border-radius: 12px;
        box-shadow: 0 1px 5px rgba(15,23,42,.04);
    }
    .table tbody tr:hover { background: #fff; }
    .table td {
        display: block;
        position: relative;
        width: 100%;
        max-width: none !important;
        min-height: 34px;
        padding: 8px 0 8px 92px !important;
        border-bottom: 1px dashed #edf0f4;
        text-align: left !important;
        white-space: normal !important;
        word-break: break-word;
        font-size: 13px;
    }
    .table td:last-child { border-bottom: none; }
    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 8px;
        width: 82px;
        color: #64748b;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.35;
        white-space: normal;
    }
    .table td[data-label="RTMP 推流 / OBS"],
    .table td[data-label="拉流地址"],
    .table td[data-label="状态信息"],
    .table td[data-label="任务状态"],
    .table td[data-label="详情"],
    .table td[data-label="浏览器"],
    .table td[data-label="说明"],
    .table td[data-label="操作"] {
        padding-left: 0 !important;
        padding-top: 32px !important;
    }
    .table td[data-label="RTMP 推流 / OBS"]::before,
    .table td[data-label="拉流地址"]::before,
    .table td[data-label="状态信息"]::before,
    .table td[data-label="任务状态"]::before,
    .table td[data-label="详情"]::before,
    .table td[data-label="浏览器"]::before,
    .table td[data-label="说明"]::before,
    .table td[data-label="操作"]::before {
        top: 8px;
        width: auto;
    }
    .table .col-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: stretch;
        justify-content: flex-start;
        white-space: normal;
    }
    .table .col-actions::before {
        flex: 0 0 100%;
        position: static;
        width: auto;
        margin-bottom: -2px;
    }
    .table .col-actions .btn,
    .table .col-actions form,
    .table .col-actions form .btn {
        flex: 1 1 calc(50% - 8px);
        width: auto;
        min-width: 86px;
    }
    .table .col-actions form { display: inline-flex !important; }
    .table code { white-space: normal; word-break: break-all; }

    .status-combined { min-width: 0; width: 100%; }
    .status-section {
        grid-template-columns: 64px 1fr;
        gap: 4px 8px;
    }
    .status-stack,
    .status-mini { width: 100%; }
    .status-line {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 6px;
        align-items: start;
    }
    .status-line small { grid-column: 2; }
    .status-label { font-size: 12px; }
    .status-pill { padding: 3px 9px; }

    .detail-grid {
        display: block;
    }
    .detail-grid dt {
        margin-top: 12px;
        padding-top: 0;
        font-size: 12px;
        font-weight: 700;
        color: #475569;
    }
    .detail-grid dd {
        margin-top: 3px;
        padding-bottom: 8px;
        border-bottom: 1px dashed #edf0f4;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .callback-log-item pre {
        max-height: 260px;
        font-size: 11px;
        -webkit-overflow-scrolling: touch;
    }

    .pagination {
        gap: 8px;
        padding: 0 12px 12px;
    }
    .pagination a,
    .pagination span {
        flex: 1 1 auto;
        text-align: center;
        min-width: 72px;
        padding: 8px 10px;
    }

    .empty { padding: 42px 16px; }
    .footer { padding-bottom: 28px; }
}

@media (max-width: 640px) {
    .preview-modal {
        padding: 10px !important;
        align-items: center !important;
    }
    .preview-dialog {
        width: 100% !important;
        max-height: calc(100vh - 20px) !important;
        border-radius: 14px !important;
    }
    .preview-header {
        padding: 12px 14px !important;
    }
    .preview-header h3 { font-size: 15px; }
    .preview-meta {
        font-size: 11px;
        line-height: 1.45;
        max-height: 42px;
        overflow: auto;
    }
    .preview-close {
        font-size: 30px;
        min-width: 36px;
        min-height: 36px;
    }
    .preview-body { padding: 8px !important; }
    .preview-video {
        width: 100% !important;
        max-height: 58vh !important;
        border-radius: 10px !important;
    }
    .preview-message {
        font-size: 12px;
        line-height: 1.45;
        max-height: 64px;
        overflow: auto;
    }
}

@media (max-width: 380px) {
    .table td { padding-left: 82px !important; }
    .table td::before { width: 74px; }
    .table .col-actions .btn,
    .table .col-actions form,
    .table .col-actions form .btn {
        flex-basis: 100%;
    }
}

/* === 观众观看页 === */
body.watch-page {
    margin: 0;
    background: #0f172a;
    color: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.watch-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 42px;
}
.watch-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding: 10px 0 18px;
}
.watch-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 12px;
    margin-bottom: 10px;
}
.watch-hero h1 {
    margin: 0;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -.02em;
}
.watch-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    color: #cbd5e1;
    font-size: 13px;
}
.watch-meta span {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 5px 10px;
}
.watch-meta .watch-expired {
    background: rgba(248,113,113,.14);
    border-color: rgba(248,113,113,.35);
    color: #fecaca;
}
.watch-player-card,
.watch-card {
    background: rgba(15,23,42,.9);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
    overflow: hidden;
}
.watch-video-wrap {
    position: relative;
    background: #020617;
}
.watch-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 72vh;
    background: #000;
}
.watch-video-message {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: #e2e8f0;
    font-size: 13px;
    text-shadow: 0 1px 3px rgba(0,0,0,.8);
    pointer-events: none;
}
.watch-tip {
    padding: 12px 16px;
    color: #cbd5e1;
    font-size: 13px;
    background: rgba(255,255,255,.04);
}
.watch-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
}
.watch-info-card {
    background: #fff;
    color: #0f172a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.watch-info-card h2 {
    margin: 0;
    padding: 14px 18px;
    font-size: 17px;
    border-bottom: 1px solid #eef2f7;
}
.watch-info-card img {
    display: block;
    width: 100%;
    height: auto;
}
.watch-error {
    margin-top: 80px;
    padding: 36px;
    text-align: center;
}
.watch-error h1 { margin: 0 0 10px; }
.watch-error p { color: #cbd5e1; }
.audience-admin-preview {
    width: min(420px, 100%);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 8px;
}
.audience-admin-preview img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 640px) {
    .watch-shell {
        width: 100%;
        padding: 0 0 28px;
    }
    .watch-hero {
        padding: 18px 14px 14px;
    }
    .watch-meta {
        gap: 6px;
        font-size: 12px;
    }
    .watch-player-card {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }
    .watch-video {
        max-height: 56vh;
    }
    .watch-info-grid {
        margin: 14px 12px 0;
        gap: 14px;
    }
    .watch-info-card {
        border-radius: 14px;
    }
}

/* === 观众观看页：活动直播风格与海报静帧 === */
body.watch-page-live {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.22), transparent 36%),
        linear-gradient(180deg, #111827 0%, #0f172a 45%, #111827 100%);
    color: #f9fafb;
}
.watch-shell-event {
    width: min(980px, calc(100% - 24px));
    padding: 16px 0 42px;
}
.watch-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    padding: 8px 0 14px;
}
.watch-event-title-wrap {
    min-width: 0;
}
.watch-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(239,68,68,.18);
    color: #fecaca;
    border: 1px solid rgba(248,113,113,.35);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.watch-event-header h1 {
    margin: 0;
    font-size: clamp(22px, 4vw, 36px);
    line-height: 1.18;
    letter-spacing: -.02em;
    word-break: break-word;
}
.watch-view-counter {
    flex: 0 0 auto;
    text-align: right;
    min-width: 92px;
    padding: 8px 13px;
    border-radius: 14px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.watch-view-counter span {
    display: block;
    font-size: 12px;
    color: #cbd5e1;
    margin-bottom: 2px;
}
.watch-view-counter strong {
    display: block;
    font-size: 23px;
    line-height: 1;
}
.watch-event-player-card {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(15,23,42,.72);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 28px 70px rgba(0,0,0,.38);
}
.watch-video-wrap-event {
    position: relative;
    background: #020617;
    aspect-ratio: 16 / 9;
}
.watch-video-wrap-event .watch-video {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 0;
}
.watch-poster-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background-color: #0b1220;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}
.watch-poster-layer.show {
    opacity: 1;
    visibility: visible;
}
.watch-poster-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2,6,23,.18), rgba(2,6,23,.72)),
        radial-gradient(circle at center, rgba(255,255,255,.08), transparent 42%);
}
.watch-poster-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
}
.watch-poster-mark {
    display: inline-flex;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.2);
    color: #e5e7eb;
    font-size: 13px;
    margin-bottom: 14px;
}
.watch-poster-title {
    font-size: clamp(22px, 4vw, 42px);
    line-height: 1.18;
    font-weight: 800;
    text-shadow: 0 4px 22px rgba(0,0,0,.45);
}
.watch-poster-sub {
    margin-top: 12px;
    color: #e2e8f0;
    font-size: 15px;
}
.watch-video-wrap-event .watch-video-message {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 4;
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 13px;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,.75);
}
.watch-expired-line {
    padding: 10px 14px;
    color: #fde68a;
    background: rgba(245,158,11,.12);
    border-top: 1px solid rgba(245,158,11,.18);
    font-size: 13px;
}
.watch-event-info {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}
.watch-event-section {
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    color: #111827;
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.watch-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 15px;
    font-weight: 800;
    border-bottom: 1px solid #eef2f7;
}
.watch-section-title span {
    width: 4px;
    height: 16px;
    border-radius: 999px;
    background: #2563eb;
}
.watch-event-section img {
    display: block;
    width: 100%;
    height: auto;
}
.audience-admin-preview-wide img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 640px) {
    .watch-shell-event {
        width: min(100%, calc(100% - 20px));
        padding-top: 10px;
    }
    .watch-event-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .watch-view-counter {
        align-self: stretch;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        min-width: 0;
    }
    .watch-view-counter span { margin-bottom: 0; }
    .watch-event-player-card { border-radius: 14px; }
    .watch-poster-layer { padding: 18px; }
    .watch-poster-mark { font-size: 12px; margin-bottom: 10px; }
    .watch-poster-sub { font-size: 13px; }
    .watch-event-section { border-radius: 14px; }
}

/* === 观众观看页美化版：无品牌露出 + 活动时间 === */
body.watch-page-polished {
    position: relative;
    overflow-x: hidden;
    background:
        linear-gradient(135deg, #07111f 0%, #0f172a 42%, #111827 100%);
}
.watch-ambient {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    filter: blur(18px);
    opacity: .72;
}
.watch-ambient-a {
    width: 420px;
    height: 420px;
    left: -180px;
    top: -140px;
    background: radial-gradient(circle, rgba(59,130,246,.42), transparent 66%);
}
.watch-ambient-b {
    width: 520px;
    height: 520px;
    right: -220px;
    top: 180px;
    background: radial-gradient(circle, rgba(168,85,247,.24), transparent 66%);
}
.watch-shell-polished {
    position: relative;
    z-index: 1;
    width: min(1060px, calc(100% - 26px));
    padding-top: 22px;
}
.watch-glass-card,
.watch-hero-card,
.watch-player-polished-card,
.watch-content-card-polished {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.watch-hero-card {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    padding: 22px 24px 20px;
    margin-bottom: 14px;
    border-radius: 24px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
        radial-gradient(circle at 85% 0%, rgba(96,165,250,.28), transparent 42%);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 26px 70px rgba(0,0,0,.32);
}
.watch-hero-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}
.watch-hero-main {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.watch-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(15,23,42,.42);
    border: 1px solid rgba(255,255,255,.16);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
}
.watch-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow: 0 0 0 5px rgba(239,68,68,.14);
}
.watch-hero-card h1 {
    margin: 0;
    font-size: clamp(24px, 4.6vw, 42px);
    line-height: 1.14;
    letter-spacing: -.03em;
    word-break: break-word;
}
.watch-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.watch-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(2,6,23,.32);
    border: 1px solid rgba(255,255,255,.12);
}
.watch-meta-pill span {
    color: #cbd5e1;
    font-size: 12px;
}
.watch-meta-pill strong {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}
.watch-player-polished-card {
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 30px 90px rgba(0,0,0,.42);
}
.watch-video-wrap-polished {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.watch-poster-layer-polished {
    background-size: cover;
    background-position: center;
}
.watch-poster-layer-polished .watch-poster-shade {
    background:
        linear-gradient(180deg, rgba(2,6,23,.16), rgba(2,6,23,.78)),
        radial-gradient(circle at 50% 10%, rgba(37,99,235,.24), transparent 45%);
}
.watch-poster-content-polished {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(2,6,23,.36);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.watch-poster-status {
    display: inline-flex;
    padding: 5px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}
.watch-poster-time {
    margin-top: 10px;
    color: #e0f2fe;
    font-size: 14px;
    font-weight: 700;
}
.watch-event-info-polished {
    margin-top: 18px;
    gap: 16px;
}
.watch-content-card-polished {
    border-radius: 20px;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 20px 60px rgba(0,0,0,.26);
}
.watch-content-card-polished .watch-section-title {
    font-size: 16px;
    padding: 15px 17px;
}
.watch-content-card-polished .watch-section-title span {
    background: linear-gradient(180deg, #60a5fa, #2563eb);
}
body.watch-page-polished .watch-poster-mark,
body.watch-page-polished .watch-event-header {
    display: none !important;
}

@media (max-width: 640px) {
    .watch-shell-polished {
        width: min(100%, calc(100% - 18px));
        padding-top: 10px;
    }
    .watch-hero-card {
        padding: 18px 16px;
        border-radius: 18px;
        margin-bottom: 10px;
    }
    .watch-hero-meta {
        gap: 8px;
        margin-top: 12px;
    }
    .watch-meta-pill {
        width: 100%;
        justify-content: space-between;
        padding: 9px 10px;
    }
    .watch-player-polished-card {
        border-radius: 18px;
    }
    .watch-video-wrap-polished {
        border-radius: 16px;
    }
    .watch-poster-content-polished {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
    }
    .watch-poster-time {
        font-size: 13px;
    }
    .watch-content-card-polished {
        border-radius: 16px;
    }
}

/* === 观看页细节微调：缩小标题区 + 海报提示靠角落 === */
.watch-shell-polished {
    padding-top: 16px;
}
.watch-hero-card {
    padding: 16px 18px 15px;
    margin-bottom: 10px;
    border-radius: 18px;
}
.watch-kicker {
    padding: 4px 9px;
    margin-bottom: 8px;
    font-size: 11px;
    gap: 5px;
}
.watch-kicker-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(239,68,68,.12);
}
.watch-hero-card h1 {
    font-size: clamp(18px, 3.4vw, 30px);
    line-height: 1.18;
    letter-spacing: -.02em;
}
.watch-hero-meta {
    gap: 8px;
    margin-top: 10px;
}
.watch-meta-pill {
    gap: 6px;
    padding: 6px 9px;
    border-radius: 11px;
}
.watch-meta-pill span {
    font-size: 11px;
}
.watch-meta-pill strong {
    font-size: 13px;
}
.watch-player-polished-card {
    border-radius: 18px;
}
.watch-video-wrap-polished {
    border-radius: 16px;
}
.watch-poster-layer {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
}
.watch-poster-layer-polished .watch-poster-shade {
    background:
        linear-gradient(180deg, rgba(2,6,23,.10), rgba(2,6,23,.34));
}
.watch-poster-content-polished {
    width: auto;
    max-width: min(360px, 54%);
    padding: 8px 10px;
    border-radius: 10px;
    text-align: left;
    background: rgba(2,6,23,.28);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.watch-poster-status {
    padding: 3px 8px;
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: .08em;
    line-height: 1.2;
}
.watch-poster-title,
.watch-poster-time {
    display: none !important;
}
.watch-poster-sub {
    margin-top: 0;
    color: rgba(241,245,249,.92);
    font-size: 12px;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.watch-video-wrap-event .watch-video-message {
    font-size: 12px;
    bottom: 8px;
}

@media (max-width: 640px) {
    .watch-shell-polished {
        padding-top: 8px;
        width: min(100%, calc(100% - 14px));
    }
    .watch-hero-card {
        padding: 12px 12px 11px;
        border-radius: 14px;
        margin-bottom: 8px;
    }
    .watch-kicker {
        padding: 3px 8px;
        margin-bottom: 6px;
        font-size: 10px;
    }
    .watch-hero-card h1 {
        font-size: clamp(16px, 5vw, 22px);
    }
    .watch-hero-meta {
        margin-top: 8px;
        gap: 6px;
    }
    .watch-meta-pill {
        width: auto;
        min-width: 0;
        padding: 5px 8px;
        border-radius: 10px;
    }
    .watch-meta-pill strong {
        font-size: 12px;
    }
    .watch-poster-layer {
        padding: 8px;
    }
    .watch-poster-content-polished {
        max-width: 68%;
        padding: 6px 8px;
        border-radius: 8px;
    }
    .watch-poster-status {
        font-size: 9px;
        padding: 2px 6px;
        margin-bottom: 3px;
    }
    .watch-poster-sub {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* === 观看页：恢复并缩小直播开始时间显示 === */
.watch-start-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .06);
    border: 1px solid rgba(15, 23, 42, .08);
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}
.watch-poster-title {
    display: none !important;
}
.watch-poster-time {
    display: block !important;
    margin-top: 3px;
    color: rgba(224, 242, 254, .9);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
@media (max-width: 640px) {
    .watch-start-line {
        margin-top: 5px;
        padding: 3px 7px;
        font-size: 10px;
    }
    .watch-poster-time {
        font-size: 9px;
    }
}


/* === 观看页：海报静帧角落提示再缩小，且不显示开始时间 === */
.watch-poster-layer {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 8px !important;
}
.watch-poster-content-polished {
    max-width: min(240px, 42%) !important;
    padding: 5px 7px !important;
    border-radius: 7px !important;
    background: rgba(2,6,23,.20) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    box-shadow: 0 5px 14px rgba(0,0,0,.14) !important;
}
.watch-poster-status {
    padding: 1px 5px !important;
    margin-bottom: 2px !important;
    font-size: 8px !important;
    line-height: 1.15 !important;
    letter-spacing: .05em !important;
    opacity: .88;
}
.watch-poster-sub {
    font-size: 9px !important;
    line-height: 1.25 !important;
    opacity: .86;
}
.watch-poster-time,
.watch-poster-title {
    display: none !important;
}
@media (max-width: 640px) {
    .watch-poster-layer { padding: 6px !important; }
    .watch-poster-content-polished {
        max-width: min(190px, 56%) !important;
        padding: 4px 6px !important;
        border-radius: 6px !important;
    }
    .watch-poster-status {
        font-size: 7px !important;
        padding: 1px 4px !important;
    }
    .watch-poster-sub { font-size: 8px !important; }
}

/* === iPhone / 微信内置浏览器播放手势层 === */
.watch-video-wrap,
.preview-video-wrap-mobile {
    position: relative;
}
.watch-tap-layer {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 6;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: rgba(2, 6, 23, .18);
    color: #fff;
    text-align: center;
    pointer-events: none;
}
.watch-tap-layer.show {
    display: flex;
    pointer-events: auto;
}
.watch-tap-layer button {
    border: 0;
    border-radius: 999px;
    padding: 10px 20px;
    background: rgba(255,255,255,.94);
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.watch-tap-layer span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0,0,0,.32);
    color: rgba(255,255,255,.88);
    font-size: 11px;
}
.preview-video-wrap-mobile .preview-video {
    display: block;
    width: 100%;
}
.preview-tap-layer {
    border-radius: 8px;
}
@media (max-width: 640px) {
    .watch-tap-layer button {
        padding: 9px 18px;
        font-size: 14px;
    }
    .watch-tap-layer span {
        font-size: 10px;
    }
}


/* 隐藏 iPhone/微信手动播放小字提示，只保留播放按钮 */
.watch-tap-layer span { display: none !important; }

/* === 登录页美化与安全提示（仅影响 login.php） === */
body.login-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 18%, rgba(96,165,250,.28), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(14,165,233,.22), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 48%, #111827 100%);
}
.login-page .login-wrap {
    min-height: 100vh;
    padding: 28px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.login-card-shell {
    width: min(900px, 100%);
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 18px;
    align-items: stretch;
}
.login-brand-panel,
.login-page .login-box {
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
}
.login-brand-panel {
    min-height: 420px;
    border-radius: 24px;
    padding: 36px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06)),
        radial-gradient(circle at 74% 22%, rgba(147,197,253,.25), transparent 34%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}
.login-brand-panel::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -90px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
}
.login-logo-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}
.login-brand-panel h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: .02em;
}
.login-brand-panel p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 15px;
}
.login-page .login-box {
    max-width: none;
    width: 100%;
    border-radius: 24px;
    padding: 34px 32px;
    background: rgba(255,255,255,.96);
}
.login-headline {
    margin-bottom: 24px;
}
.login-headline span {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}
.login-headline strong {
    display: block;
    color: #111827;
    font-size: 26px;
    line-height: 1.2;
}
.login-field label {
    font-weight: 700;
    color: #374151;
}
.login-field .form-control {
    height: 44px;
    border-radius: 12px;
    background: #f9fafb;
    border-color: #e5e7eb;
    font-size: 14px;
}
.login-field .form-control:focus {
    background: #fff;
}
.login-submit {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    margin-top: 4px;
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(37,99,235,.22);
}
.login-security-note {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    text-align: center;
}
.login-warning {
    background: #fff7ed;
    color: #9a3412;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    border: 1px solid #fed7aa;
}
.login-page .login-error {
    border-radius: 12px;
    border: 1px solid #fecaca;
}
@media (max-width: 760px) {
    .login-card-shell { grid-template-columns: 1fr; }
    .login-brand-panel {
        min-height: 150px;
        padding: 24px;
        border-radius: 20px;
    }
    .login-logo-mark {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    .login-brand-panel h1 { font-size: 24px; }
    .login-brand-panel p { font-size: 13px; }
    .login-page .login-box {
        border-radius: 20px;
        padding: 26px 22px;
    }
    .login-headline strong { font-size: 22px; }
}

/* 登录页标识微调：去掉单独的“九”字，改为更清爽的播放图形 */
.login-logo-mark {
    background: linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,.10));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 14px 30px rgba(15,23,42,.22);
}
.login-play-icon {
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 17px solid rgba(255,255,255,.96);
    margin-left: 4px;
    filter: drop-shadow(0 3px 8px rgba(15,23,42,.22));
}
.login-brand-panel::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    left: 30px;
    top: 30px;
    border-radius: 30px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.10) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .52;
    transform: rotate(-8deg);
}
.login-brand-panel > * { position: relative; z-index: 1; }
@media (max-width: 760px) {
    .login-play-icon {
        border-top-width: 9px;
        border-bottom-width: 9px;
        border-left-width: 14px;
    }
}
