@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

:root {
    --dark-bg: #1a1a2e;
    --primary-text: #ffffff;
    --accent-color: #4a4e69;
}

body {
    font-family: 'Vazirmatn', Arial, sans-serif;
    /* background-color: var(--dark-bg); */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4b97b' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-color: #2c4c43;
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
    text-align: right;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.game-icon {
    width: 200px;
    height: 200px;
    box-shadow: 0 0 15px #00000080;
    border-radius: 50px;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-links a {
    color: var(--primary-text);
    text-decoration: none;
}

.language-switch {
    background: none;
    border: 1px solid var(--primary-text);
    color: var(--primary-text);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.long-content {
    text-align: start;
    align-items: start;
}

.long-content a {
    color: var(--primary-text);
    text-decoration: underline;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1rem;
    color: #dfdddd;
}

.app-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.app-image {
    width: 180px;
    height: 360px;
    border-radius: 20px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.app-image-1 {
    background-image: url("images/screen1.png");
}

.app-image-2 {
    background-image: url("images/screen2.png");
}

.app-image-3 {
    background-image: url("images/screen3.png");
}

.app-image-1-en {
    background-image: url("images/screen1_en.png");
}

.app-image-2-en {
    background-image: url("images/screen2_en.png");
}

.app-image-3-en {
    background-image: url("images/screen3_en.png");
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s;
}

.btn i {
    margin-left: 10px;
    font-size: 1.5rem;
}

.btn-apple {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}

.btn-google {
    background-color: #4CAF50;
    color: #fff;
}

.btn:hover {
    transform: scale(1.05);
}


.footer {
    text-align: center;
    margin-top: 30px;
    padding: 30px 0;
    color: #fff;
    position: relative;
}

.footer a {
    color: #dfdddd;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.6s;
}

.footer a:hover {
    color: white;
    border-bottom: 1px solid #dfdddd;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 25 0, 50 5 T 100 5' stroke='%23ffffff' stroke-width='2' fill='none' /%3E%3C/svg%3E");
    background-repeat: repeat-x;
}

.message-telegram {
    background: #179cde;
    padding: 10px 20px;
    color: white;
    max-width: 90%;
    margin-top: 40px;
    text-align: right;
    border-radius: 12px;
    border: 6px solid #1575a5;
}

.message-telegram a {
    color: white;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .app-images {
        flex-direction: column;
        align-items: center;
    }

    .app-image {
        width: 150px;
        height: 300px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .app-image {
        width: 120px;
        height: 240px;
    }
}

.team-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2c4c43;
    border-radius: 10px;
    padding: 1rem;
}

.team-item-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.team-item-name {
    margin: 1rem 0 .5rem 0;
    font-weight: 600;
}

.team-item a {
    color: var(--primary-text);
    text-decoration: none;
    margin-top: .5rem;
    font-size: .9rem;
}

.team-item a:hover {
    color: #dfdddd;
}