﻿/* پس زمینه شیشه ای */
.bg-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 20px;
}

/* افکت انیمیشن برای schema */
.schema-info {
    font-size: 1.5rem;
    color: #ffcc00;
    text-align: center;
    font-weight: bold;
    animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
