
/* فونت‌های فارسی */
@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
.body{
    background: linear-gradient(45deg, #0d1fff, #b916d8);
    font-family: 'Vazir', Tahoma, Arial, sans-serif;
    text-align: center;
    color: white;
    padding: 0;
    margin-top: 100;
}
.h1{
    font-family: 'Vazir', Tahoma, Arial, sans-serif;
    text-align:center;

}
/* استایل دکمه */
.fancy-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #0c6aff 0%, #000000 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.4);
}

/* افکت هاور */
.fancy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.6);
}

/* افکت کلیک */
.fancy-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

/* خط نورانی روی دکمه */
.fancy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.fancy-button:hover::before {
    left: 100%;
}

/* آیکون فلش */
.fancy-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.fancy-button:hover i {
    transform: translateX(-5px);
}