@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Light-FD-WOL.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-FD-WOL.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Medium-FD-WOL.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Bold-FD-WOL.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg-color: #fdfbf7;
    --primary-color: #bde0fe;
    --primary-hover: #a2d2ff;
    --secondary-color: #ffc8dd;
    --secondary-hover: #ffafcc;
    --text-dark: #2b2d42;
    --text-light: #4a4e69;
    --card-bg: #ffffff;
}

body {
    font-family: 'Vazir', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 650px;
    background-color: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 50px 35px;
    text-align: center;
    border-top: 6px solid #a2d2ff;
    box-sizing: border-box;
}

.logo {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(189, 224, 254, 0.5);
}

.logo svg {
    width: 45px;
    height: 45px;
    fill: #ffffff;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 35px;
    text-align: justify;
    text-align-last: center;
}

.buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.btn-android {
    background-color: var(--primary-color);
}

.btn-android:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.btn-pwa {
    background-color: var(--secondary-color);
}

.btn-pwa:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
}

.btn svg {
    width: 26px;
    height: 26px;
    fill: var(--text-dark);
}

@media (min-width: 500px) {
    .buttons-wrapper {
        flex-direction: row;
    }
    .btn {
        flex: 1;
    }
}
