@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500&display=swap');

body {
    background-color: #0b1514;
    font-family: 'Alexandria', sans-serif;
    color: #f3f4f6;
    overflow-x: hidden; /* لمنع التمرير العرضي المزعج على الهواتف */
}

/* الشفافية الزجاجية المطلقة والنقية التي تُجبر المتصفح على إظهار اللوجو بالخلفية */
.glass-pure {
    background: rgba(255, 255, 255, 0.01) !important; /* درجة شفافة جداً شبه معدومة */
}

/* حركة التلاشي والظهور الناعم السينمائي للشاشات */
.fade-in {
    animation: fadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-out {
    animation: fadeOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); filter: blur(3px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); filter: blur(0); }
    to { opacity: 0; transform: translateY(-12px); filter: blur(3px); }
}

/* خانة كتابة الاسم والملاحظات الفاخرة */
.luxury-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    font-size: 0.95rem;
    color: #FFFFFF;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    -webkit-appearance: none; /* لمنع التصميم التلقائي على الآيفون */
}

@media (min-width: 768px) {
    .luxury-input {
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 14px;
    }
}

.luxury-input:focus {
    border-color: #f1cb7a;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(241, 203, 122, 0.15);
}