@font-face {
    font-family: 'Vazirmatn';
    src: url('../font/Vazirmatn[wght].woff2') format('woff2-variations'),
         url('../font/Vazirmatn[wght].woff2') format('woff2');
    font-weight: 100 900; /* پشتیبانی از بازه وزنی فونت متغیر */
    font-style: normal;
    font-display: swap;
}

/* اعمال فونت به کل پروژه */
body {
    font-family: 'Vazirmatn', sans-serif;
}









        body {
            font-family: 'Vazirmatn', sans-serif;
            scroll-behavior: smooth;
            background-color: #ffffff;
            color: #1f2937;
        }

        .brand-accent {
            background-color: #b2ecf7;
        }

        .text-brand {
            color: #06B6D4;
        }

        .border-brand {
            border-color: #06B6D4;
        }

        .minimal-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #f3f4f6;
            background: #fff;
        }

        .minimal-card:hover {
            border-color: #06B6D4;
            box-shadow: 0 10px 30px -10px #06B6D4;
            transform: translateY(-5px);
        }

        .update-badge {
            background: rgba(6, 182, 212, 0.1);
            color: #06B6D4;
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 99px;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }