/* تعریف فونت مربا */
@font-face {
    font-family: 'Morabba';
    src: url('Morabba-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* تنظیمات پایه */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Morabba', Tahoma, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* کانتینر اصلی */
.container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* بخش لوگو */
.logo-area {
    margin-bottom: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* اندازه ظریف و استاندارد لوگو */
.logo-icon {
    max-width: 360px;
    width: 100%;
    height: auto;
    display: block;
}

/* چیدمان متناسب دکمه‌ها بر اساس طول کلمات */
.links-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 12px 16px;
    width: 100%;
}

/* استایل دکمه‌ها - جمع‌وجور و منطبق بر تصویر */
.link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    
    font-size: 15px; 
    font-weight: 300;
    white-space: nowrap;
    
    transition: all 0.25s ease;
    cursor: pointer;
}

/* افکت هاور ملایم */
.link-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
}

/* بهینه‌سازی برای موبایل‌های خیلی کوچک */
@media (max-width: 380px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-content: stretch;
    }
    
    .link-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .logo-icon {
        max-width: 290px;
    }
}