/* Force full-width page layout */
html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.site,
.site-content,
.content-area,
.site-main,
.entry-content,
.page-content,
.container,
.wrap,
.inner,
.content-wrapper,
.main-content,
.page-wrapper,
.page-inner,
.entry,
.post,
article,
main,
#page,
#content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}

.neoo-vl-wrap {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    padding: 20px 30px 40px;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

.neoo-vl-header {
    text-align: center;
    margin-bottom: 28px;
}

.neoo-vl-header h1 {
    margin: 0 0 8px;
    color: #224a9a;
    font-size: 32px;
    font-weight: 700;
}

.neoo-vl-header p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.neoo-vl-notice {
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 18px;
}

.neoo-vl-notice.success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.neoo-vl-form-card,
.neoo-vl-card,
.neoo-vl-empty {
    background: #ffffff;
    border: 1px solid #d7dfea;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.neoo-vl-form-card {
    margin-bottom: 24px;
}

.neoo-vl-form-card h2 {
    margin: 0 0 16px;
    color: #224a9a;
    font-size: 22px;
}

.neoo-vl-form {
    display: grid;
    gap: 14px;
}

.neoo-vl-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #224a9a;
}

.neoo-vl-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d3dbea;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fbfdff;
    font-size: 14px;
}

.neoo-vl-btn {
    background: #224a9a;
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 600;
    width: fit-content;
}

.neoo-vl-btn:hover {
    background: #1b3d80;
}

.neoo-vl-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.neoo-vl-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.neoo-vl-card-head h3 {
    margin: 0;
    color: #224a9a;
    font-size: 22px;
}

.neoo-vl-delete-btn {
    background: #dc2626;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
}

.neoo-vl-delete-btn:hover {
    background: #b91c1c;
}

/* Proper video frame */
.neoo-vl-player {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    position: relative;
}

.neoo-vl-player iframe,
.neoo-vl-player video,
.neoo-vl-player embed,
.neoo-vl-player object {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    display: block;
    border: 0;
}

.neoo-vl-empty {
    text-align: center;
    color: #475569;
    font-size: 16px;
}

@media (max-width: 768px) {
    .neoo-vl-wrap {
        padding: 0 10px 30px;
    }

    .neoo-vl-header h1 {
        font-size: 26px;
    }

    .neoo-vl-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .neoo-vl-player {
        max-width: 100%;
    }
}