* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d1117; /* لون فخم مستوحى من المود المظلم لـ GitHub */
    color: #e6edf3; /* نص أبيض مريح للعين */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.main-container {
    background-color: #161b22; /* لون البطاقة أفتح قليلاً من الخلفية للتباين */
    width: 100%;
    max-width: 480px; 
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); /* ظل داكن وعميق */
    text-align: center;
    border: 1px solid #30363d; /* حدود رفيعة جداً لإبراز حواف البطاقة في الظلام */
}

.page-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.5;
}

.video-container {
    position: relative;
    border-radius: 16px; 
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto 25px auto; 
    max-width: 250px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    aspect-ratio: 9 / 16; 
    background-color: #000;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.video-container:hover .video-img {
    opacity: 1;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #ff0000; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
    transition: transform 0.2s, background-color 0.2s;
}

.play-icon-overlay i {
    margin-left: 6px; 
}

.video-container:hover .play-icon-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #e60000;
}

/* تنسيق مجموعة الأزرار */
.action-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.social-proof-text {
    font-size: 13px;
    color: #8b949e; /* نص رمادي فاتح مريح */
}

.social-proof-text b {
    color: #c9d1d9; /* التمييز بلون أفتح للرقم */
    font-weight: 700;
}

.social-proof-text i {
    color: #58a6ff; /* أيقونة زرقاء تضيء بهدوء في الظلام */
    margin-left: 4px;
}

.support-proof i {
    color: #ff7b72; /* أيقونة برتقالية/خوخية مميزة للدعم */
}

.play-bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit; 
    border-radius: 12px; 
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.play-bottom-btn:active {
    transform: translateY(1px);
}

.play-bottom-btn i {
    font-size: 22px;
}

/* زر الفيديو الأزرق بالوضع الداكن */
.primary-btn {
    background: linear-gradient(135deg, #1f6feb, #1158c7); 
    box-shadow: 0 6px 20px rgba(31, 111, 235, 0.25);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 111, 235, 0.4);
}

/* زر الدعم البرتقالي/الذهبي بالوضع الداكن */
.support-btn {
    background: linear-gradient(135deg, #d2501a, #ba4313); 
    box-shadow: 0 6px 20px rgba(210, 80, 26, 0.25);
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 80, 26, 0.4);
}

/* تأثير لمعة الزر (تم تقليل السطوع ليتناسب مع النمط الداكن) */
.play-bottom-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shineBtn 4.5s infinite;
}

@keyframes shineBtn {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* مربع نص الدعم الداكن */
.support-text {
    margin-top: 20px;
    font-size: 14px;
    color: #c9d1d9;
    background-color: #21262d; /* لون داكن عميق للمربع */
    padding: 14px 16px;
    border-radius: 12px;
    text-align: left;
    line-height: 1.6;
    border-left: 4px solid #ff7b72; /* خط الملاحظة الخوخي */
    border-top: 1px solid #30363d;
    border-right: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
}

.support-text b {
    color: #ff7b72;
}
