body {
    font-family: 'Vazir', Tahoma, Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #121212;
    color: #e0e0e0;
    direction: rtl;
}

h1, h2 {
    text-align: center;
}

.link-list {
    max-width: 600px;
    margin: auto;
    padding: 0;
    list-style: none;
}

.link-list li {
    background: #1e1e1e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    color: #e0e0e0;
    margin: 10px auto;
    padding: 0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.link-list a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #3ac7da;
    font-size: 18px;
}
.link-list li:hover {
    background-color: #263238;
    transform: scale(1.02);
}

.server-links {
    max-width: 600px;
    margin: 30px auto;
    padding: 0;
    list-style: none;
}

.server-links li {
    background: #2a2a2a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    color: #a0d8d8;
    margin: 10px auto;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    width: 60%;
    overflow: hidden;
}

.server-links a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #4dd0e1;
    font-weight: bold;
    font-size: 18px;
}

.server-links li:hover {
    background-color: #37474f;
    transform: scale(1.02);
}
