/* --- تنظیمات کلی --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0e9e9;
}

/* لایه‌ها */
#button-layer, #video-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* در ابتدا، لایه ویدیو مخفی است */
#video-layer {
    display: none;
}

/* استایل دکمه */
#play-video-btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #c0392b;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* کانتینر ویدیو برای ابعاد موبایل */
.video-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    position: relative;
    background-color: #000;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* این کد را به انتهای فایل استایل خود اضافه کنید */
.video-container {
    cursor: pointer;
}

