@font-face {
    font-family: 'Vazir';
    src: url('Vazirmatn-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Vazir', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 2rem;
    background-color: rgba(0,0,0,0.5);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #f39c12;
    color: #fff;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}