﻿/* =========================================================
   COMING SOON OVERLAY
========================================================= */

.coming-soon-wrapper {
    position: relative;
    overflow: hidden;
}

.coming-soon-content {
    filter: blur(1.5px);
    opacity: .6;
    user-select: none;
    pointer-events: none;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 10, 16, .30);
}

.coming-soon-message {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid rgba(157, 73, 222, .35);
    /* بدون گوشه گرد */
    border-radius: 0;
    background: rgba(25, 18, 34, .88);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
    color: #e4d3f2;
    font-size: 11px;
    font-weight: 600;
}

.coming-soon-message i {
    color: #a44de4;
    font-size: 12px;
}