﻿body {
            font-family: 'Cairo', sans-serif;
            background-color: #090d16;
        }
        /* تأثيرات الإضاءة الذهبية والنيون */
        .neon-glow-amber {
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
        }
        .neon-glow-emerald {
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.35);
        }
        .stamp-pulse {
            animation: stampAnim 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }
        @keyframes stampAnim {
            0% { transform: scale(2.5); opacity: 0; filter: blur(4px); }
            100% { transform: scale(1); opacity: 1; filter: blur(0); }
        }
        .laser-line {
            animation: laserMove 2s infinite linear;
        }
        @keyframes laserMove {
            0% { top: 0%; }
            50% { top: 100%; }
            100% { top: 0%; }
        }
