/* --- 6. ویدیو و Buy Now --- */
.video-section { position: relative; width: 100%; height: 80vh; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.video-wrapper { position: relative; width: 100%; height: 100%; }
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; filter: blur(2px); opacity: 1; }
.video-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--bg-color); opacity: var(--blend-opacity); mix-blend-mode: overlay; pointer-events: none; z-index: 2; }
.video-wrapper::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 3; box-shadow: inset 0 50px 50px -25px var(--shadow-color), inset 0 -50px 50px -25px var(--shadow-color); }
.video-text-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; pointer-events: none; }

/* --- استایل لینک Buy Now --- */
.buy-now-link { 
    pointer-events: auto; 
    font-family: 'Inter', sans-serif; 
    font-size: 7rem; 
    font-weight: 800; 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    transition: transform 0.2s ease; 

    /* ▲▲▲ حالت تاریک (پیش‌فرض) ▲▲▲ */
    /* رنگ دقیقاً برابر با پس‌زمینه سایت (برای محو شدن کامل) */
    color: #0a0a0f; 
    /* یک سایه سفید بسیار ملایم برای اینکه کاملاً ناپدید نشه (حس شبح‌وار) */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15), 0 0 20px rgba(168, 85, 247, 0.1); 
}
.buy-now-link:hover { transform: scale(1.05); }

/* ▲▲▲ حالت روشن (Light Mode) ▲▲▲ */
html.light-mode .buy-now-link {
    color: #ffffff !important; /* متن سفید و درخشان */
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.7), 0 0 20px rgba(139, 92, 246, 0.7), 0 0 40px rgba(139, 92, 246, 0.7), 0 0 80px rgba(139, 92, 246, 0.4), 0 0 120px rgba(139, 92, 246, 0.2) !important;
}