body {
    font-family: 'Heebo', 'Arial', sans-serif;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #8ecae6 0%, #219ebc 60%, #023e8a 100%);
    color: #222;
    direction: rtl;
    box-sizing: border-box;
}

.page-container {
    max-width: 480px;
    margin: 32px auto 0 auto;
    padding: 18px 8px 32px 8px;
    background: rgba(255,255,255,0.93);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}

.video-wrapper {
    width: 100%;
    max-width: 270px;
    aspect-ratio: 9 / 16;
    margin: 0 auto 18px auto;
    background: #222;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(44,62,80,0.13);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #222;
    display: block;
}

.content {
    margin-top: 10px;
    text-align: center;
    padding: 0 6px;
}

iframe {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 2000px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.10);
    background: #fff;
    border: none;
}

@media (max-width: 600px) {
    .page-container {
        max-width: 100vw;
        padding: 0 0 12px 0;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
    }
    .video-wrapper {
        max-width: 80vw;
        aspect-ratio: 9 / 16;
    }
    .video-wrapper video {
        width: 100%;
        height: 100%;
        max-height: none;
    }
    .content {
        padding: 0 2vw;
    }
    iframe {
        width: 98vw !important;
        min-width: 0 !important;
        border-radius: 0;
    }
}
