.watch-page-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.watch-stack {
    display: grid;
    gap: 12px;
}

.watch-panel,
.watch-subpanel,
.watch-note,
.watch-empty-state,
.watch-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(12, 12, 12, 0.56);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.watch-panel,
.watch-empty-state {
    padding: 16px;
}

.watch-subpanel,
.watch-note,
.watch-card {
    padding: 14px;
}

.watch-page-head,
.watch-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.watch-page-head.compact,
.watch-panel-head.compact {
    margin-bottom: 0;
}

.watch-page-head h2,
.watch-panel-head h2,
.watch-panel h3,
.watch-subpanel h3 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 300;
}

.watch-subpanel h3,
.watch-card h3 {
    font-size: 15px;
    font-weight: 400;
}

.watch-eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.46);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.watch-copy,
.watch-helper,
.watch-empty-state p,
.watch-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.5;
    font-size: 14px;
}

.watch-helper + .watch-helper {
    margin-top: 4px;
}

.watch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.watch-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.watch-list {
    display: grid;
    gap: 10px;
}

.watch-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.watch-grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.watch-input,
.watch-select,
.watch-textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.watch-input:focus,
.watch-select:focus,
.watch-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.watch-input::placeholder,
.watch-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.watch-select option {
    background: #101010;
    color: #fff;
}

.watch-label {
    display: grid;
    gap: 6px;
}

.watch-label span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.watch-empty-state {
    text-align: center;
}

.watch-empty-state h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
}

.watch-message-stack {
    display: grid;
    gap: 8px;
}

.watch-message-stack .success,
.watch-message-stack .error {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    border: 1px solid transparent;
}

.watch-message-stack .success {
    background: rgba(80, 200, 80, 0.1);
    border-color: rgba(80, 200, 80, 0.2);
    color: rgba(140, 230, 140, 0.95);
}

.watch-message-stack .error {
    background: rgba(255, 80, 80, 0.1);
    border-color: rgba(255, 80, 80, 0.2);
    color: rgba(255, 140, 140, 0.95);
}

@media (max-width: 900px) {
    .watch-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .watch-page-head,
    .watch-panel-head {
        align-items: start;
        flex-direction: column;
    }

    .watch-page-head h2,
    .watch-panel-head h2 {
        font-size: 18px;
    }
}
