* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: background 0.5s ease;
}

.container {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 35px;
}

.avatar {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header h1 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.header p {
    color: #666;
    font-size: 14px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 14px;
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.link-card:hover {
    transform: translateX(5px);
    border-color: #667eea;
    background: #f0f1ff;
}

.link-card:active {
    transform: scale(0.97);
}

.link-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
}

.link-content {
    flex: 1;
}

.link-content .title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.link-content .subtitle {
    font-size: 12px;
    color: #888;
}

.link-arrow {
    color: #ccc;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(5px);
    color: #667eea;
}

.footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.admin-link {
    display: inline-block;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.admin-link:hover {
    background: #5a6fd6;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    .link-card {
        padding: 14px 16px;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 12px;
    }
}
