* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    background: #ffffff;
    color: #111;
}

.container {
    max-width: 420px;
    margin: auto;
    padding: 32px 20px;
}

.header {
    text-align: center;
    margin-bottom: 32px;
}

.logo-main {
    width: 56px;
    height: auto;
    display: block;
    margin: 0 auto 12px;
}

.header h1 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.header p {
    font-size: 13px;
    color: #777;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card {
    display: flex;
    align-items: center;
    background: #fafafa;
    border-radius: 14px;
    padding: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card:active {
    transform: scale(0.97);
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 14px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.info {
    flex: 1;
}

.info h2 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.info span {
    font-size: 12px;
    color: #777;
}

.arrow {
    font-size: 18px;
    color: #000000;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 40px;
}