.guest-welcome {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    font: 14px/1.45 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.guest-welcome__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
}

.guest-welcome__dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(520px, 100%);
    max-height: min(92vh, 720px);
    border-radius: 20px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
    overflow: hidden;
}

.guest-welcome__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #334155;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.guest-welcome__close:hover {
    background: rgba(15, 23, 42, 0.14);
}

.guest-welcome__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 20px 16px 12px;
}

.guest-welcome__video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
}

.guest-welcome__video-wrap > div {
    width: 100%;
    height: 100%;
}

.guest-welcome__video-wrap iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.guest-welcome__video-placeholder,
.guest-welcome__text-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 20px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #64748b;
    text-align: center;
}

.guest-welcome__play-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
}

.guest-welcome__play-fallback button {
    min-height: 44px;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.guest-welcome__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #334155;
}

.guest-welcome__text p {
    margin: 0 0 0.75em;
}

.guest-welcome__text p:last-child {
    margin-bottom: 0;
}

.guest-welcome__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 16px;
    padding: 4px;
    border-radius: 12px;
    background: #e2e8f0;
}

.guest-welcome__tab {
    min-height: 40px;
    padding: 0 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #64748b;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.guest-welcome__tab--active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.guest-welcome__tab:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.guest-welcome__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px 18px;
}

.guest-welcome__actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.guest-welcome__actions-row a {
    flex: 1 1 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

.guest-welcome__actions-row a:first-child {
    background: #2563eb;
    color: #ffffff;
}

.guest-welcome__actions-row a:last-child {
    background: #e2e8f0;
    color: #0f172a;
}

.guest-welcome__continue {
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
    color: #475569;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.guest-welcome__continue:hover {
    background: #f8fafc;
}
